website/Cargo.toml

44 lines
1010 B
TOML

[package]
name = "website"
version = "0.1.0"
edition = "2021"
authors = [
"xomf",
"mcorange <mcorange@mcorangehq.xyz>"
]
[dependencies]
#? base
clap = { version = "4.5.3", features = ["derive"] }
anyhow = "1.0.81"
camino = "1.1.6"
# simplelog = { version = "0.12.2", features = ["paris"] }
toml = "0.8.12"
serde = { version = "1.0.197", features = ["derive"] }
env_logger = "0.11.3"
log = "0.4.21"
#? web
actix-files = "0.6.5"
actix-web = "4.5.1"
actix-web-lab = "0.20.2"
askama = "0.12.1"
#? web::api
chrono = { version = "0.4.37", features = ["serde"] }
#? database
sqlx = { version = "0.7.4", features = ["tls-rustls", "runtime-tokio", "postgres", "uuid"] }
uuid = { version = "1.8.0", features = ["v4"] }
# time = { version = "0.3.34", features = ["macros"] }
crypto = { version = "0.5.1", features = ["digest", "password-hash"] }
bcrypt = "0.15.1"
futures = "0.3.30"
bitflags = "2.5.0"
rand = "0.8.5"
serde_json = "1.0.115"
parse_int = "0.6.0"
[profile.dev.package.sqlx-macros]
opt-level = 3