-
Notifications
You must be signed in to change notification settings - Fork 971
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (77 loc) · 2.48 KB
/
Cargo.toml
File metadata and controls
82 lines (77 loc) · 2.48 KB
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
[workspace]
members = [
"apps",
"buffer-pool",
"datagram-socket",
"h3i",
"netlog",
"octets",
"qlog",
"qlog-dancer",
"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]
anyhow = { version = "1" }
assert_matches = { version = "1" }
boring = { version = "4.3" }
buffer-pool = { version = "0.2.1", path = "./buffer-pool" }
bytes = { version = "1.11.1" }
crossbeam = { version = "0.8.1", default-features = false }
dashmap = { version = "6" }
datagram-socket = { version = "0.8.0", path = "./datagram-socket" }
debug_panic = "0.2.1"
env_logger = "0.11"
foundations = { version = ">=4,<6", default-features = false }
futures = { version = "0.3" }
futures-util = { version = "0.3", default-features = false }
h3i = { version = "0.6", path = "./h3i" }
ipnetwork = { version = "0.20" }
libc = { version = "0.2.76", default-features = false }
log = { version = "0.4.20" }
mio = { version = "1" }
nix = { version = "0.30.1", features = ["net", "uio", "socket"] }
netlog = { version = "0.1", path="./netlog" }
octets = { version = "0.3.5", path = "./octets" }
parking_lot = { version = "0.12.1", default-features = false }
pin-project = { version = "1.0.12" }
qlog = { version = "0.17.0", path = "./qlog" }
quiche = { version = "0.28.0", path = "./quiche" }
regex = { version = "1.4.2" }
ring = { version = "0.17.8" }
rstest = { version = "0.26.1" }
serde = { version = "1" }
serde_json = { version = "1" }
serde_with = { version = "~3.17", default-features = false }
slog-scope = { version = "4.0" }
slog-stdlog = { version = "4.1.1" }
smallvec = { version = "1.10", default-features = false }
task-killswitch = { version = "0.2.1", path = "./task-killswitch" }
thiserror = { version = "2" }
humantime = { version = "2" }
tokio = { version = "1.44", default-features = false }
tokio-quiche = { version = "0.18.0", path = "./tokio-quiche" }
tokio-stream = { version = "0.1" }
tokio-util = { version = "0.7.13" }
url = { version = "2" }
[profile.bench]
debug = true
[profile.release]
debug = true