[package]
edition = "2024"
name = "whyhttp"
version = "0.1.0"
build = false
include = [
"src/**",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP mock server for use in tests. Starts a real server, expectations configured via fluent builder API, verified automatically on drop."
readme = "README.md"
keywords = [
"http",
"mock",
"test",
"server",
"testing",
]
categories = [
"development-tools::testing",
"network-programming",
]
license = "MIT"
repository = "https://github.com/nerjs/whyhttp"
[lib]
name = "whyhttp"
path = "src/lib.rs"
[dependencies.tiny_http]
version = "0.12.0"
[dev-dependencies.reqwest]
version = "0.13.2"
features = ["blocking"]
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.tokio]
version = "1.50.0"
features = ["full"]