This commit is contained in:
2025-05-14 06:47:10 +03:00
commit f04f5e6e41
64 changed files with 7281 additions and 0 deletions

37
Cargo.toml Normal file
View File

@@ -0,0 +1,37 @@
[package]
name = "diplom"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0"
argon2 = "0.5"
axum = { version = "0.8", features = ["ws", "multipart", "macros"] }
axum-extra = { version = "0.10", features = ["typed-header"] }
chrono = { version = "0.4", features = ["serde"] }
config = "0.15"
derive_more = { version = "2.0", features = ["full"] }
jsonwebtoken = "9.3"
rand_core = { version = "0.6", features = ["getrandom"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio", "uuid", "chrono"] }
tokio = { version = "1.45", features = ["full"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["serde", "env-filter", "chrono"] }
uuid = { version = "1.16", features = ["fast-rng", "serde", "v7"] }
url = { version = "2.5", features = ["serde"] }
validator = { version = "0.20.0", features = ["derive"] }
regex = "1.11.1"
mime = "0.3.17"
axum_typed_multipart = "0.16.2"
async-trait = "0.1.88"
futures = "0.3.31"
webrtc = "0.12.0"
dashmap = "6.1.0"
rand = "0.9.1"
sha2 = "0.10.9"
hex = "0.4.3"
base64 = "0.22.1"