reinhardt-http 0.1.0-alpha.9

HTTP primitives, request and response handling for Reinhardt
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 = "2024"
name = "reinhardt-http"
version = "0.1.0-alpha.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP primitives, request and response handling for Reinhardt"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/kent8192/reinhardt-web"

[features]
default = ["parsers"]
full = [
    "parsers",
    "messages",
]
messages = ["reinhardt-core/messages"]
parsers = ["reinhardt-core/parsers"]

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

[[test]]
name = "request_tests"
path = "tests/request_tests.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.bytes]
version = "1.10.1"

[dependencies.futures]
version = "0.3.31"

[dependencies.hyper]
version = "1.8.1"
features = ["full"]

[dependencies.percent-encoding]
version = "2.3"

[dependencies.reinhardt-core]
version = "0.1.0-alpha.8"
features = ["exception"]

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.145"

[dependencies.serde_urlencoded]
version = "0.7.1"

[dependencies.sha2]
version = "0.10.9"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
version = "1.0"
features = ["sync"]

[dependencies.tracing]
version = "0.1.41"

[dependencies.uuid]
version = "1.18.1"
features = [
    "v4",
    "serde",
]

[dev-dependencies.futures-util]
version = "0.3.31"

[dev-dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "json",
]

[dev-dependencies.rstest]
version = "0.26.1"

[dev-dependencies.tokio]
version = "1.48.0"
features = [
    "full",
    "rt-multi-thread",
    "macros",
]