generated from rust-vmm/crate-template
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
36 lines (29 loc) · 818 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
34
35
36
[package]
name = "event-manager"
version = "0.4.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 <rust-vmm-maintainers@amazon.com>"]
license = "Apache-2.0 OR BSD-3-Clause"
edition = "2021"
[dependencies]
vmm-sys-util = "0.12.1"
libc = "0.2.39"
[dev-dependencies]
criterion = "0.5.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[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