rave/Cargo.toml

39 lines
1,003 B
TOML
Raw Normal View History

2023-10-08 17:33:30 +00:00
[package]
name = "rave"
version = "0.1.0"
edition = "2021"
publish = ["crates-io"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-08 19:53:42 +00:00
cfg-if = "1.0.0"
2023-10-08 18:38:36 +00:00
color-eyre = "0.6.2"
md5 = "0.7.0"
2023-10-08 18:38:36 +00:00
poem = { version = "1.3.58", features = [
"compression",
"cookie",
"session",
"static-files",
"xml",
] }
quick-xml = { version = "0.30.0", features = ["serialize"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
2023-10-09 13:38:30 +00:00
sqlx = { version = "0.7.2", features = ["time", "postgres", "runtime-tokio"] }
time = { version = "0.3.29", features = [
"serde-human-readable",
"macros",
"parsing",
] }
2023-10-08 18:38:36 +00:00
tokio = { version = "1.32.0", features = ["full"] }
tracing = { version = "0.1.37", features = ["async-await"] }
tracing-subscriber = { version = "0.3.17", features = [
"env-filter",
"tracing",
"parking_lot",
"time",
] }
url = { version = "2.4.1", features = ["serde"] }
url-escape = "0.1.1"