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"] }
|
2024-11-05 19:46:41 +05:00
|
|
|
axum = { version = "0.7.7", features = [ "macros", "multipart", "json" ] }
|
2024-11-01 15:21:55 +05:00
|
|
|
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"
|
2024-11-01 15:21:55 +05:00
|
|
|
tower = "0.5.1"
|
2024-10-26 19:11:54 +05:00
|
|
|
tower-http = { version = "0.6.1", features = ["fs"] }
|
2024-11-05 19:46:41 +05:00
|
|
|
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "postgres", "chrono", "uuid" ] }
|
2024-11-01 15:21:55 +05:00
|
|
|
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"
|
2024-11-05 19:46:41 +05:00
|
|
|
uuid = { version = "1.11.0", features = [ "v4", "serde" ] }
|
|
|
|
image = "0.25.5"
|
2024-11-05 20:09:10 +05:00
|
|
|
url-escape = "0.1.1"
|