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

21
libmarlin/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "libmarlin"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
anyhow = "1"
chrono = "0.4"
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"
shellexpand = "3.1"
serde_json = { version = "1", optional = true }
[features]
json = ["serde_json"]