Add Rust project scaffold with dependencies

This commit is contained in:
2026-04-13 12:14:36 +02:00
parent 5b32c02b5b
commit 8dd5967675
3 changed files with 2463 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[package]
name = "doctate-server"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.7"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "multipart"] }
askama = "0.12"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
dotenvy = "0.15"
uuid = { version = "1", features = ["v4"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
tower-http = { version = "0.5", features = ["limit", "trace"] }
rand = "0.8"
bcrypt = "0.15"
axum-extra = { version = "0.9", features = ["cookie"] }