argot-cli 0.1.0

An easy-to-use yet expressive command-line argument parser.
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.93"
name = "argot-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An easy-to-use yet expressive command-line argument parser."
readme = "README.md"
license = "ISC"
repository = "https://github.com/llucasls/argot-rs"

[features]
cli = []
default = [
    "serde",
    "json",
    "cli",
]
json = [
    "serde",
    "dep:serde_json",
]
serde = ["dep:serde"]
toml = [
    "serde",
    "dep:toml",
]

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

[[bin]]
name = "argot"
path = "src/bin/argot.rs"
required-features = ["cli"]

[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0.149"
features = ["preserve_order"]
optional = true

[dependencies.toml]
version = "0.9.11"
features = ["preserve_order"]
optional = true