pea_2_pea/Cargo.toml
2025-07-28 20:23:55 +02:00

33 lines
548 B
TOML

[package]
name = "pea_2_pea"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "server"
path = "src/server/main.rs"
[[bin]]
name = "client"
path = "src/client/main.rs"
[dependencies]
aes = "0.8.4"
cbc = "0.1.2"
chrono = "0.4.41"
cipher = { version = "0.4.4", features = ["block-padding", "alloc"] }
clap = { version = "4.5.41", features = ["derive"] }
hmac = "0.12.1"
orx-concurrent-vec = "3.6.0"
pbkdf2 = "0.12.2"
rand = "0.9.2"
rayon = "1.10.0"
readonly = "0.2.13"
sha2 = "0.10.9"
smol = "2.0.2"
tappers = "0.4.2"
[features]
no-timeout = []