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"
|
2019-03-01 22:12:19 +00:00
|
|
|
edition = "2018"
|
2015-11-28 16:54:52 +00:00
|
|
|
|
2015-11-19 15:34:20 +00:00
|
|
|
[dependencies]
|
|
|
|
time = "0.1"
|
2019-01-01 23:35:14 +00:00
|
|
|
docopt = "^1"
|
2017-07-22 14:34:20 +00:00
|
|
|
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"
|
2016-05-25 07:56:41 +00:00
|
|
|
net2 = "0.2"
|
2019-01-01 23:35:14 +00:00
|
|
|
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
|
|
|
|
2019-02-21 15:57:25 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3"
|
|
|
|
|
2015-11-23 14:40:04 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2015-11-25 20:05:11 +00:00
|
|
|
bench = []
|
2016-11-25 06:29:12 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2016-11-28 10:28:46 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
lto = false
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
lto = false
|
2019-02-14 21:53:08 +00:00
|
|
|
|
|
|
|
[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"]
|
|
|
|
]
|
2019-03-02 00:12:42 +00:00
|
|
|
|
|
|
|
[package.metadata.rpm.cargo]
|
|
|
|
buildflags = ["--release"]
|
|
|
|
|
|
|
|
[package.metadata.rpm.targets]
|
|
|
|
vpncloud = { path = "/usr/bin/vpncloud" }
|