started cli

This commit is contained in:
Breval Ferrari 2024-08-21 01:34:56 +02:00
parent 5f4ffa4705
commit 2ac18bb640
No known key found for this signature in database
GPG key ID: CEAB625B75A836B2
3 changed files with 64 additions and 0 deletions

15
Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "bng"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
fasteval = "0.2.4"
tinyaudio = { version = "0.1", optional = true }
[features]
default = ["play", "save"]
play = ["dep:tinyaudio"]
save = []