-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
58 lines (56 loc) · 1.28 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "shoes"
version = "0.1.4"
edition = "2021"
license = "MIT"
description = "A multi-protocol proxy server."
homepage = "https://github.com/cfal/shoes/"
repository = "https://github.com/cfal/shoes/"
readme = "README.md"
keywords = ["proxy", "proxy-server", "shadowsocks", "v2ray", "vmess"]
categories = ["command-line-utilities", "network-programming"]
[dependencies]
aes = "*"
argon2 = "*"
async-trait = "*"
aws-lc-rs = { version = "*", default-features = false }
base64 = "*"
blake3 = "*"
bytes = "*"
cfb-mode = "*"
dashmap = "*"
digest = "*"
env_logger = "*"
futures = "*"
h3 = "*"
h3-quinn = "*"
hmac = "*"
http = "*"
log = "*"
md-5 = "*"
memchr = "*"
notify = "*"
parking_lot = "*"
percent-encoding = "*"
quinn = { version = "*", default-features = false, features = ["log", "platform-verifier", "runtime-tokio", "rustls-aws-lc-rs"] }
rand = "*"
rustls = "*"
serde = { version = "*", features = ["derive", "std"] }
serde_yaml = "*"
sha3 = "*"
socket2 = "*"
tokio = { version = "*", features = [
"fs",
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
] }
tokio-rustls = { version = "*", default-features = false, features = ["logging", "tls12", "aws-lc-rs"] }
webpki-roots = { version = "*" }
[profile.release]
opt-level = 3
lto = "fat"
strip = true