Files
rootandfactory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> 9f1d04fcaf
CI / cargo fmt (push) Has been cancelled
CI / cargo clippy (macos-latest) (push) Has been cancelled
CI / cargo clippy (ubuntu-latest) (push) Has been cancelled
CI / cargo clippy (windows-latest) (push) Has been cancelled
CI / cargo test (macos-latest) (push) Has been cancelled
CI / cargo test (ubuntu-latest) (push) Has been cancelled
CI / cargo test (windows-latest) (push) Has been cancelled
CI / cargo build (macos-latest) (push) Has been cancelled
CI / cargo build (ubuntu-latest) (push) Has been cancelled
CI / cargo build (windows-latest) (push) Has been cancelled
CI / cargo build --release (macos-latest) (push) Has been cancelled
CI / cargo build --release (ubuntu-latest) (push) Has been cancelled
CI / cargo build --release (windows-latest) (push) Has been cancelled
CI / CLI smoke (macos-latest) (push) Has been cancelled
CI / CLI smoke (ubuntu-latest) (push) Has been cancelled
CI / CLI smoke (windows-latest) (push) Has been cancelled
CI / Minimal E2E (macos-latest) (push) Has been cancelled
CI / Minimal E2E (ubuntu-latest) (push) Has been cancelled
CI / Minimal E2E (windows-latest) (push) Has been cancelled
fix: harden tunnel performance under load
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
2026-06-04 16:25:51 -06:00

40 lines
1.1 KiB
TOML

[package]
name = "rustunnel"
version = "0.1.0"
edition = "2024"
description = "Cross-platform HTTPS mTLS lab/dev tunneling tool"
license = "MIT"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rcgen = { version = "0.14", features = ["crypto"] }
x509-parser = "0.16"
time = { version = "0.3", features = ["formatting"] }
rand = "0.8"
hex = "0.4"
rustls = { version = "0.23", default-features = false, features = ["ring", "logging"] }
rustls-pki-types = "1"
rustls-pemfile = "2"
tokio-rustls = "0.26"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full", "server-graceful"] }
http-body-util = "0.1"
tower-service = "0.3"
base64 = "0.22"
sha2 = "0.10"
bytes = "1"
futures = "0.3"
url = "2"
libc = "0.2"
[dev-dependencies]
tempfile = "3"