mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
The API allows audio_streams to be used by crosvm and libcras while their implementations of cros_async may diverge in the future. BUG=b:223624364 TEST=./tools/presubmit and emerge tests Cq-Depend: chromium:3519246 Change-Id: I08b6bf12e02c211275c11f1886f23f71217e40b4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3518657 Reviewed-by: Chih-Yang Hsia <paulhsia@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
36 lines
890 B
TOML
36 lines
890 B
TOML
[package]
|
|
name = "cros_async"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.36"
|
|
async-task = "4"
|
|
data_model = { path = "../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 = "../sync" } # provided by ebuild
|
|
sys_util = { path = "../sys_util" } # provided by ebuild
|
|
thiserror = "1.0.20"
|
|
audio_streams = { path = "../audio_streams" } # provided by ebuild
|
|
anyhow = "1.0"
|
|
|
|
[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"
|
|
|
|
[workspace]
|