mirror of
https://github.com/PR0M3TH3AN/Marlin.git
synced 2025-09-08 07:08:44 +00:00

- Updated Cargo.lock and Cargo.toml to include new dependencies - Added new files for backup and watcher functionality in libmarlin - Introduced integration tests and documentation updates - Set workspace resolver to version 2 for better dependency resolution
35 lines
958 B
TOML
35 lines
958 B
TOML
[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"
|
|
ctrlc = "3.4"
|
|
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"]
|