h3i 0.7.0

Low-level HTTP/3 debugging and testing
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "h3i"
version = "0.7.0"
authors = [
    "Lucas Pardue <lucas@lucaspardue.com>",
    "Evan Rittenhouse <evanrittenhouse@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level HTTP/3 debugging and testing"
readme = "README.md"
keywords = [
    "quic",
    "http3",
]
categories = ["network-programming"]
license = "BSD-2-Clause"
repository = "https://github.com/cloudflare/quiche"

[features]
async = [
    "dep:tokio",
    "dep:tokio-quiche",
]

[lib]
name = "h3i"
path = "src/lib.rs"

[[bin]]
name = "h3i"
path = "src/main.rs"

[[example]]
name = "content_length_mismatch"
path = "examples/content_length_mismatch.rs"

[[example]]
name = "stream_limit"
path = "examples/stream_limit.rs"

[dependencies.clap]
version = "4"

[dependencies.env_logger]
version = "0.11"

[dependencies.inquire]
version = "0.9.1"

[dependencies.log]
version = "0.4.20"
features = ["std"]

[dependencies.mio]
version = "1"
features = [
    "net",
    "os-poll",
]

[dependencies.multimap]
version = "0.10"

[dependencies.octets]
version = "0.3.7"

[dependencies.qlog]
version = "0.18.0"

[dependencies.quiche]
version = "0.30.0"
features = [
    "internal",
    "qlog",
]

[dependencies.ring]
version = "0.17.8"

[dependencies.serde]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.serde_with]
version = "3.20.0"
features = [
    "macros",
    "std",
]
default-features = false

[dependencies.tokio]
version = "1.44"
features = [
    "net",
    "sync",
    "time",
]
optional = true

[dependencies.tokio-quiche]
version = "0.20.0"
features = [
    "capture_keylogs",
    "quiche_internal",
]
optional = true

[dependencies.url]
version = "2"

[lints.clippy]
mem_forget = "deny"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(capture_keylogs)",
    "cfg(test_invalid_len_compilation_fail)",
    "cfg(boring_v5)",
]