[package]
edition = "2021"
rust-version = "1.80"
name = "oxihttp-core"
version = "0.1.3"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OxiHTTP core types: error and http crate re-exports."
readme = "README.md"
keywords = [
"http",
"types",
"error",
"pure-rust",
]
categories = [
"web-programming",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxihttp"
[features]
tls = ["dep:oxitls-core"]
[lib]
name = "oxihttp_core"
path = "src/lib.rs"
[[bench]]
name = "core_bench"
path = "benches/core_bench.rs"
harness = false
[dependencies.bytes]
version = "1.11"
[dependencies.futures-core]
version = "0.3"
[dependencies.http]
version = "1.4"
[dependencies.http-body]
version = "1.0"
[dependencies.http-body-util]
version = "0.1"
[dependencies.oxitls-core]
version = "0.1.2"
optional = true
[dependencies.percent-encoding]
version = "2.3"
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.8"
features = ["async_tokio"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"io-util",
"signal",
"sync",
"time",
"rt",
"macros",
]