46 lines
1.0 KiB
TOML
46 lines
1.0 KiB
TOML
[package]
|
|||
|
|
name = "zerin"
|
||
|
|
version = "1.0.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "zerin"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
axum = { version = "0.7", features = ["ws"] }
|
||
|
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
tokio-rustls = "0.25"
|
||
|
|
tokio-tungstenite = "0.21"
|
||
|
|
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres", "chrono"] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||
|
|
tower = "0.4"
|
||
|
|
tower-http = { version = "0.5", features = ["cors", "fs"] }
|
||
|
|
hyper = "1"
|
||
|
|
hyper-util = { version = "0.1", features = ["tokio"] }
|
||
|
|
rustls = "0.22"
|
||
|
|
rcgen = "0.12"
|
||
|
|
webpki = "0.22"
|
||
|
|
rand = "0.8"
|
||
|
|
sha2 = "0.10"
|
||
|
|
hkdf = "0.12"
|
||
|
|
hmac = "0.12"
|
||
|
|
x25519-dalek = "2"
|
||
|
|
chacha20poly1305 = "0.10"
|
||
|
|
base64 = "0.21"
|
||
|
|
chrono = { version = "0.4", features = ["serde"] }
|
||
|
|
dashmap = "5"
|
||
|
|
bytes = "1"
|
||
|
|
anyhow = "1"
|
||
|
|
thiserror = "1"
|
||
|
|
hex = "0.4"
|
||
|
|
flate2 = "1"
|
||
|
|
zip = "0.6"
|
||
|
|
walkdir = "2"
|
||
|
|
tempfile = "3"
|
||
|
|
uuid = { version = "1", features = ["v4"] }
|
||
|
|
argon2 = "0.5"
|