feat: Initialize Rust blog CMS project with Axum, Askama, SQLite, and DevContainer setup.

This commit is contained in:
2026-03-02 20:14:54 +00:00
commit 02709fbea1
9 changed files with 2238 additions and 0 deletions

11
Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "blog_cms"
version = "0.1.0"
edition = "2024"
[dependencies]
askama = "0.15.4"
axum = "0.8.8"
dotenvy = "0.15.7"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite"] }
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }