forked from rust-vmm/event-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 826 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "event-manager"
version = "0.2.0"
description = "Abstractions for implementing event based systems"
keywords = ["events"]
repository = "https://github.com/rust-vmm/event-manager"
readme = "README.md"
authors = ["rust-vmm AWS maintainers <[email protected]>"]
license = "Apache-2.0 OR BSD-3-Clause"
edition = "2018"
[dependencies]
vmm-sys-util = ">=0.6.0"
libc = ">=0.2.39"
[dev-dependencies]
# Locking this version to 0.3.0 so that we can compare benchmark results with critcmp.
criterion = "=0.3.0"
[features]
remote_endpoint = []
test_utilities = []
[[bench]]
name = "main"
harness = false
[lib]
bench = false # https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
[profile.bench]
lto = true
codegen-units = 1