reinhardt-http 0.1.2

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"
rust-version = "1.94.0"
name = "reinhardt-http"
version = "0.1.2"
authors = ["kent8192 <51869472+kent8192@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP primitives, request and response handling for Reinhardt"
documentation = "https://docs.rs/reinhardt-http"
readme = "README.md"
keywords = [
    "http",
    "web",
    "request",
    "response",
    "framework",
]
categories = [
    "web-programming",
    "web-programming::http-server",
]
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.11.1"

[dependencies.futures]
version = "0.3.31"

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

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

[dependencies.reinhardt-core]
version = "0.1.2"
features = ["exception"]

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

[dependencies.serde_json]
version = "1.0.149"

[dependencies.serde_urlencoded]
version = "0.7.1"

[dependencies.sha2]
version = "0.10.9"

[dependencies.thiserror]
version = "2.0.18"

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

[dependencies.tracing]
version = "0.1.44"

[dependencies.uuid]
version = "1.23.0"
features = [
    "v4",
    "v5",
    "v7",
    "serde",
]

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

[dev-dependencies.insta]
version = "1.47.2"
features = [
    "json",
    "toml",
]

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

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

[dev-dependencies.tokio]
version = "1.51.0"
features = [
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
    "net",
    "io-util",
    "rt-multi-thread",
    "macros",
]