mirror of https://github.com/dswd/vpncloud.git
Compare commits
5 Commits
2955a80af4
...
ad2e2014eb
Author | SHA1 | Date |
---|---|---|
Dennis Schwerdel | ad2e2014eb | |
dswd | 522d7d3f9c | |
dswd | ee618ba042 | |
dependabot[bot] | 61b66fa71c | |
dependabot[bot] | 506c0656ef |
|
@ -454,9 +454,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.85"
|
version = "0.2.86"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3"
|
checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "linked-hash-map"
|
name = "linked-hash-map"
|
||||||
|
@ -1122,9 +1122,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tungstenite"
|
name = "tungstenite"
|
||||||
version = "0.12.0"
|
version = "0.13.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8ada8297e8d70872fa9a551d93250a9f407beb9f37ef86494eb20012a2ff7c24"
|
checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
|
@ -1135,6 +1135,7 @@ dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"rand",
|
"rand",
|
||||||
"sha-1",
|
"sha-1",
|
||||||
|
"thiserror",
|
||||||
"url",
|
"url",
|
||||||
"utf-8",
|
"utf-8",
|
||||||
]
|
]
|
||||||
|
|
12
Cargo.toml
12
Cargo.toml
|
@ -29,7 +29,7 @@ privdrop = "0.5"
|
||||||
byteorder = "1.4"
|
byteorder = "1.4"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
smallvec = "1.6"
|
smallvec = "1.6"
|
||||||
tungstenite = { version = "0.12", optional = true, default-features = false }
|
tungstenite = { version = "0.13", optional = true, default-features = false }
|
||||||
url = { version = "2.2", optional = true }
|
url = { version = "2.2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -61,10 +61,12 @@ lto = false
|
||||||
|
|
||||||
[package.metadata.deb]
|
[package.metadata.deb]
|
||||||
extended-description = """\
|
extended-description = """\
|
||||||
VpnCloud is a simple VPN over UDP. It creates a virtual network interface on
|
VpnCloud is a high performance peer-to-peer mesh VPN over UDP supporting strong encryption,
|
||||||
the host and forwards all received data via UDP to the destination. VpnCloud
|
NAT traversal and a simple configuration. It establishes a fully-meshed self-healing VPN
|
||||||
establishes a fully-meshed VPN network in a peer-to-peer manner. It can work
|
network in a peer-to-peer manner with strong end-to-end encryption based on elliptic curve
|
||||||
on TUN devices (IP based) and TAP devices (Ethernet based)."""
|
keys and AES-256. VpnCloud creates a virtual network interface on the host and forwards all
|
||||||
|
received data via UDP to the destination. It can work on TUN devices (IP based) and TAP
|
||||||
|
devices (Ethernet based)."""
|
||||||
license-file = ["LICENSE.md", "1"]
|
license-file = ["LICENSE.md", "1"]
|
||||||
changelog = "assets/changelog.txt"
|
changelog = "assets/changelog.txt"
|
||||||
section = "net"
|
section = "net"
|
||||||
|
|
Loading…
Reference in New Issue