- 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
25 lines
585 B
TOML
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"
|