-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
120 lines (76 loc) · 1.9 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[package]
name = "sosistab2"
version = "0.10.21"
authors = ["nullchinchilla <[email protected]>", "Geph Project <[email protected]"]
edition = "2021"
description="An obfuscated datagram transport for horrible networks"
license="MPL-2.0"
repository="https://github.com/geph-official/sosistab2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
smol= "1.3.0"
x25519-dalek={ version = "1.1.1", features = ["serde"] }
serde={ version = "1.0.148", features = ["derive", "rc"] }
# bytes={ version = "1.0.0", features = ["serde"] }
blake3= {version="1"}
rand= "0.7.3"
event-listener= "2.5.3"
futures-util = "0.3.25"
parking_lot= "0.12"
# governor= "0.3.1"
once_cell = "1.16.0"
num_cpus= "1.14.0"
anyhow= "1.0.66"
scopeguard= "1.1.0"
indexmap= "1.9.2"
concurrent-queue= "1.2.4"
rand_chacha= "0.2.2"
smolscale= "0.4"
async-trait= "0.1.59"
dashmap= "5.4.0"
smol-timeout = "0.6.0"
cached= "0.26.2"
smallvec= "1.10.0"
thiserror = "1.0.37"
hex= "0.4.3"
fastrand= "1.8.0"
slab = "0.4.7"
bytes={ version = "1.3.0", features = ["serde"] }
pin-project= "1.0.12"
log = "0.4.17"
arrayref = "0.3.6"
stdcode = "0.1.13"
microsleep = { version = "0.1.14", optional = true }
subtle = "2.4.1"
derivative = "2.2.0"
ring = "0.16.20"
itertools = "0.10.5"
replay_filter = {version = "0.1", path="lib/replay_filter"}
ahash = {version="0.8.3", features=["serde"]}
async-event = "0.1.0"
diatomic-waker = "0.1.0"
recycle-box = "0.2.0"
futures-intrusive = "0.5.0"
clone-macro = "0.1.0"
priority-queue = "2.0.3"
crossbeam-queue = "0.3.11"
[profile.dev]
# panic="abort"
opt-level=1
[profile.release-dbg]
inherits="release"
panic = "abort"
debug=2
[profile.release]
panic = "abort"
[dev-dependencies]
argh= "0.1.9"
env_logger= "0.9.3"
socksv5= "0.3.0"
criterion = "0.3.6"
rcgen = "0.10.0"
dirs= "4.0.0"
itertools = "0.10.5"
[[bench]]
name = "my_benchmark"
harness = false