comfycamp/Cargo.toml

30 lines
944 B
TOML
Raw Normal View History

2024-10-26 19:11:54 +05:00
[package]
name = "comfycamp"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.41.0", features = ["full"] }
axum = { version = "0.7.7", features = [ "macros", "multipart", "json", "form" ] }
axum-extra = { version = "0.9.4", features = [ "cookie" ] }
2024-10-26 19:11:54 +05:00
tera = "1.20.0"
lazy_static = "1.5.0"
tower = "0.5.1"
2024-10-26 19:11:54 +05:00
tower-http = { version = "0.6.1", features = ["fs"] }
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "postgres", "chrono", "uuid" ] }
url = { version = "2.5.2", features = [ "serde" ] }
serde = { version = "1.0.214", features = [ "derive" ] }
config = "0.14.1"
reqwest = { version = "0.12", features = [ "json" ] }
log = "0.4.22"
env_logger = "0.11.5"
anyhow = "1.0.91"
jsonwebtoken = "9.3.0"
rand = "0.8.5"
rand_core = { version = "0.6.4", features = [ "getrandom" ] }
base64 = "0.22.1"
chrono = "0.4.38"
uuid = { version = "1.11.0", features = [ "v4", "serde" ] }
image = "0.25.5"
url-escape = "0.1.1"