vcl-protocol 1.0.0

Cryptographically chained packet transport protocol with SHA-256 integrity, Ed25519 signatures, and XChaCha20-Poly1305 encryption
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]