[package] name = "bore-cli" version = "0.2.3" authors = ["Eric Zhang "] license = "MIT" description = "A modern, simple TCP tunnel in Rust that exposes local ports to a remote server, bypassing standard NAT connection firewalls." repository = "https://github.com/ekzhang/bore" documentation = "https://docs.rs/bore-cli" keywords = ["network", "cli", "tunnel", "tcp"] categories = ["network-programming", "web-programming", "command-line-utilities"] readme = "README.md" edition = "2021" [[bin]] name = "bore" path = "src/main.rs" [dependencies] anyhow = { version = "1.0.56", features = ["backtrace"] } clap = { version = "3.1.8", features = ["derive"] } dashmap = "5.2.0" hex = "0.4.3" hmac = "0.12.1" serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" sha2 = "0.10.2" tokio = { version = "1.17.0", features = ["full"] } tracing = "0.1.32" tracing-subscriber = "0.3.10" uuid = { version = "0.8.2", features = ["serde", "v4"] } [dev-dependencies] lazy_static = "1.4.0" rstest = "0.12.0"