rusnel 0.3.7

Rusnel is a fast TCP/UDP tunnel, transported over and encrypted using QUIC protocol. Single executable including both client and server
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 = "rusnel"
version = "0.3.7"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rusnel is a fast TCP/UDP tunnel, transported over and encrypted using QUIC protocol. Single executable including both client and server"
homepage = "https://github.com/guyte149/Rusnel"
documentation = "https://docs.rs/rusnel"
readme = "README.md"
keywords = [
    "tunnel",
    "socks",
    "quic",
    "rusnel",
]
categories = ["network-programming"]
license = "Apache-2.0"
repository = "https://github.com/guyte149/Rusnel"

[lib]
name = "rusnel"
path = "src/lib.rs"

[[bin]]
name = "rusnel"
path = "src/main.rs"

[[test]]
name = "auth"
path = "tests/auth.rs"

[[test]]
name = "combinations"
path = "tests/combinations.rs"

[[test]]
name = "concurrent"
path = "tests/concurrent.rs"

[[test]]
name = "disconnect_cleanup"
path = "tests/disconnect_cleanup.rs"

[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"

[[test]]
name = "large_transfer"
path = "tests/large_transfer.rs"

[[test]]
name = "reconnect"
path = "tests/reconnect.rs"

[[test]]
name = "tunnels"
path = "tests/tunnels.rs"

[dependencies.anyhow]
version = "1.0.102"

[dependencies.clap]
version = "4.6.1"
features = [
    "derive",
    "color",
    "suggestions",
    "cargo",
]

[dependencies.dirs]
version = "6.0.0"

[dependencies.futures]
version = "0.3.32"

[dependencies.quinn]
version = "0.11.9"

[dependencies.rcgen]
version = "0.14.7"
features = ["x509-parser"]

[dependencies.rmp-serde]
version = "1"

[dependencies.rustls]
version = "0.23.40"
features = ["ring"]

[dependencies.rustls-pemfile]
version = "2.2.0"

[dependencies.serde]
version = "1.0.*"
features = ["derive"]

[dependencies.sha2]
version = "0.11.0"

[dependencies.tokio]
version = "1.52.1"
features = ["full"]

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.23"

[lints.clippy]
unwrap_used = "deny"

[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true