Initial blog setup

This commit is contained in:
2024-10-01 19:24:07 +08:00
commit 278fb99277
17 changed files with 2502 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "blog-server"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7"
tokio = { version = "1", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["fs"] }
pulldown-cmark = "0.12"
serde = { version = "1.0", features = ["derive"] }
chrono = "0.4"
once_cell = "1.19"
clap = { version = "4.5", features = ["derive"] }