Added the watcher

This commit is contained in:
Connor Johnstone
2026-03-17 18:37:28 -04:00
parent 50e17eb227
commit 33b2bb3fa3
6 changed files with 11 additions and 21 deletions

9
Cargo.lock generated
View File

@@ -2589,11 +2589,20 @@ dependencies = [
name = "shanty-watch"
version = "0.1.0"
dependencies = [
"anyhow",
"chrono",
"clap",
"dirs",
"sea-orm",
"serde",
"serde_json",
"shanty-db",
"strsim",
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
"unicode-normalization",
]
[[package]]

1
shanty-watch Submodule

Submodule shanty-watch added at 6cbca10f7e

View File

@@ -1,13 +0,0 @@
[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 }

View File

@@ -1,4 +0,0 @@
//! Library watchlist management.
//!
//! Manages the user's music library — tracking which artists, albums, and songs
//! they want, and comparing against what they already have.

View File

@@ -1,3 +0,0 @@
fn main() {
println!("shanty-watch: library watchlist management");
}