[package]
edition = "2021"
rust-version = "1.75"
name = "mockserver-client"
version = "7.4.0"
authors = ["James D Bloom <jamesdbloom@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An idiomatic Rust client for MockServer's control-plane API"
homepage = "https://www.mock-server.com"
documentation = "https://docs.rs/mockserver-client"
readme = "README.md"
keywords = [
"mockserver",
"mock",
"testing",
"http",
"integration-testing",
]
categories = [
"development-tools::testing",
"web-programming::http-client",
]
license = "Apache-2.0"
repository = "https://github.com/mock-server/mockserver-monorepo"
[lib]
name = "mockserver_client"
path = "src/lib.rs"
[[test]]
name = "auth_tls_tests"
path = "tests/auth_tls_tests.rs"
[[test]]
name = "breakpoint_tests"
path = "tests/breakpoint_tests.rs"
[[test]]
name = "callback_tests"
path = "tests/callback_tests.rs"
[[test]]
name = "control_plane_tests"
path = "tests/control_plane_tests.rs"
[[test]]
name = "expectation_roundtrip_tests"
path = "tests/expectation_roundtrip_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "llm_mcp_tests"
path = "tests/llm_mcp_tests.rs"
[[test]]
name = "roundtrip_fidelity"
path = "tests/roundtrip_fidelity.rs"
[[test]]
name = "scenario_tests"
path = "tests/scenario_tests.rs"
[[test]]
name = "sre_tests"
path = "tests/sre_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[dependencies.base64]
version = "0.22"
[dependencies.dirs]
version = "6"
[dependencies.percent-encoding]
version = "2"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"native-tls",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tungstenite]
version = "0.24"
[dependencies.url]
version = "2"
[dev-dependencies.tiny_http]
version = "0.12"