hydrophonitor/audio-logger/Cargo.toml

20 lines
492 B
TOML
Raw Normal View History

[package]
2022-09-25 14:44:48 +00:00
name = "audio"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-09-22 04:06:49 +00:00
clap = {url = "https://github.com/clap-rs/clap", features = ["derive"]}
cpal= { version = "0.13.5", features = ["jack"] }
anyhow = "1.0.61"
hound = "3.4.0"
chrono = "0.4.22"
2022-09-22 04:06:49 +00:00
ctrlc = "3.2.3"
2022-09-25 14:44:48 +00:00
rodio = "0.16.0"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))'.dependencies]
alsa = "0.6"
nix = "0.23"
libc = "0.2.65"
parking_lot = "0.12"
2022-09-22 04:06:49 +00:00
jack = { version = "0.9", optional = true }