-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathCargo.toml
51 lines (44 loc) · 1.47 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
[package]
name = "neqo-http3"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[lints]
workspace = true
[dependencies]
enumset = { workspace = true }
log = { workspace = true }
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-qpack = { path = "./../neqo-qpack" }
neqo-transport = { path = "./../neqo-transport" }
qlog = { workspace = true }
rustc-hash = { workspace = true}
sfv = { version = "0.9", default-features = false }
url = { workspace = true }
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
neqo-http3 = { path = ".", features = ["draft-29"] }
neqo-transport = { path = "./../neqo-transport", features = ["draft-29"] }
test-fixture = { path = "../test-fixture" }
[features]
bench = ["neqo-common/bench", "neqo-crypto/bench", "neqo-qpack/bench", "neqo-transport/bench"]
disable-encryption = ["neqo-transport/disable-encryption", "neqo-crypto/disable-encryption"]
draft-29 = []
[package.metadata.cargo-machete]
ignored = ["log"]
[lib]
# See https://github.com/bheisler/criterion.rs/blob/master/book/src/faq.md#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
bench = false
[[bench]]
name = "streams"
harness = false
required-features = ["bench"]