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