login-template/Cargo.toml

22 lines
676 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"
image = "0.24.8"
2024-03-29 11:39:44 -07:00
markdown = "1.0.0-alpha.16"
2024-02-02 12:05:39 -08:00
rand = "0.8.5"
rand_hc = "0.3.2"
regex = "1.10.3"
2024-04-05 11:55:00 -07:00
rocket = { version = "0.5.0", features = ["secrets", "json"] }
rocket_cors = "0.6.0"
2024-04-05 11:55:00 -07:00
rocket_db_pools = { version = "0.1.0", features = ["sqlx_postgres"] }
sha256 = "1.5.0"
2024-04-05 11:55:00 -07:00
sqlx = { version = "0.7.3", features = ["macros", "postgres", "chrono"] }
2024-02-20 11:56:18 -08:00
uuid = { version = "1.7.0", features = ["v4"] }
2024-01-23 11:55:13 -08:00
# rocket_sync_db_pools = { version = "0.1.0", features = ["diesel_postgres_pool", "diesel"] }