tickets/Cargo.toml

21 lines
687 B
TOML
Raw Normal View History

2022-06-11 23:44:44 +02:00
[package]
name = "tickets"
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.11.1"
axum = "0.5.7"
chrono = { version = "0.4.19", features = ["serde"] }
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] }
tokio = { version = "1.19.2", features = ["full"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
tower-http = { version = "0.3.4", features = ["fs", "trace"] }
2022-12-23 20:22:38 +01:00
serde = { version = "1.0", features = ["derive"] }
2022-06-11 23:44:44 +02:00
rand = "0.8.5"
argon2 = "0.4.0"
axum-extra = { version = "0.3.4", features = ["cookie"] }
2022-12-23 20:22:38 +01:00
regex = "1.7.0"