mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
BUG=b:195468578 TEST=unit tests Change-Id: I61f6bca1cfb5b0fe020e2fd5af33aa915c24ec54 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3225746 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Chirantan Ekbote <chirantan@chromium.org>
33 lines
881 B
TOML
33 lines
881 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"
|
|
smallvec = { version = "1.6.1", default-features = false, features = ["union"] }
|
|
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]
|