http-endpoint-server-harness 0.1.1

HTTP endpoint server harness for testing mock endpoints
Documentation
[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
optional = true
version = "0.8"

[dependencies.reqwest]
features = ["json"]
optional = true
version = "0.13"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["full"]
optional = true
version = "1.49"

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.reqwest]
features = ["json"]
version = "0.13"

[dev-dependencies.tokio]
features = ["full", "full", "test-util"]
version = "1.49"

[[example]]
name = "simple"
path = "examples/simple.rs"

[features]
axum = ["dep:axum", "dep:tokio"]
default = ["axum"]
doctest = ["reqwest"]

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

[package]
authors = ["Nicolas Poncet"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::testing", "web-programming"]
description = "HTTP endpoint server harness for testing mock endpoints"
edition = "2021"
keywords = ["http", "testing", "mock", "server", "harness"]
license = "MIT"
name = "http-endpoint-server-harness"
readme = "README.md"
repository = "https://github.com/nathan-poncet/rust-server-harness"
version = "0.1.1"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"