summaryrefslogtreecommitdiff
path: root/sound_card_init/Cargo.toml
blob: 9d5a107e0b7084ce076a6727b23ddb5618f96f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "sound_card_init"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2018"
description = "Sound Card Initializer"

[workspace]
members = [
    "amp",
    "dsm"
]

[dependencies]
amp = { path = "amp" }
audio_streams = "*"
cros_alsa = "*"
dsm = { path = "dsm" }
getopts = "0.2"
libcras = "*"
remain = "0.2.1"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8.11"
sof_sys = "*"
sys_util = "*"

[patch.crates-io]
audio_streams = { path = "../audio_streams" }  # ignored by ebuild
cros_alsa = { path = "../cros_alsa" } # ignored by ebuild
cros_alsa_derive = { path = "../cros_alsa/cros_alsa_derive" } # ignored by ebuild
libcras = { path = "../cras/client/libcras" }  # ignored by ebuild
sof_sys = { path = "../sof_sys" }  # ignored by ebuild
sys_util = { path = "../../../platform/crosvm/sys_util" } # ignored by ebuild