2022-07-28 14:55:16 +00:00
|
|
|
[package]
|
|
|
|
name = "audio_streams_conformance_test"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Chromium OS Authors"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "audio_streams_conformance_test"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-08-29 22:50:32 +00:00
|
|
|
[features]
|
|
|
|
audio_cras = ["dep:libcras"]
|
|
|
|
chromeos = ["audio_cras"]
|
|
|
|
|
2022-07-28 14:55:16 +00:00
|
|
|
[dependencies]
|
|
|
|
argh = "*"
|
2022-08-29 22:50:32 +00:00
|
|
|
audio_streams = "*"
|
|
|
|
cfg-if = "1.0.0"
|
2022-07-28 14:55:16 +00:00
|
|
|
cros_async = { path = "../../cros_async" } # provided by ebuild
|
|
|
|
num = "*"
|
2022-08-29 22:50:32 +00:00
|
|
|
libcras = { version = "*", optional = true }
|
2022-07-28 14:55:16 +00:00
|
|
|
remain = "0.2"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "*"
|
|
|
|
thiserror = "1.0.20"
|
2022-08-29 22:50:32 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
audio_streams = { path = "../../common/audio_streams"} # ignored by ebuild
|
|
|
|
libcras = { path = "../../libcras_stub" } # ignored by ebuild
|