mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
2494889d28
To allow for porting to non POSIX platforms, we've brought the libchromeos::sync module into cros_async (which was the only consumer). BUG=b:180978556 TEST=builds Change-Id: I97256b1dc37124cebc693c035e63d2c5b29e94b1 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2757280 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Noah Gold <nkgold@google.com> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org>
30 lines
697 B
TOML
30 lines
697 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
async-task = "4"
|
|
intrusive-collections = "0.9"
|
|
io_uring = { path = "../io_uring" }
|
|
libc = "*"
|
|
paste = "1.0"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
slab = "0.4"
|
|
sync = { path = "../sync" }
|
|
sys_util = { path = "../sys_util" }
|
|
data_model = { path = "../data_model" }
|
|
syscall_defines = { path = "../syscall_defines" }
|
|
thiserror = "1.0.20"
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "*", features = ["executor"] }
|
|
tempfile = { path = "../tempfile" }
|
|
vm_memory = { path = "../vm_memory" }
|