-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (60 loc) · 2.06 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (60 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace]
resolver = "2"
members = [
"crates/chatalot-server",
"crates/chatalot-db",
"crates/chatalot-crypto",
"crates/chatalot-common",
]
exclude = [
"clients/desktop/src-tauri",
"crates/chatalot-crypto-wasm",
]
[workspace.package]
version = "0.23.0"
edition = "2024"
license = "GPL-3.0-only"
description = "Self-hosted encrypted chat platform with E2EE, voice/video calls, and SSO support"
homepage = "https://github.com/purpleneutral/chatalot"
repository = "https://github.com/purpleneutral/chatalot"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
axum = { version = "0.8", features = ["ws", "multipart"] }
axum-extra = { version = "0.10", features = ["typed-header"] }
tower = { version = "0.5", features = ["limit", "timeout"] }
tower-http = { version = "0.6", features = ["cors", "fs", "trace", "compression-gzip", "set-header"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "chrono", "json"] }
uuid = { version = "1", features = ["v4", "v7", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
thiserror = "2"
anyhow = "1"
argon2 = "0.5"
jsonwebtoken = "9"
ed25519-dalek = { version = "2", features = ["serde", "pem", "rand_core"] }
x25519-dalek = { version = "2", features = ["static_secrets", "serde"] }
chacha20poly1305 = "0.10"
hkdf = "0.12"
sha2 = "0.10"
rand = "0.8"
zeroize = { version = "1", features = ["derive"] }
subtle = "2"
dashmap = "6"
validator = { version = "0.19", features = ["derive"] }
totp-rs = { version = "5", features = ["gen_secret", "otpauth"] }
base32 = "0.5"
data-encoding = "2"
reqwest = { version = "0.12", features = ["json", "multipart"] }
openidconnect = "3"
# Shared crates
chatalot-db = { path = "crates/chatalot-db" }
chatalot-crypto = { path = "crates/chatalot-crypto" }
chatalot-common = { path = "crates/chatalot-common" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true