This commit is contained in:
thePR0M3TH3AN
2025-05-18 16:02:48 -04:00
parent 6157ac5233
commit f6fca2c0dd
44 changed files with 492 additions and 508 deletions

41
Cargo.lock generated
View File

@@ -440,6 +440,23 @@ version = "0.2.172"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
[[package]]
name = "libmarlin"
version = "0.1.0"
dependencies = [
"anyhow",
"chrono",
"directories",
"glob",
"rusqlite",
"serde_json",
"shellexpand",
"shlex",
"tracing",
"tracing-subscriber",
"walkdir",
]
[[package]]
name = "libredox"
version = "0.1.3"
@@ -474,7 +491,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
[[package]]
name = "marlin"
name = "marlin-cli"
version = "0.1.0"
dependencies = [
"anyhow",
"assert_cmd",
"clap",
"clap_complete",
"dirs 5.0.1",
"glob",
"libmarlin",
"predicates",
"rusqlite",
"serde_json",
"shellexpand",
"shlex",
"tempfile",
"tracing",
"tracing-subscriber",
"walkdir",
]
[[package]]
name = "marlin-tui"
version = "0.1.0"
dependencies = [
"anyhow",