[package]
edition = "2024"
rust-version = "1.95.0"
name = "test-better-runner"
version = "0.2.0"
authors = ["Josh Burgess"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Optional pretty test runner (`cargo-test-better`) for the test-better testing library."
readme = "README.md"
keywords = [
"testing",
"assertions",
"matchers",
"check",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshburgess/test-better"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "test_better_runner"
path = "src/lib.rs"
[[bin]]
name = "cargo-test-better"
path = "src/main.rs"
[[test]]
name = "exit_code_parity"
path = "tests/exit_code_parity.rs"
[[test]]
name = "grouping"
path = "tests/grouping.rs"
[[test]]
name = "summary"
path = "tests/summary.rs"
[dependencies.serde_json]
version = "1.0"
[dependencies.test-better]
version = "0.2.0"
features = ["serde"]
[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"