| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- [package]
- name = "rathole"
- version = "0.1.2"
- edition = "2021"
- authors = ["Yujia Qiao <code@rapiz.me>"]
- description = "A reverse proxy for NAT traversal"
- license = "Apache-2.0"
- repository = "https://github.com/rapiz1/rathole"
- readme = "README.md"
- [features]
- default = ["tls", "server", "client"]
- tls = ["tokio-native-tls"]
- server = []
- client = []
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [profile.bench]
- debug = 1
- [profile.minimal]
- inherits = "release"
- opt-level = "s"
- [dependencies]
- tokio = { version = "1", features = ["full"] }
- bytes = { version = "1"}
- clap = { version = "3.0.0-rc.7", features = ["derive"] }
- toml = "0.5"
- serde = { version = "1.0", features = ["derive"] }
- anyhow = "1.0"
- sha2 = "0.10"
- bincode = "1"
- lazy_static = "1.4.0"
- hex = "0.4"
- rand = "0.8.0"
- backoff = { version="0.3.0", features=["tokio"] }
- tracing = "0.1"
- tracing-subscriber = "0.2"
- socket2 = "0.4"
- fdlimit = "0.2.1"
- tokio-native-tls = { version = "0.3.0", optional = true }
- async-trait = "0.1.52"
|