Initial commit

This commit is contained in:
Connor Johnstone
2026-03-17 15:31:29 -04:00
commit d5641493b9
11 changed files with 1458 additions and 0 deletions

25
Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "shanty-dl"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "Music downloading for Shanty"
repository = "ssh://connor@git.rcjohnstone.com:2222/Shanty/dl.git"
[dependencies]
shanty-db = { path = "../shanty-db" }
sea-orm = { version = "1", features = ["sqlx-sqlite", "runtime-tokio-native-tls"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1", features = ["full", "process"] }
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
tempfile = "3"