[package]
edition = "2021"
name = "vcl-protocol"
version = "1.0.0"
authors = ["ultrakill148852-collab"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cryptographically chained packet transport protocol with SHA-256 integrity, Ed25519 signatures, and XChaCha20-Poly1305 encryption"
documentation = "https://docs.rs/vcl-protocol"
readme = "README.md"
keywords = [
"crypto",
"networking",
"vpn",
"udp",
"secure",
]
categories = [
"cryptography",
"network-programming",
]
license = "MIT"
repository = "https://github.com/ultrakill148852-collab/vcl-protocol"
[lib]
name = "vcl_protocol"
path = "src/lib.rs"
[[bin]]
name = "vcl-protocol"
path = "src/main.rs"
[[example]]
name = "client"
path = "examples/client.rs"
[[example]]
name = "server"
path = "examples/server.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[bench]]
name = "vcl_benchmarks"
path = "benches/vcl_benchmarks.rs"
harness = false
[dependencies.bincode]
version = "1.3"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.ed25519-dalek]
version = "2.0"
[dependencies.etherparse]
version = "0.14"
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.21"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.tun]
version = "0.6"
features = ["async"]
[dependencies.x25519-dalek]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]