schemaui-cli 0.2.7

CLI wrapper for schemaui, rendering JSON Schemas as TUIs
Documentation
[[bin]]
name = "schemaui"
path = "src/main.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.color-eyre]
version = "0.6"

[dependencies.schemaui]
version = "0.4.3"

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
features = ["rt-multi-thread"]
optional = true
version = "1"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[features]
default = ["full", "web"]
full = ["json", "yaml", "toml", "web"]
json = ["schemaui/json"]
toml = ["schemaui/toml"]
web = ["schemaui/web", "dep:tokio"]
yaml = ["schemaui/yaml"]

[lib]
name = "schemaui_cli"
path = "src/lib.rs"

[package]
authors = ["unic <yuniqueunic@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-interface", "config"]
description = "CLI wrapper for schemaui, rendering JSON Schemas as TUIs"
edition = "2024"
keywords = ["tui", "schema", "configuration", "terminal", "cross-platform"]
license = "MIT OR Apache-2.0"
name = "schemaui-cli"
readme = "cli_usage.md"
repository = "https://github.com/yuniqueunic/schemaui/schemaui-cli"
version = "0.2.7"

[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = "debuginfo"

[[test]]
name = "help"
path = "tests/help.rs"