axum-with-seaorm/Cargo.toml

27 lines
824 B
TOML

[package]
name = "axum-with-seaorm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = "0.12.1"
axum = "0.7.4"
sea-orm = { version = "0.12.12", features = ["sqlx-mysql", "runtime-tokio-rustls"] }
tokio = { version = "1.35.1", features = ["full"] }
serde = { version = "1.0.196", features = ["derive"] }
config = "0.13.4"
dotenvy = "0.15.7"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time", "local-time"] }
serde_json = "1.0.113"
chrono = "0.4.33"
state = "0.6.0"
lazy_static = "1.4.0"
validator = { version = "0.16.1", features = ["derive"] }
jsonwebtoken = "9.2.0"
async-trait = "0.1.77"
bcrypt = "0.15.0"
axum-extra = { version = "0.9.2", features = ["typed-header"] }