38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "diplom"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
argon2 = "0.6.0-pre.1"
|
|
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"
|
|
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", features = ["derive"] }
|
|
regex = "1.11"
|
|
mime = "0.3"
|
|
axum_typed_multipart = "0.16"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
webrtc = "0.13"
|
|
dashmap = "6.1"
|
|
rand = "0.9"
|
|
sha2 = "0.10"
|
|
base64 = "0.22"
|
|
scc = "2.3"
|
|
rust-s3 = "0.35.1"
|