config-easy 0.2.1

A small interactive settings menu for command-line Rust applications
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"
rust-version = "1.85"
name = "config-easy"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small interactive settings menu for command-line Rust applications"
readme = "README.md"
keywords = [
    "config",
    "settings",
    "sqlite",
    "cli",
]
categories = [
    "command-line-interface",
    "config",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/tw-libraries/rust/config-easy"

[features]
default = []
rusqlite = ["dep:rusqlite"]

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

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

[[example]]
name = "sqlite_basic"
path = "examples/sqlite_basic.rs"
required-features = ["rusqlite"]

[[example]]
name = "sqlite_builder"
path = "examples/sqlite_builder.rs"
required-features = ["rusqlite"]

[dependencies.rusqlite]
version = "0.40.0"
optional = true