mirror of https://github.com/dswd/vpncloud.git
Compare commits
No commits in common. "ad2e2014ebf9b8210885e76c8ddf0c47affd9a04" and "2955a80af422d0f6902c84c5a785bc40e4289e0f" have entirely different histories.
ad2e2014eb
...
2955a80af4
|
@ -454,9 +454,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.86"
|
version = "0.2.85"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
|
checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "linked-hash-map"
|
name = "linked-hash-map"
|
||||||
|
@ -1122,9 +1122,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tungstenite"
|
name = "tungstenite"
|
||||||
version = "0.13.0"
|
version = "0.12.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093"
|
checksum = "8ada8297e8d70872fa9a551d93250a9f407beb9f37ef86494eb20012a2ff7c24"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
|
@ -1135,7 +1135,6 @@ 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.13", optional = true, default-features = false }
|
tungstenite = { version = "0.12", optional = true, default-features = false }
|
||||||
url = { version = "2.2", optional = true }
|
url = { version = "2.2", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -61,12 +61,10 @@ lto = false
|
||||||
|
|
||||||
[package.metadata.deb]
|
[package.metadata.deb]
|
||||||
extended-description = """\
|
extended-description = """\
|
||||||
VpnCloud is a high performance peer-to-peer mesh VPN over UDP supporting strong encryption,
|
VpnCloud is a simple VPN over UDP. It creates a virtual network interface on
|
||||||
NAT traversal and a simple configuration. It establishes a fully-meshed self-healing VPN
|
the host and forwards all received data via UDP to the destination. VpnCloud
|
||||||
network in a peer-to-peer manner with strong end-to-end encryption based on elliptic curve
|
establishes a fully-meshed VPN network in a peer-to-peer manner. It can work
|
||||||
keys and AES-256. VpnCloud creates a virtual network interface on the host and forwards all
|
on TUN devices (IP based) and TAP devices (Ethernet based)."""
|
||||||
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