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-23 11:21:07 -08:00
|
|
|
image = "0.24.8"
|
2024-02-02 12:05:39 -08:00
|
|
|
rand = "0.8.5"
|
|
|
|
rand_hc = "0.3.2"
|
2024-02-16 14:47:31 -08:00
|
|
|
regex = "1.10.3"
|
2023-12-05 11:59:00 -08:00
|
|
|
rocket = {version="0.5.0",features=["secrets","json"]}
|
2024-02-23 12:12:15 -08:00
|
|
|
rocket_cors = "0.6.0"
|
2024-01-23 11:55:13 -08:00
|
|
|
rocket_db_pools = {version="0.1.0",features=["sqlx_postgres"]}
|
2024-01-30 09:39:02 -08:00
|
|
|
sha256 = "1.5.0"
|
2024-01-23 11:55:13 -08:00
|
|
|
sqlx = { version = "0.7.3", features = ["macros", "postgres"] }
|
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"] }
|