mute/Cargo.toml
Roman Godmaire 7e4166386f refactor: extract CLI to binary
Also start getting rid of anyhow
2024-05-05 11:16:45 -04:00

18 lines
317 B
TOML

[package]
name = "mute"
version = "0.1.0"
authors = ["Raine Godmaire <its@raine.ing>"]
edition = "2021"
[[bin]]
name = "mute"
path = "src/bin/cli.rs"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.5.4", features = ["derive"] }
rustyline = "14.0.0"
thiserror = "1.0.48"
[dev-dependencies]
rstest = "0.18.2"