2015-11-19 15:34:20 +00:00
|
|
|
[package]
|
2015-11-23 10:55:37 +00:00
|
|
|
name = "vpncloud"
|
2016-08-05 06:50:22 +00:00
|
|
|
version = "0.7.0"
|
2015-11-19 15:34:20 +00:00
|
|
|
authors = ["Dennis Schwerdel <schwerdel@informatik.uni-kl.de>"]
|
|
|
|
build = "build.rs"
|
2015-11-28 16:54:52 +00:00
|
|
|
license = "GPL-3.0"
|
|
|
|
description = "Peer-to-peer VPN"
|
|
|
|
homepage = "https://github.com/dswd/vpncloud.rs"
|
|
|
|
repository = "https://github.com/dswd/vpncloud.rs"
|
|
|
|
keywords = ["vpn", "p2p", "tun", "tap", "network"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
2015-11-19 15:34:20 +00:00
|
|
|
[dependencies]
|
|
|
|
time = "0.1"
|
|
|
|
docopt = "0.6"
|
|
|
|
rustc-serialize = "0.3"
|
2015-11-20 08:11:54 +00:00
|
|
|
log = "0.3"
|
2016-06-30 08:05:37 +00:00
|
|
|
signal = "0.2"
|
2016-06-21 06:57:20 +00:00
|
|
|
nix = "0.6"
|
2015-11-28 16:54:52 +00:00
|
|
|
libc = "0.2"
|
2016-04-05 13:27:47 +00:00
|
|
|
aligned_alloc = "0.1"
|
2015-12-03 08:38:14 +00:00
|
|
|
rand = "0.3"
|
2016-03-29 08:45:54 +00:00
|
|
|
fnv = "1"
|
2016-05-25 07:56:41 +00:00
|
|
|
net2 = "0.2"
|
2016-06-30 08:05:37 +00:00
|
|
|
bitflags = "0.7"
|
2015-11-19 15:34:20 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
gcc = "0.3"
|
2016-03-29 08:45:54 +00:00
|
|
|
pkg-config = "0.3"
|
2015-11-23 14:40:04 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2015-11-25 20:05:11 +00:00
|
|
|
bench = []
|