35 lines
1017 B
TOML
35 lines
1017 B
TOML
[package]
|
|
name = "webserver"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
opt-level = "z"
|
|
|
|
[dependencies]
|
|
file-format = "0.24"
|
|
axum = { version = "0.7", features = [] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tera = { version = "1.19", features = [] }
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
tokio-stream = { version = "0.1", features = ["full"] }
|
|
time = { version = "0.3.36", features = ["serde", "formatting"] }
|
|
tower-http = { version = "0.5.2", features = ["fs"] }
|
|
once_cell = "1.19"
|
|
base64 = "0.22"
|
|
human_bytes = "0.4"
|
|
exe = "0.5"
|
|
image = { version = "0.25", features = ["ico"] }
|
|
urlencoding = "2.1"
|
|
markdown = "1.0.0-alpha.16"
|
|
mlua = { version = "0.10", features = ["lua54", "serialize", "async", "send"] }
|
|
reqwest = { version = "0.10", default-features = false, features = [
|
|
"json",
|
|
"rustls-tls",
|
|
"blocking",
|
|
] }
|
|
serde_qs = "0.13.0"
|