Files
wireguard-client/Cargo.toml
2024-03-07 10:31:19 +01:00

18 lines
517 B
TOML

[package]
name = "wireguard-client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
snow = "0.9.3"
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
zerocopy = { version = "0.7.15", features = ["derive"] }
byteorder = "1.5.0"
blake2 = { version = "0.10.6" }
rand = { version = "0.8.5", features = ["std_rng"] }
csv = "1.3.0"
serde = { version = "1.0.190", features = ["derive"] }