- Security: Add Secure flag to checkin identity cookie, implement rate limiting on login, and harden Helm security context. - Security: Add cargo-audit to CI and Release pipelines for dependency vulnerability scanning. - Backend: Enable SQLite WAL mode and fix AppState initialization in tests. - Frontend: Fully type the API client, fix importStudents FormData handling, and pin dependency versions. - Frontend: Add auto-logout on 401 and resolve authentication initialization race conditions. - CI/CD: Pin pnpm version in release workflow and include lint/audit quality gates.
30 lines
900 B
TOML
30 lines
900 B
TOML
[package]
|
|
name = "tutortool"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.95.0"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8", features = ["macros", "multipart"] }
|
|
axum-extra = { version = "0.10", features = ["cookie"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio", "macros", "migrate"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
|
|
bcrypt = "0.19"
|
|
tower-http = { version = "0.6", features = ["fs", "cors", "trace"] }
|
|
tower_governor = "0.6"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rand = "0.9"
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
tower = { version = "0.5", features = ["util"] }
|
|
http-body-util = "0.1"
|
|
bytes = "1"
|
|
temp-env = "0.3"
|
|
serial_test = "3.1"
|