-
Notifications
You must be signed in to change notification settings - Fork 764
/
Copy pathCargo.toml
73 lines (68 loc) · 2.13 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
[workspace]
members = [
"apps",
"buffer-pool",
"datagram-socket",
"h3i",
"octets",
"qlog",
"quiche",
"task-killswitch",
"tokio-quiche",
]
exclude = ["fuzz", "tools/http3_test"]
resolver = "2"
[workspace.package]
edition = "2021"
repository = "https://github.com/cloudflare/quiche"
license = "BSD-2-Clause"
readme = "README.md"
keywords = ["quic", "http3"]
categories = ["network-programming"]
[workspace.metadata.release]
pre-release-commit-message = "{{crate_name}}: release {{version}}"
consolidate-commits = false
tag-prefix = "{{crate_name}}-"
tag-name = "{{prefix}}{{version}}"
tag-message = "{{crate_name}} {{version}}"
publish = false
[workspace.dependencies]
boring = { version = "4.3" }
buffer-pool = { version = "0.1.0", path = "./buffer-pool" }
crossbeam = { version = "0.8.1", default-features = false }
datagram-socket = { version = "0.1.0", path = "./datagram-socket" }
env_logger = "0.10"
foundations = { version = "4", default-features = false }
futures = { version = "0.3" }
futures-util = { version = "0.3", default-features = false }
h3i = { version = "0.3", path = "./h3i" }
ipnetwork = { version = "0.20" }
libc = { version = "0.2.76", default-features = false }
log = { version = "0.4.20" }
mio = { version = "0.8" }
nix = { version = "0.26.2" }
octets = { version = "0.3.0", path = "./octets" }
parking_lot = { version = "0.12.1", default-features = false }
pin-project = { version = "1.0.12" }
qlog = { version = "0.15", path = "./qlog" }
quiche = { version = "0.23", path = "./quiche" }
rand = { version = "0.8" }
regex = { version = "1.4.2" }
ring = { version = "0.17.8" }
serde = { version = "1" }
serde_json = { version = "1" }
serde_with = { version = "3.3" }
slog-scope = { version = "4.0" }
slog-stdlog = { version = "4.1.1" }
smallvec = { version = "1.10", default-features = false }
task-killswitch = { version = "0.1.0", path = "./task-killswitch" }
thiserror = { version = "1" }
tokio = { version = "1.29", default-features = false }
tokio-stream = { version = "0.1" }
tokio-util = { version = "0.7.13" }
triomphe = { version = "0.1" }
url = { version = "2" }
[profile.bench]
debug = true
[profile.release]
debug = true