rathole/Cargo.toml

77 lines
1.9 KiB
TOML
Raw Normal View History

2021-12-11 05:30:42 -07:00
[package]
name = "rathole"
2022-01-08 04:39:52 -07:00
version = "0.3.4"
2021-12-11 05:30:42 -07:00
edition = "2021"
authors = ["Yujia Qiao <code@rapiz.me>"]
description = "A reverse proxy for NAT traversal"
2021-12-18 23:55:58 -07:00
license = "Apache-2.0"
2021-12-18 05:20:41 -07:00
repository = "https://github.com/rapiz1/rathole"
readme = "README.md"
2022-01-01 23:19:14 -07:00
build = "build.rs"
2022-01-10 20:45:52 -07:00
include = ["src/**/*", "LICENSE", "README.md", "build.rs"]
2021-12-11 05:30:42 -07:00
[features]
2022-01-02 01:38:31 -07:00
default = ["server", "client", "tls", "noise", "hot-reload"]
# Run as a server
server = []
2022-01-02 01:38:31 -07:00
# Run as a client
client = []
2022-01-02 01:38:31 -07:00
# TLS support
tls = ["tokio-native-tls"]
2022-01-02 01:38:31 -07:00
# Noise support
noise = ["snowstorm", "base64"]
2022-01-02 01:38:31 -07:00
# Configuration hot-reload support
hot-reload = ["notify"]
2021-12-23 06:06:40 -07:00
# Feature to enable tokio-console. Disabled by default.
# Don't enable it unless for debugging purposes.
console = ["console-subscriber", "tokio/tracing"]
2021-12-11 05:30:42 -07:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-01-03 02:50:28 -07:00
[profile.dev]
panic = "abort"
[profile.release]
2022-01-03 02:50:28 -07:00
panic = "abort"
lto = true
2021-12-11 05:30:42 -07:00
[profile.bench]
debug = 1
[profile.minimal]
inherits = "release"
opt-level = "z"
lto = true
codegen-units = 1
2021-12-11 05:30:42 -07:00
[dependencies]
tokio = { version = "1", features = ["full"] }
2021-12-21 06:11:46 -07:00
bytes = { version = "1", features = ["serde"] }
2022-01-01 20:51:29 -07:00
clap = { version = "3.0", features = ["derive"] }
2021-12-11 05:30:42 -07:00
toml = "0.5"
2021-12-18 23:45:52 -07:00
serde = { version = "1.0", features = ["derive"] }
2021-12-11 05:30:42 -07:00
anyhow = "1.0"
2021-12-19 03:11:09 -07:00
sha2 = "0.10"
2021-12-11 05:30:42 -07:00
bincode = "1"
2022-01-03 03:50:37 -07:00
lazy_static = "1.4"
2021-12-11 05:30:42 -07:00
hex = "0.4"
2022-01-01 20:51:29 -07:00
rand = "0.8"
2022-01-03 03:50:37 -07:00
backoff = { version="0.3", features=["tokio"] }
2021-12-11 05:30:42 -07:00
tracing = "0.1"
tracing-subscriber = "0.2"
socket2 = "0.4"
2022-01-03 03:50:37 -07:00
fdlimit = "0.2"
tokio-native-tls = { version = "0.3", optional = true }
async-trait = "0.1"
snowstorm = { version = "0.2", optional = true }
base64 = { version = "0.13", optional = true }
2021-12-26 03:35:23 -07:00
notify = { version = "5.0.0-pre.13", optional = true }
2022-01-03 03:50:37 -07:00
console-subscriber = { version = "0.1", optional = true, features = ["parking_lot"] }
2022-01-01 23:19:14 -07:00
const_format = "0.2"
atty = "0.2"
2022-01-01 23:19:14 -07:00
[build-dependencies]
2022-01-07 19:31:59 -07:00
vergen = { version = "6.0", default-features = false, features = ["build", "git", "cargo"] }
2022-01-01 23:19:14 -07:00
anyhow = "1.0"