aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 29b6abed7116f7a7bfaafc69d3e6baa53a4aa72b (plain) (blame)
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
[package]
name = "wireguard"
version = "0.1.0"
authors = ["The WireGuard developers", "Sascha Grunert <mail@saschagrunert.de>", "Guanhao Yin <sopium@mysterious.site>"]
license = "GPL-3.0"
repository = "https://git.zx2c4.com/wireguard-rs/"
description = "Userspace implementation of WireGuard, a fast, modern and secure VPN tunnel."

[[bin]]
name = "userspace-wg"

[dependencies]
blake2-rfc = "0.2.17"
byteorder = "1.0.0"
clap = { version = "2", features = ["yaml"] }
daemonize = "0.2"
error-chain = "0.10"
libc = "0.2"
log = "0.3"
mowl = "1.0"
nix = "0.8"
noise-protocol = { git = "https://github.com/sopium/noise-rust", branch = "sodium_aeads" }
noise-sodiumoxide = { git = "https://github.com/sopium/noise-rust", branch = "sodium_aeads" }
pnet = "0.16.0"
rustc-serialize = "0.3.22"
sodiumoxide = { default-features = false, git = "https://github.com/sopium/sodiumoxide"}
tai64 = { git = "https://github.com/sopium/tai64" }
treebitmap = { git = "https://github.com/sopium/treebitmap" }