mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
33 lines
800 B
TOML
33 lines
800 B
TOML
|
[package]
|
||
|
name = "cros_async"
|
||
|
version = "0.2.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
[features]
|
||
|
uring = ["io-uring"]
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1"
|
||
|
async-task = "4"
|
||
|
data_model = { path = "../data_model" } # provided by ebuild
|
||
|
futures = { version = "0.3", default-features = false, features = ["alloc"] }
|
||
|
intrusive-collections = "0.9"
|
||
|
io-uring = { version = "0.5", optional = true }
|
||
|
once_cell = "1.7"
|
||
|
slab = "0.4"
|
||
|
sync = { path = "../sync" } # provided by ebuild
|
||
|
thiserror = "1"
|
||
|
|
||
|
[target.'cfg(unix)'.dependencies]
|
||
|
libc = "0.2"
|
||
|
mio = { version = "0.7", features = ["os-ext"] }
|
||
|
sys_util = { path = "../sys_util" } # provided by ebuild
|
||
|
|
||
|
[dev-dependencies]
|
||
|
futures = { version = "*", features = ["executor"] }
|
||
|
futures-executor = { version = "0.3", features = ["thread-pool"] }
|
||
|
futures-util = "0.3"
|
||
|
tempfile = "3"
|
||
|
|
||
|
[workspace]
|