-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.03 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
[workspace]
members = ["octoproxy", "tui", "e2e", "client", "lib", "server", "easycert"]
[workspace.package]
version = "0.1.1"
authors = ["Ichika <root.schwarz.chan@gmail.com>"]
license = "MIT"
repository = "https://github.com/schwartx/octoproxy"
readme = "README.md"
[profile.release]
opt-level = 1
lto = "fat"
strip = "debuginfo"
[workspace.dependencies]
anyhow = "1.0.71"
clap = { version = "4.2.7", default-features = false, features = [
"derive",
"help",
"std",
] }
toml = "0.7.3"
tokio = { version = "1.28.1", default-features = false, features = ["full"] }
bytes = "1.4.0"
serde = { version = "1.0.163", features = ["derive"] }
tracing = { version = "0.1.37" }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
http = "0.2.9"
futures = "0.3.28"
url = "2.3.1"
tokio-rustls = "0.24.0"
rustls = { version = "0.21.1" }
hyper = { version = "0.14.26", default-features = false }
tokio-util = { version = "0.7.7", default-features = false }
h3 = "0.0.2"
h3-quinn = "0.0.3"
quinn = "0.10.1"
parking_lot = "0.12.1"