aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e7511585387cf62857c679fa5c166eaf574d858f (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
[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."

[dependencies]
blake2-rfc = "0.2"
byteorder = "^1.2"
structopt = "^0.1"
structopt-derive = "^0.1"
daemonize = "0.2"
error-chain = "^0.11"
rand = "^0.4"
libc = "0.2"
nix = "0.9"
rustc-serialize = "0.3.22"
treebitmap = "^0.2"

env_logger = "^0.4"
log = "^0.3"

bytes = "0.4"
futures = "^0.1"
tokio-io = "^0.1"
tokio-core = "^0.1"
tokio-uds = "^0.1"
tokio-utun = "^0.1"
tokio-timer = "^0.1"

snow = { git = "https://github.com/mcginty/snow", features = ["ring-accelerated"], branch = "wireguard" }
base64 = "^0.5"
hex = "^0.3"
time = "*"
pnet = "*"