Initial commit

This commit is contained in:
2024-03-07 10:31:19 +01:00
commit e278bfec4e
5 changed files with 689 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[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"] }