29 lines
895 B
TOML
29 lines
895 B
TOML
[package]
|
|
name = "elnafo-radio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = ["elnafo-vcs"]
|
|
authors = ["L-Nafaryus <l.nafaryus@elnafo.ru>"]
|
|
description = "Elnafo radio"
|
|
license = "MIT"
|
|
repository = "https://vcs.elnafo.ru/L-Nafaryus/elnafo-radio"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.6", features = ["http2", "macros"] }
|
|
elnafo-radio-frontend = { version = "0.1.0", path = "crates/frontend" }
|
|
mime_guess = "2.0.5"
|
|
mpd = "0.1.0"
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
serde_json = "1.0.128"
|
|
time = "0.3.36"
|
|
tokio = { version = "1.40.0", default-features = false, features = ["macros", "rt-multi-thread"] }
|
|
toml = "0.8.19"
|
|
tower-http = { version = "0.6.0", features = ["trace", "cors", "compression-gzip", "decompression-gzip"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
|
|
[workspace]
|
|
members = ["crates/frontend"]
|
|
resolver = "2"
|