50 lines
1.6 KiB
TOML
50 lines
1.6 KiB
TOML
[package]
|
|
name = "shanty-web"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
description = "Web interface backend for Shanty"
|
|
repository = "ssh://connor@git.rcjohnstone.com:2222/Shanty/web.git"
|
|
|
|
[dependencies]
|
|
shanty-config = { path = "../shanty-config" }
|
|
shanty-data = { path = "../shanty-data" }
|
|
shanty-db = { path = "../shanty-db" }
|
|
shanty-index = { path = "../shanty-index" }
|
|
shanty-tag = { path = "../shanty-tag" }
|
|
shanty-org = { path = "../shanty-org" }
|
|
shanty-watch = { path = "../shanty-watch" }
|
|
shanty-dl = { path = "../shanty-dl" }
|
|
shanty-playlist = { path = "../shanty-playlist" }
|
|
shanty-search = { path = "../shanty-search" }
|
|
sea-orm = { version = "1", features = ["sqlx-sqlite", "runtime-tokio-native-tls"] }
|
|
actix-web = "4"
|
|
actix-cors = "0.7"
|
|
actix-files = "0.6"
|
|
actix-session = { version = "0.10", features = ["cookie-session"] }
|
|
argon2 = "0.5"
|
|
md-5 = "0.10"
|
|
hex = "0.4"
|
|
quick-xml = { version = "0.37", features = ["serialize"] }
|
|
serde_urlencoded = "0.7"
|
|
rand = "0.9"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-actix-web = "0.7"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
dirs = "6"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2"
|
|
tokio = { version = "1", features = ["full", "test-util"] }
|