bng/Cargo.toml

23 lines
411 B
TOML
Raw Normal View History

2024-08-20 23:34:56 +00:00
[package]
name = "bng"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-10-02 15:18:26 +00:00
amplify = "4.7.0"
2024-08-20 23:34:56 +00:00
anyhow = "1.0"
2024-08-24 13:09:50 +00:00
cfg-if = "1.0.0"
2024-08-20 23:34:56 +00:00
clap = { version = "4.5", features = ["derive"] }
2024-09-03 02:05:42 +00:00
derived-deref = "2.1.0"
2024-08-20 23:34:56 +00:00
fasteval = "0.2.4"
2024-10-02 15:18:26 +00:00
nom = "7.1.3"
serde = "1.0.209"
serde_yml = "0.0.12"
2024-09-03 02:05:42 +00:00
splines = "4.3.1"
2024-08-20 23:34:56 +00:00
tinyaudio = { version = "0.1", optional = true }
[features]
default = ["play", "save"]
play = ["dep:tinyaudio"]
save = []