2f216f6554
Former-commit-id: 28d29aa4afeb3cd63d80ac4e4cf3294732614d9c [formerly 53b4fe0af0f7c53252e1738d42bb83c45375daa2] [formerly 6676a81d4556200a6ab4549fa8e25e8f7e226b3f [formerly 16895d0a56fcb7a8a9ad06ef201d996c10dbf934]] Former-commit-id: 4188a500a3e240c194045f9c8c064af1850bcefb [formerly 4d6fe6cdfdab0d8d6c11d2e68620d68b6bc971d2] Former-commit-id: e56fc240360e9de94bc84ef8176e1029649bb286 Former-commit-id: 465ee46f7667f356f47188c3243ca76e83b32e9e Former-commit-id: 47d2cf966bd45250d105bf97ad0eef5c3c5c8133 Former-commit-id: 8384c68a7896edf3b498fd7c2b6c70d912b2d638 [formerly a8cec922bd25d452cacf6313f52ddc163a20c8bf] Former-commit-id: f9ea7d5c90ab7a9b134c8fe4e55e926e334b6ae5
47 lines
1.6 KiB
TOML
47 lines
1.6 KiB
TOML
[package]
|
|
name = "wstunnel"
|
|
version = "7.0.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/erebe/wstunnel.git"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.5", features = ["derive"]}
|
|
url = "2.4.1"
|
|
anyhow = "1.0.75"
|
|
|
|
hyper = { version = "0.14.27", features = ["client", "runtime"] }
|
|
#fastwebsockets = { version = "0.4.4", features = ["upgrade"]}
|
|
fastwebsockets = { git = "https://github.com/mmastrac/fastwebsockets", branch = "split", features = ["upgrade", "simd"]}
|
|
libc = { version = "0.2.148", features = []}
|
|
once_cell = { version = "1.18.0", features = [] }
|
|
ahash = { version = "0.8.3", features = []}
|
|
pin-project = "1"
|
|
scopeguard = "1.2.0"
|
|
uuid = { version = "1.4.1", features = ["v7", "serde"] }
|
|
jsonwebtoken = { version = "9.0.0", default-features = false }
|
|
rustls-pemfile = { version = "1.0.3", features = [] }
|
|
|
|
rustls-native-certs = { version = "0.6.3", features = [] }
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
tokio-rustls = { version = "0.24.1", features = ["tls12", "dangerous_configuration", "early-data"] }
|
|
tokio-stream = { version = "0.1.14", features = ["net"] }
|
|
fast-socks5 = { version = "0.9.1", features = [] }
|
|
futures-util = { version = "0.3.28" }
|
|
|
|
tracing = { version = "0.1.37", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "fmt", "local-time"] }
|
|
base64 = "0.21.4"
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
log = "0.4.20"
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
|
tokio-fd = "0.3.0"
|
|
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
opt-level = 3
|