48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[package]
|
|
name = "rave"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = ["forge-lys-ee"]
|
|
default-run = "rave"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0"
|
|
color-eyre = "0.6"
|
|
md5 = "0.7"
|
|
poem = { version = "2.0", features = [
|
|
"compression",
|
|
"cookie",
|
|
"session",
|
|
"static-files",
|
|
"xml",
|
|
"tower-compat",
|
|
] }
|
|
quick-xml = { version = "0.31", features = ["serialize"] }
|
|
serde = { workspace = true }
|
|
serde_json = "1.0"
|
|
time = { workspace = true, features = ["local-offset"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3", features = [
|
|
"env-filter",
|
|
"tracing",
|
|
"parking_lot",
|
|
"time",
|
|
"json",
|
|
] }
|
|
url = { version = "2.5", features = ["serde"] }
|
|
url-escape = "0.1"
|
|
sea-orm = { workspace = true }
|
|
entities = { workspace = true }
|
|
migration = { workspace = true }
|
|
once_cell = { version = "1", features = ["parking_lot"] }
|
|
futures = "0.3"
|
|
audiotags = "0.5"
|
|
tracing-appender = "0.2"
|
|
blake3 = "1.5"
|
|
image = "0.25"
|
|
nate = "0.4"
|
|
rand = "0.8"
|
|
http-range = "0.1"
|