Added the scaffolding

This commit is contained in:
Connor Johnstone
2026-03-17 13:55:42 -04:00
parent cf95c520a0
commit fb05e2d5c0
39 changed files with 944 additions and 0 deletions

14
shanty-dl/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "shanty-dl"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Music downloading for Shanty"
[dependencies]
shanty-db = { path = "../shanty-db" }
clap = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }

5
shanty-dl/src/lib.rs Normal file
View File

@@ -0,0 +1,5 @@
//! Music downloading.
//!
//! Downloads music files using pluggable backends. The default backend uses
//! yt-dlp, with support for additional backends (torrents, Soulseek, etc.)
//! via a trait-based architecture.

3
shanty-dl/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("shanty-dl: music downloading");
}