-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathCargo.toml
37 lines (31 loc) · 941 Bytes
/
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
[package]
name = "neqo-qpack"
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]
log = { workspace = true }
neqo-common = { path = "./../neqo-common" }
neqo-transport = { path = "./../neqo-transport" }
qlog = { workspace = true }
rustc-hash = { workspace = true }
static_assertions = { workspace = true }
[dev-dependencies]
test-fixture = { path = "../test-fixture" }
[package.metadata.cargo-machete]
ignored = ["log"]
[features]
bench = ["neqo-common/bench", "neqo-transport/bench"]
[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