Gotta improve it, but right now this can ping. Theoretically any client should be able to connect.
34 lines
986 B
TOML
34 lines
986 B
TOML
[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]
|
|
cfg-if = "1.0.0"
|
|
color-eyre = "0.6.2"
|
|
md5 = "0.7.0"
|
|
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"
|
|
sqlx = { version = "0.7.2", features = ["time", "sqlite", "runtime-tokio"] }
|
|
time = { version = "0.3.29", features = ["serde-human-readable", "macros", "parsing"] }
|
|
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"
|