2022-04-04 01:58:51 +02:00
|
|
|
[package]
|
|
|
|
name = "bore-cli"
|
2024-06-11 03:50:23 +02:00
|
|
|
version = "0.5.1"
|
2022-04-04 05:44:36 +02:00
|
|
|
authors = ["Eric Zhang <ekzhang1@gmail.com>"]
|
|
|
|
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"
|
2022-04-04 01:58:51 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "bore"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-06 08:08:01 +02:00
|
|
|
anyhow = { version = "1.0.56", features = ["backtrace"] }
|
2022-11-11 07:08:50 +01:00
|
|
|
clap = { version = "4.0.22", features = ["derive", "env"] }
|
2022-04-06 07:08:35 +02:00
|
|
|
dashmap = "5.2.0"
|
2023-04-28 03:48:47 +02:00
|
|
|
fastrand = "1.9.0"
|
2022-04-22 05:48:38 +02:00
|
|
|
futures-util = { version = "0.3.21", features = ["sink"] }
|
2022-04-08 10:13:31 +02:00
|
|
|
hex = "0.4.3"
|
|
|
|
hmac = "0.12.1"
|
2022-04-04 01:58:51 +02:00
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2022-04-06 08:08:01 +02:00
|
|
|
serde_json = "1.0.79"
|
2022-04-08 10:13:31 +02:00
|
|
|
sha2 = "0.10.2"
|
2022-04-14 20:39:46 +02:00
|
|
|
tokio = { version = "1.17.0", features = ["rt-multi-thread", "io-util", "macros", "net", "time"] }
|
2022-04-22 05:48:38 +02:00
|
|
|
tokio-util = { version = "0.7.1", features = ["codec"] }
|
2022-04-06 07:08:35 +02:00
|
|
|
tracing = "0.1.32"
|
|
|
|
tracing-subscriber = "0.3.10"
|
2022-11-11 07:08:50 +01:00
|
|
|
uuid = { version = "1.2.1", features = ["serde", "v4"] }
|
2022-04-09 08:54:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
lazy_static = "1.4.0"
|
2023-04-28 03:55:44 +02:00
|
|
|
rstest = "0.15.0"
|
2022-04-14 20:39:46 +02:00
|
|
|
tokio = { version = "1.17.0", features = ["sync"] }
|