crosvm/common/audio_streams/Cargo.toml
Dennis Kempin fd68b42b6d audio_streams: Add async interface to remove dependency on cros_async
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>
2022-03-15 17:29:21 +00:00

18 lines
379 B
TOML

[package]
name = "audio_streams"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2021"
[lib]
path = "src/audio_streams.rs"
[dependencies]
async-trait = "0.1.36"
remain = "0.2"
sync = { path = "../sync" } # provided by ebuild
thiserror = "1.0.20"
futures = "0.3"
[target.'cfg(unix)'.dev-dependencies]
sys_util = { path = "../sys_util" } # provided by ebuild