2022-04-04 01:58:51 +02:00
|
|
|
[package]
|
|
|
|
name = "bore-cli"
|
2022-04-08 10:17:01 +02:00
|
|
|
version = "0.2.0"
|
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-04-04 01:58:51 +02:00
|
|
|
clap = { version = "3.1.8", features = ["derive"] }
|
2022-04-06 07:08:35 +02:00
|
|
|
dashmap = "5.2.0"
|
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-04 01:58:51 +02:00
|
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
2022-04-06 07:08:35 +02:00
|
|
|
tracing = "0.1.32"
|
|
|
|
tracing-subscriber = "0.3.10"
|
2022-04-04 03:34:47 +02:00
|
|
|
uuid = { version = "0.8.2", features = ["serde", "v4"] }
|