[package]
edition = "2021"
name = "rusnel"
version = "0.3.2"
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 = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "large_transfer"
path = "tests/large_transfer.rs"
[[test]]
name = "tunnels"
path = "tests/tunnels.rs"
[dependencies.anyhow]
version = "1.0.86"
[dependencies.clap]
version = "4.5.9"
features = [
"derive",
"color",
"suggestions",
"cargo",
]
[dependencies.dirs]
version = "6.0.0"
[dependencies.futures]
version = "0.3.31"
[dependencies.quinn]
version = "0.11.2"
[dependencies.rcgen]
version = "0.13.1"
features = ["x509-parser"]
[dependencies.rmp-serde]
version = "1"
[dependencies.rustls]
version = "0.23.11"
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.38.1"
features = ["full"]
[dependencies.tracing]
version = "0.1.40"
[dependencies.tracing-subscriber]
version = "0.3"
[lints.clippy]
unwrap_used = "deny"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true