cli: play
This commit is contained in:
parent
283c6a7dd6
commit
42e52155e1
3 changed files with 251 additions and 12 deletions
21
Cargo.toml
21
Cargo.toml
|
@ -11,19 +11,26 @@ repository = "https://gitdab.com/breval/blip"
|
|||
[lib]
|
||||
name = "bliplib"
|
||||
|
||||
[[bin]]
|
||||
name = "blip"
|
||||
path = "src/cli/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.98"
|
||||
clap = { version = "4.5.38", features = ["derive"] }
|
||||
anyhow = { version = "1.0.98", optional = true }
|
||||
clap = { version = "4.5.38", features = ["derive"], optional = true }
|
||||
derive-new = "0.7.0"
|
||||
derive_builder = "0.20.2"
|
||||
fasteval = { git = "https://github.com/brevalferrari/fasteval" }
|
||||
derive_wrapper = "0.1.7"
|
||||
fasteval = "0.2.4"
|
||||
flacenc = "0.4.0"
|
||||
hound = "3.5.1"
|
||||
lazy_static = "1.5.0"
|
||||
mp3lame-encoder = { version = "0.2.1", features = ["std"] }
|
||||
nom = "8.0.0"
|
||||
nom_locate = "5.0.0"
|
||||
raw_audio = "0.0.1"
|
||||
thiserror = "2.0.12"
|
||||
|
||||
[features]
|
||||
binary-build = ["anyhow", "clap"]
|
||||
|
||||
[[bin]]
|
||||
name = "blip"
|
||||
path = "src/cli/main.rs"
|
||||
required-features = ["binary-build"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue