mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
33af75be29
There are two copies of io_uring and cros_async that are slightly different. Bump the version number of new one. BUG=None TEST=cargo build Change-Id: I7f82d3c5f01633bef7d0ce14ab777bbb50d4fbd5 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3565625 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Junichi Uekawa <uekawa@chromium.org>
37 lines
904 B
TOML
37 lines
904 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.1.1"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
async-task = "4"
|
|
data_model = { path = "../common/data_model" } # provided by ebuild
|
|
intrusive-collections = "0.9"
|
|
io_uring = { path = "../io_uring" } # provided by ebuild
|
|
libc = "*"
|
|
once_cell = "1.7.2"
|
|
paste = "1.0"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
remain = "0.2"
|
|
slab = "0.4"
|
|
sync = { path = "../common/sync" } # provided by ebuild
|
|
base = { path = "../base" } # provided by ebuild
|
|
thiserror = "1.0.20"
|
|
audio_streams = { path = "../common/audio_streams" } # provided by ebuild
|
|
anyhow = "1.0"
|
|
serde = "*"
|
|
|
|
[dependencies.futures]
|
|
version = "*"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "*", features = ["executor"] }
|
|
futures-executor = { version = "0.3", features = ["thread-pool"] }
|
|
futures-util = "0.3"
|
|
tempfile = "3"
|
|
|
|
|