[package]
edition = "2021"
rust-version = "1.78"
name = "rustapi-testing"
version = "0.1.275"
authors = ["RustAPI Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Testing utilities for RustAPI applications. Provides checking helpers, test servers, and fluid assertions."
homepage = "https://github.com/Tuntii/RustAPI"
documentation = "https://docs.rs/rustapi-testing"
readme = "README.md"
keywords = [
"web",
"framework",
"api",
"rest",
"http",
]
categories = ["web-programming::http-server"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tuntii/RustAPI"
[lib]
name = "rustapi_testing"
path = "src/lib.rs"
[[test]]
name = "mock_server_test"
path = "tests/mock_server_test.rs"
[dependencies.bytes]
version = "1.5"
[dependencies.futures-util]
version = "0.3"
[dependencies.http]
version = "1.0"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1.1"
features = [
"full",
"full",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"full",
"full",
]
[dependencies.rustapi-core]
version = "0.1.188"
default-features = false
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.35"
features = [
"full",
"full",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1.8.0"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"full",
"test-util",
]