22 lines
644 B
TOML
22 lines
644 B
TOML
[package]
|
|
name = "shanty-web"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Web interface backend for Shanty"
|
|
|
|
[dependencies]
|
|
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" }
|
|
clap = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|