[package]
edition = "2021"
name = "standout-test"
version = "12.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-process test harness for applications built with the standout CLI framework"
readme = false
keywords = [
"cli",
"testing",
"harness",
"standout",
]
categories = [
"command-line-interface",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/arthur-debert/standout"
[lib]
name = "standout_test"
path = "src/lib.rs"
[[test]]
name = "clap_parity"
path = "tests/clap_parity.rs"
[[test]]
name = "color_gate_env_only_restoration"
path = "tests/color_gate_env_only_restoration.rs"
[[test]]
name = "color_gate_restoration"
path = "tests/color_gate_restoration.rs"
[[test]]
name = "color_gates"
path = "tests/color_gates.rs"
[[test]]
name = "contract_surfaces"
path = "tests/contract_surfaces.rs"
[[test]]
name = "default_command"
path = "tests/default_command.rs"
[[test]]
name = "diagnostics"
path = "tests/diagnostics.rs"
[[test]]
name = "exit_code_table"
path = "tests/exit_code_table.rs"
[[test]]
name = "exit_statuses"
path = "tests/exit_statuses.rs"
[[test]]
name = "harness"
path = "tests/harness.rs"
[[test]]
name = "harness_observation"
path = "tests/harness_observation.rs"
[[test]]
name = "help_matrix"
path = "tests/help_matrix.rs"
[[test]]
name = "help_through_run"
path = "tests/help_through_run.rs"
[[test]]
name = "incremental_results"
path = "tests/incremental_results.rs"
[[test]]
name = "invariants"
path = "tests/invariants.rs"
[[test]]
name = "ndjson"
path = "tests/ndjson.rs"
[[test]]
name = "questionnaire_command_surface"
path = "tests/questionnaire_command_surface.rs"
[[test]]
name = "run_process"
path = "tests/run_process.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"help",
]
[dependencies.console]
version = "0.16"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.serial_test]
version = "3"
[dependencies.standout]
version = "12.0.0"
[dependencies.standout-input]
version = "12.0.0"
[dependencies.standout-render]
version = "12.0.0"
[dependencies.tempfile]
version = "3"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.clap]
version = "4"
features = [
"derive",
"help",
"string",
]
[dev-dependencies.insta]
version = "1.46.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_yaml]
version = "0.9"
[target."cfg(unix)".dependencies.libc]
version = "0.2"