• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "audio_streams_conformance_test"
3version = "0.1.0"
4authors = ["The Chromium OS Authors"]
5edition = "2021"
6
7[[bin]]
8name = "audio_streams_conformance_test"
9path = "src/main.rs"
10
11[features]
12audio_cras = ["dep:libcras"]
13chromeos = ["audio_cras"]
14
15[dependencies]
16argh = "*"
17audio_streams = "*"
18cfg-if = "1.0.0"
19cros_async = { path = "../../cros_async" } # provided by ebuild
20num = "*"
21libcras = { version = "*", optional = true  }
22remain = "0.2"
23serde = { version = "1.0", features = ["derive"] }
24serde_json = "*"
25thiserror = "1.0.20"
26
27[target.'cfg(unix)'.dependencies]
28minijail = "*" # provided by ebuild
29
30[patch.crates-io]
31audio_streams = { path = "../../common/audio_streams"}  # ignored by ebuild
32libcras = { path = "../../libcras_stub" } # ignored by ebuild
33minijail = { path = "../../third_party/minijail/rust/minijail" } # ignored by ebuild
34