aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e41c49590d76c68bc568b89376a9d0dd79bb67d4 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "wgrs"
version = "0.6.0"
authors = ["Jake McGinty <me@jake.su>"]
license = "GPL-3.0"
repository = "https://git.zx2c4.com/wireguard-rs/"
description = "Userspace implementation of WireGuard, a fast, modern and secure VPN tunnel."

[lib]
name = "wireguard"
path = "src/lib.rs"

[[bin]]
name = "wgrs"
path = "src/main.rs"

[profile.release]
debug = true

[dev-dependencies]
criterion = "0.2.0"

[[bench]]
name = "criterion"
harness = false

[dependencies]
base64 = "^0.5"
blake2-rfc = "0.2"
byteorder = "^1.2"
bytes = "0.4"
daemonize = "0.2"
env_logger = "^0.4"
failure = "^0.1"
futures = "^0.1"
lazy_static = "^0.2"
log = "^0.3"
hex = "^0.3"
rand = "^0.4"
libc = "0.2"
nix = "0.9"
rustc-serialize = "0.3.22"
pnet = "*"
snow = { git = "https://github.com/mcginty/snow", features = ["ring-accelerated"], branch = "wireguard" }
socket2 = "^0.3"
structopt = "^0.1"
structopt-derive = "^0.1"
subtle = "^0.5"
time = "*"
tokio-io = "^0.1"
tokio-core = "^0.1"
tokio-uds = "^0.1"
tokio-utun = "^0.1"
tokio-timer = "^0.1"
treebitmap = "^0.2"
x25519-dalek = "0.1.0"