Files
rustunnel/Cargo.toml
T
c4ch3c4d3 70411e56f7 fix: address foundation scrutiny findings
- Make CI smoke commands Windows-aware by using OS-neutral cargo run invocations
- Replace masked negative smoke checks (|| true) with explicit non-zero assertions
- Remove Cargo.lock from .gitignore and track for binary reproducibility
- Strengthen secret redaction to eliminate stable first/last character leakage
- Remove readme field from Cargo.toml that referenced a missing README.md
2026-06-03 17:55:51 -06:00

25 lines
585 B
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"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rcgen = "0.14"
x509-parser = "0.16"
time = { version = "0.3", features = ["formatting"] }
rand = "0.8"
hex = "0.4"
[dev-dependencies]
tempfile = "3"