schemaui-cli 0.4.0

CLI wrapper for schemaui, rendering JSON Schemas as TUIs
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

[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"

[[bin]]
name = "schemaui"
path = "src/main.rs"

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

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

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

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

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

[dependencies.schemaui]
version = "0.6.1"

[dependencies.serde_json]
version = "1"

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

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

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