vpncloud/Cargo.toml

66 lines
1.6 KiB
TOML
Raw Normal View History

2015-11-19 15:34:20 +00:00
[package]
2015-11-23 10:55:37 +00:00
name = "vpncloud"
2019-02-16 14:42:03 +00:00
version = "0.9.1"
2019-01-10 18:36:50 +00:00
authors = ["Dennis Schwerdel <schwerdel@googlemail.com>"]
2015-11-19 15:34:20 +00:00
build = "build.rs"
2015-11-28 16:54:52 +00:00
license = "GPL-3.0"
description = "Peer-to-peer VPN"
2019-02-14 21:51:10 +00:00
homepage = "https://vpncloud.ddswd.de"
2019-02-12 18:29:36 +00:00
repository = "https://github.com/dswd/vpncloud"
2015-11-28 16:54:52 +00:00
keywords = ["vpn", "p2p", "tun", "tap", "network"]
readme = "README.md"
2015-11-19 15:34:20 +00:00
[dependencies]
time = "0.1"
2019-01-01 23:35:14 +00:00
docopt = "^1"
serde = "1.0"
serde_derive = "1.0"
2019-01-01 23:35:14 +00:00
serde_yaml = "0.8"
log = { version = "0.4", features = ["std"] }
signal = "0.6"
2015-11-28 16:54:52 +00:00
libc = "0.2"
2019-01-01 23:35:14 +00:00
rand = "0.6"
2016-03-29 08:45:54 +00:00
fnv = "1"
net2 = "0.2"
2019-01-01 23:35:14 +00:00
bitflags = "^1"
yaml-rust = "0.4"
2019-02-15 21:42:13 +00:00
igd = "0.6" # Do not update, 0.7 has problems with exit by ctrl-c
2019-01-01 23:35:14 +00:00
siphasher = "0.3"
daemonize = "0.3"
2019-02-14 21:51:10 +00:00
ring = "0.14"
2019-02-19 17:42:50 +00:00
base-62 = "0.1"
2015-11-19 15:34:20 +00:00
[build-dependencies]
2019-01-01 23:35:14 +00:00
cc = "^1"
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
[package.metadata.deb]
extended-description = """\
VpnCloud is a simple VPN over UDP. It creates a virtual network interface on
the host and forwards all received data via UDP to the destination. VpnCloud
establishes a fully-meshed VPN network in a peer-to-peer manner. It can work
on TUN devices (IP based) and TAP devices (Ethernet based)."""
license-file = ["LICENSE.md", "1"]
changelog = "assets/changelog.txt"
section = "net"
assets = [
["target/release/vpncloud", "/usr/bin/vpncloud", "755"],
["assets/example.net.disabled", "/etc/vpncloud/example.net.disabled", "600"],
["assets/vpncloud@.service", "/lib/systemd/system/vpncloud@.service", "644"],
["target/vpncloud.1.gz", "/usr/share/man/man1/vpncloud.1.gz", "644"]
]