initial commit

This commit is contained in:
2024-05-04 10:41:58 +02:00
parent fc26a9921a
commit cf23beb84e
9 changed files with 3419 additions and 0 deletions

26
Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[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"] }
tera = { version = "1.19", features = [] }
tokio = { version = "1.37", features = ["full"] }
tokio-stream = { version = "0.1", features = ["full"] }
time = { version = "0.3", 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"