2015-11-19 15:34:20 +00:00
|
|
|
[package]
|
2015-11-23 10:55:37 +00:00
|
|
|
name = "vpncloud"
|
2015-11-26 21:16:51 +00:00
|
|
|
version = "0.2.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"
|
|
|
|
epoll = "0.2"
|
2015-11-25 13:31:05 +00:00
|
|
|
signal = "0.1"
|
2015-11-28 16:54:52 +00:00
|
|
|
nix = "0.4"
|
|
|
|
libc = "0.2"
|
2015-11-19 15:34:20 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
gcc = "0.3"
|
2015-11-30 16:27:50 +00:00
|
|
|
pkg-config = "0.3.6"
|
2015-11-23 14:40:04 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2015-11-25 20:05:11 +00:00
|
|
|
bench = []
|