quick rust website

This commit is contained in:
2025-12-08 20:54:02 +01:00
commit b0a5e51607
12 changed files with 2083 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "mycoolwebsite"
version = "0.1.1"
edition = "2024"
[dependencies]
axum = "0.8.7"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.43"
tracing-subscriber = "0.3.22"
tower-http = { version = "0.6.6", features = ["cors", "limit"] }
tower_governor = "0.8.0"
anyhow = "1.0.100"
chrono = { version = "0.4.42", features = ["serde"] }
askama = "0.14.0"
clap = { version = "4.5.53", features = ["derive"] }