flows-http 0.0.5

Building blocks for flow-based HTTP requests & responses.
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 = "flows-http"
version = "0.0.5"
authors = ["Arto Bendiken"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Building blocks for flow-based HTTP requests & responses."
homepage = "https://flows.rs"
readme = "README.md"
keywords = [
    "fbp",
    "flow",
    "dataflow",
    "async",
]
categories = [
    "asynchronous",
    "concurrency",
    "network-programming",
    "no-std",
]
license = "Unlicense"
repository = "https://github.com/artob/flows.rs"
resolver = "2"

[package.metadata.readme]
title = "Flows.rs: HTTP Requests & Responses"

[features]
all = [
    "http1",
    "http2",
]
default = [
    "all",
    "std",
]
http1 = [
    "hyper/http1",
    "hyper-rustls?/http1",
    "hyper-util/http1",
]
http2 = [
    "hyper/http2",
    "hyper-rustls?/http2",
    "hyper-util/http2",
    "tls",
]
rustls = [
    "dep:hyper-rustls",
    "dep:rustls",
    "dep:rustls-platform-verifier",
]
std = ["async-flow/std"]
tls = ["rustls"]
unstable = []

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

[dependencies.async-flow]
version = "0.1.1"
features = ["tokio"]
default-features = false

[dependencies.http]
version = "1.4"
default-features = false

[dependencies.hyper]
version = "1"
features = ["client"]
default-features = false

[dependencies.hyper-rustls]
version = "0.27"
optional = true
default-features = false

[dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
default-features = false

[dependencies.rustls]
version = "0.23"
features = ["ring"]
optional = true
default-features = false

[dependencies.rustls-platform-verifier]
version = "0.5"
optional = true
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tokio]
version = "1"
features = ["net"]
default-features = false

[target.'cfg(not(target_family = "wasm"))'.dependencies]

[target.'cfg(target_family = "wasm")'.dependencies]