Added the scaffolding
This commit is contained in:
13
shanty-watch/Cargo.toml
Normal file
13
shanty-watch/Cargo.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[package]
|
||||
name = "shanty-watch"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Library watchlist management for Shanty"
|
||||
|
||||
[dependencies]
|
||||
shanty-db = { path = "../shanty-db" }
|
||||
clap = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
4
shanty-watch/src/lib.rs
Normal file
4
shanty-watch/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
//! Library watchlist management.
|
||||
//!
|
||||
//! Manages the user's music library — tracking which artists, albums, and songs
|
||||
//! they want, and comparing against what they already have.
|
||||
3
shanty-watch/src/main.rs
Normal file
3
shanty-watch/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("shanty-watch: library watchlist management");
|
||||
}
|
||||
Reference in New Issue
Block a user