Amnezichat/client/Cargo.toml

28 lines
564 B
TOML
Raw Normal View History

2025-01-17 18:27:46 +03:00
[package]
2025-01-19 01:55:12 +03:00
name = "Amnezichat"
2025-01-17 18:27:46 +03:00
version = "0.1.0"
edition = "2021"
[dependencies]
2025-01-19 01:55:12 +03:00
reqwest = { version = "0.11", features = ["blocking", "json", "socks"] }
ipnetwork = "0.18.0"
2025-01-17 18:27:46 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2025-01-19 01:55:12 +03:00
oqs = "0.10.0"
2025-01-17 18:27:46 +03:00
regex = "1.7"
rand = "0.8.4"
chacha20poly1305 = "0.10"
argon2 = "0.5"
zeroize = "1.5"
base64 = "0.21"
hex = "0.4"
rpassword = "7.3.1"
2025-01-19 01:55:12 +03:00
sha3 = "0.10.8"
2025-01-17 18:27:46 +03:00
x25519-dalek = "2.0.1"
2025-01-19 01:55:12 +03:00
ed25519-dalek = "2.1.1"
2025-04-19 13:30:28 +03:00
rocket = { version = "0.5", features = ["json"] }
eframe = "0.26"
egui = "0.26"
2025-05-02 00:58:21 +03:00
rfd = "0.12"
which = "4.4"