comfycamp/Cargo.toml
Ivan Reshetnikov 4f8f045d52
Admin panel for services
Store list of services in the database.
Add service covers.

Still needs some work.
Authorization probably should be implemented in middleware.
2024-11-06 16:23:29 +05:00

29 lines
944 B
TOML

[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" ] }
tera = "1.20.0"
lazy_static = "1.5.0"
tower = "0.5.1"
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"