mirror of
https://github.com/PR0M3TH3AN/Marlin.git
synced 2025-09-08 07:08:44 +00:00
update
This commit is contained in:
34
tui-bin/Cargo.toml
Normal file
34
tui-bin/Cargo.toml
Normal file
@@ -0,0 +1,34 @@
|
||||
[package]
|
||||
name = "marlin-tui"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# Build a binary called `marlin-tui` from src/main.rs
|
||||
[[bin]]
|
||||
name = "marlin-tui"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
directories = "5"
|
||||
glob = "0.3"
|
||||
rusqlite = { version = "0.31", features = ["bundled", "backup"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
||||
walkdir = "2.5"
|
||||
shlex = "1.3"
|
||||
chrono = "0.4"
|
||||
shellexpand = "3.1"
|
||||
clap_complete = "4.1"
|
||||
serde_json = { version = "1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2"
|
||||
predicates = "3"
|
||||
tempfile = "3"
|
||||
dirs = "5"
|
||||
|
||||
[features]
|
||||
# Enable JSON output when requested.
|
||||
json = ["serde_json"]
|
5
tui-bin/src/main.rs
Normal file
5
tui-bin/src/main.rs
Normal file
@@ -0,0 +1,5 @@
|
||||
// tui-bin/src/main.rs
|
||||
|
||||
fn main() {
|
||||
eprintln!("marlin-tui is not yet implemented. Stay tuned!");
|
||||
}
|
Reference in New Issue
Block a user