vpncloud/Cargo.toml

34 lines
637 B
TOML
Raw Normal View History

2015-11-19 15:34:20 +00:00
[package]
2015-11-23 10:55:37 +00:00
name = "vpncloud"
2016-04-05 13:36:06 +00:00
version = "0.5.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.3"
2016-05-02 06:35:11 +00:00
signal = ">=0.1.4"
2016-03-29 08:45:54 +00:00
nix = "0.5"
2015-11-28 16:54:52 +00:00
libc = "0.2"
aligned_alloc = "0.1"
rand = "0.3"
2016-03-29 08:45:54 +00:00
fnv = "1"
2016-05-02 06:35:11 +00:00
net2 = "*"
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 = []
bench = []