scriba 0.5.0

CLI text rendering, prompts, and terminal output utilities
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 = "2021"
name = "scriba"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI text rendering, prompts, and terminal output utilities"
homepage = "https://github.com/kitechsoftware/scriba"
documentation = "https://docs.rs/scriba"
readme = "README.md"
keywords = [
    "cli",
    "terminal",
    "prompt",
    "output",
    "markdown",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kitechsoftware/scriba"

[features]
default = []
figlet = ["dep:figlet-rs"]
full = [
    "prompt",
    "logger",
    "figlet",
]
logger = ["dep:console"]
prompt = ["dep:inquire"]

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

[[example]]
name = "diff_viewer"
path = "examples/diff_viewer.rs"

[[example]]
name = "envelope_custom_fields"
path = "examples/envelope_custom_fields.rs"

[[example]]
name = "envelope_flat"
path = "examples/envelope_flat.rs"

[[example]]
name = "envelope_meta"
path = "examples/envelope_meta.rs"

[[example]]
name = "envelope_nested"
path = "examples/envelope_nested.rs"

[[example]]
name = "prompt_theming"
path = "examples/prompt_theming.rs"

[[example]]
name = "staged_diff_integration"
path = "examples/staged_diff_integration.rs"

[[example]]
name = "styling"
path = "examples/styling.rs"

[[example]]
name = "table_layouts"
path = "examples/table_layouts.rs"

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

[dependencies.console]
version = "0.16"
optional = true

[dependencies.figlet-rs]
version = "1"
optional = true

[dependencies.inquire]
version = "0.9"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tabled]
version = "0.16"

[dependencies.thiserror]
version = "1"