login-template/Cargo.toml

18 lines
536 B
TOML
Raw Normal View History

2023-11-14 10:53:19 -08:00
[package]
name = "fossil"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-13 12:18:04 -08:00
base64 = "0.21.7"
2024-02-02 12:05:39 -08:00
rand = "0.8.5"
rand_hc = "0.3.2"
regex = "1.10.3"
2023-12-05 11:59:00 -08:00
rocket = {version="0.5.0",features=["secrets","json"]}
2024-01-23 11:55:13 -08:00
rocket_db_pools = {version="0.1.0",features=["sqlx_postgres"]}
sha256 = "1.5.0"
2024-01-23 11:55:13 -08:00
sqlx = { version = "0.7.3", features = ["macros", "postgres"] }
# rocket_sync_db_pools = { version = "0.1.0", features = ["diesel_postgres_pool", "diesel"] }