[package]
edition = "2021"
name = "standout"
version = "7.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Styled CLI template rendering with automatic terminal detection"
readme = "README.md"
keywords = [
"cli",
"terminal",
"colors",
"template",
"styling",
]
categories = [
"command-line-interface",
"template-engine",
]
license = "MIT"
repository = "https://github.com/arthur-debert/standout"
[features]
default = []
macros = []
[lib]
name = "standout"
path = "src/lib.rs"
[[test]]
name = "app_integration"
path = "tests/app_integration.rs"
[[test]]
name = "command_macro"
path = "tests/command_macro.rs"
[[test]]
name = "dispatch_derive"
path = "tests/dispatch_derive.rs"
[[test]]
name = "embed_macros"
path = "tests/embed_macros.rs"
[[test]]
name = "handler_macro"
path = "tests/handler_macro.rs"
[[test]]
name = "help_command_groups"
path = "tests/help_command_groups.rs"
[[test]]
name = "issue_89_late_binding"
path = "tests/issue_89_late_binding.rs"
[[test]]
name = "list_view"
path = "tests/list_view.rs"
[[test]]
name = "list_view_macro"
path = "tests/list_view_macro.rs"
[[test]]
name = "local_app_theme"
path = "tests/local_app_theme.rs"
[[test]]
name = "nesting"
path = "tests/nesting.rs"
[[test]]
name = "output_mode_matrix"
path = "tests/output_mode_matrix.rs"
[[test]]
name = "piping_integration"
path = "tests/piping_integration.rs"
[[test]]
name = "property_rendering"
path = "tests/property_rendering.rs"
[[test]]
name = "seekable_derive"
path = "tests/seekable_derive.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[[test]]
name = "tabular_derive"
path = "tests/tabular_derive.rs"
[[test]]
name = "verification_integration"
path = "tests/verification_integration.rs"
[[test]]
name = "verify_edge_cases"
path = "tests/verify_edge_cases.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"help",
]
[dependencies.console]
version = "0.16"
[dependencies.csv]
version = "1.3"
[dependencies.deunicode]
version = "1.6.2"
[dependencies.minijinja]
version = "2"
features = ["loader"]
[dependencies.quick-xml]
version = "0.36"
features = ["serialize"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.standout-bbparser]
version = "7.2.0"
[dependencies.standout-dispatch]
version = "7.2.0"
[dependencies.standout-macros]
version = "7.2.0"
[dependencies.standout-pipe]
version = "7.2.0"
[dependencies.standout-render]
version = "7.2.0"
[dependencies.standout-seeker]
version = "7.2.0"
[dependencies.terminal_size]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dev-dependencies.insta]
version = "1.46.1"
features = [
"yaml",
"json",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3.24.0"