Files
web/Cargo.toml
Connor Johnstone 32b4b533c0 Added config support
2026-03-18 15:14:32 -04:00

40 lines
1.2 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-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-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"
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"] }
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"] }