-
Notifications
You must be signed in to change notification settings - Fork 266
/
Cargo.toml
34 lines (31 loc) · 894 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["ihciah <ihciah@gmail.com>"]
description = "A proxy to expose real tls handshake to the firewall."
edition = "2021"
keywords = ["proxy", "tls", "shadowsocks"]
license = "MIT/Apache-2.0"
name = "shadow-tls"
readme = "README.md"
repository = "https://github.com/ihciah/shadow-tls"
version = "0.2.16"
[dependencies]
monoio = {version = "0.0.9"}
monoio-rustls-fork-shadow-tls = {version = "0.0.8-mod.2"}
rustls-fork-shadow-tls = {version = "0.20.9-mod.2", default-features = false}
anyhow = "1"
byteorder = "1"
clap = {version = "4", features = ["derive"]}
ctrlc = {version = "3", features = ["termination"]}
hmac = "0.12"
local-sync = "0.0.5"
pin-project-lite = "0.2"
rand = "0.8"
rustc-hash = "1"
sha1 = "0.10"
sha2 = "0.10"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}
webpki-roots = "0.22"
[profile.release]
lto = true
opt-level = 3