mirror of
https://github.com/PR0M3TH3AN/Marlin.git
synced 2025-09-08 23:28:44 +00:00
update
This commit is contained in:
33
cli-bin/Cargo.toml
Normal file
33
cli-bin/Cargo.toml
Normal file
@@ -0,0 +1,33 @@
|
||||
[package]
|
||||
name = "marlin-cli"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false # binary crate, not meant for crates.io
|
||||
|
||||
[[bin]]
|
||||
name = "marlin" # cargo install/run -> `marlin`
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
libmarlin = { path = "../libmarlin" } # ← core library
|
||||
anyhow = "1"
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
clap_complete = "4.1"
|
||||
glob = "0.3"
|
||||
rusqlite = { version = "0.31", features = ["bundled", "backup"] }
|
||||
shellexpand = "3.1"
|
||||
shlex = "1.3"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
||||
walkdir = "2.5"
|
||||
serde_json = { version = "1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2"
|
||||
predicates = "3"
|
||||
tempfile = "3"
|
||||
dirs = "5"
|
||||
|
||||
[features]
|
||||
# Enable JSON output with `--features json`
|
||||
json = ["serde_json"]
|
Reference in New Issue
Block a user