27 lines
838 B
TOML
27 lines
838 B
TOML
[package]
|
|
name = "shanty-search"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
description = "Online music search for Shanty"
|
|
repository = "ssh://connor@git.rcjohnstone.com:2222/Shanty/search.git"
|
|
|
|
[dependencies]
|
|
shanty-data = { path = "../shanty-data" }
|
|
shanty-db = { path = "../shanty-db" }
|
|
shanty-tag = { path = "../shanty-tag" }
|
|
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"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
dirs = "6"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full", "test-util"] }
|