22 lines
651 B
TOML
22 lines
651 B
TOML
[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]
|
|
base64 = "0.21.7"
|
|
image = "0.24.8"
|
|
markdown = "1.0.0-alpha.16"
|
|
rand = "0.8.5"
|
|
rand_hc = "0.3.2"
|
|
regex = "1.10.3"
|
|
rocket = {version="0.5.0",features=["secrets","json"]}
|
|
rocket_cors = "0.6.0"
|
|
rocket_db_pools = {version="0.1.0",features=["sqlx_postgres"]}
|
|
sha256 = "1.5.0"
|
|
sqlx = { version = "0.7.3", features = ["macros", "postgres"] }
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
# rocket_sync_db_pools = { version = "0.1.0", features = ["diesel_postgres_pool", "diesel"] }
|