vpncloud/Cargo.toml

49 lines
829 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"
2017-05-09 07:27:44 +00:00
version = "0.8.1"
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.8"
serde = "1.0"
serde_derive = "1.0"
serde_yaml = "0.7"
2015-11-20 08:11:54 +00:00
log = "0.3"
2016-11-23 14:21:22 +00:00
signal = "0.3"
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"
net2 = "0.2"
2017-05-04 05:11:23 +00:00
bitflags = "0.8"
yaml-rust = "0.3"
2017-05-04 05:11:23 +00:00
igd = "0.6"
2017-01-07 14:09:40 +00:00
siphasher = "0.2"
2016-11-23 14:21:22 +00:00
daemonize = "0.2"
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 = []
2017-01-07 14:09:40 +00:00
system-libsodium = []
2016-11-25 06:29:12 +00:00
[profile.release]
lto = true
[profile.dev]
lto = false
[profile.test]
lto = false