comfycamp/Cargo.toml
Ivan Reshetnikov b61bd503e6
Add users
New features:
- Configuration
- Postgresql, migrations
- OpenID Connect
- Sessions
2024-11-01 15:21:55 +05:00

26 lines
809 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" ] }
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" ] }
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"