Added the scaffolding
This commit is contained in:
14
shanty-dl/Cargo.toml
Normal file
14
shanty-dl/Cargo.toml
Normal 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
5
shanty-dl/src/lib.rs
Normal 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
3
shanty-dl/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("shanty-dl: music downloading");
|
||||
}
|
||||
Reference in New Issue
Block a user