Initial commit

This commit is contained in:
Connor Johnstone
2026-03-17 18:36:35 -04:00
commit 6cbca10f7e
9 changed files with 879 additions and 0 deletions

26
Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "shanty-watch"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "Library watchlist management for Shanty"
repository = "ssh://connor@git.rcjohnstone.com:2222/Shanty/watch.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"] }
anyhow = "1"
strsim = "0.11"
unicode-normalization = "0.1"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }