Skip to content

Commit 1488f0c

Browse files
Rewrite to HTML templating
1 parent 7e33fc3 commit 1488f0c

19 files changed

+755
-460
lines changed

Cargo.lock

+153-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-3
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,22 @@ edition = "2021"
66

77
[dependencies]
88
reqwest = { version = "0.12", features = ["json", "trust-dns", "rustls-tls-webpki-roots"], default-features = false }
9-
axum = { version = "0.7", features = ["tokio", "http1", "http2"], default-features = false }
9+
axum = { version = "0.7", features = ["tokio", "http1", "http2", "query"], default-features = false }
1010
tower-http = { version = "0.5", default-features = false, features = ["tracing", "fs"] }
1111
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
12-
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
12+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
1313
libmcping = { path = "libmcping", features = ["tokio-runtime"] }
14+
askama = { version = "0.12", features = ["with-axum"] }
1415
serde = { version = "1", features = ["derive"] }
16+
askama_escape = "0.10"
17+
parking_lot = "0.12"
18+
askama_axum = "0.4"
19+
valk-utils = "0.1"
20+
axum-extra = "0.9"
1521
serde_json = "1"
1622
thiserror = "1"
1723
tracing = "0.1"
1824
vss = "0.1"
19-
parking_lot = "0.12.1"
2025

2126
[workspace]
2227
members = [

assets/404.html

-24
This file was deleted.

0 commit comments

Comments
 (0)