[package]
edition = "2024"
rust-version = "1.97.1"
name = "minco-test"
version = "1.0.0"
authors = ["Minco Contributors"]
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-process HTTP clients, deterministic fixtures, and command evidence for Minco applications"
homepage = "https://github.com/xicv/minco"
documentation = "https://docs.rs/minco-test"
readme = "README.md"
keywords = [
"minco",
"testing",
"axum",
"http",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/xicv/minco"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "minco_test"
path = "src/lib.rs"
[[test]]
name = "deterministic_fixtures"
path = "tests/deterministic_fixtures.rs"
[[test]]
name = "plugin_conformance"
path = "tests/plugin_conformance.rs"
[dependencies.axum]
version = "0.8.9"
features = [
"json",
"macros",
]
[dependencies.http]
version = "1.3"
[dependencies.http-body-util]
version = "0.1"
[dependencies.minco-core]
version = "1.0.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
"sync",
"net",
"process",
"fs",
"io-util",
]
[dependencies.toml]
version = "1.1"
[dependencies.tower]
version = "0.5.3"
features = [
"util",
"timeout",
]
[dev-dependencies.tempfile]
version = "3.20"
[lints.clippy]
future_not_send = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"