askit 0.2.0

A simple and semantic library to ask for user input in CLI applications. Type-safe parsing, defaults and retries.
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 = "askit"
version = "0.2.0"
authors = ["Bruno Menezes Gomes <bruno.gomes.qa@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple and semantic library to ask for user input in CLI applications. Type-safe parsing, defaults and retries."
readme = "README.md"
keywords = [
    "cli",
    "input",
    "prompt",
    "stdin",
    "terminal",
]
categories = [
    "command-line-interface",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/Bruno-Gomes-QA/askit"

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

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

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

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

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

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

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

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

[dependencies]