Files
tag/Cargo.toml
2026-03-20 16:28:15 -04:00

33 lines
992 B
TOML

[package]
name = "shanty-tag"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "Metadata tagging via online databases for Shanty"
repository = "ssh://connor@git.rcjohnstone.com:2222/Shanty/tag.git"
[dependencies]
shanty-data = { path = "../shanty-data" }
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"
reqwest = { version = "0.12", features = ["json"] }
strsim = "0.11"
unicode-normalization = "0.1"
lofty = "0.22"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
regex = "1"
[dev-dependencies]
shanty-data = { path = "../shanty-data" }
tokio = { version = "1", features = ["full", "test-util"] }
tempfile = "3"