neqo-http3/Cargo.toml (44 lines of code) (raw):

[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 } sfv = { version = "0.9", default-features = false } strum = { workspace = true} 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"]