2m2d/Cargo.toml

21 lines
500 B
TOML
Raw Normal View History

2022-08-13 10:56:51 -05:00
[package]
name = "tm2d"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-08-13 12:42:57 -05:00
anyhow = "1.0.61"
axum = "0.5.15"
axum-sessions = "0.3.1"
2022-08-13 15:19:39 -05:00
pbkdf2 = "0.11.0"
2022-08-13 12:42:57 -05:00
serde = { version = "1.0.143", features = ["derive"] }
sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres"] }
tera = "1.16.0"
thiserror = "1.0.32"
2022-08-13 10:56:51 -05:00
tokio = { version = "1.20.1", features = ["full"] }
tower = "0.4.13"
2022-08-13 13:39:41 -05:00
[features]