lino-arguments 0.3.0

A unified configuration library combining environment variables and CLI arguments with a clear priority chain
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 = "lino-arguments"
version = "0.3.0"
authors = []
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A unified configuration library combining environment variables and CLI arguments with a clear priority chain"
readme = "README.md"
keywords = [
    "lino",
    "arguments",
    "cli",
    "environment",
    "config",
]
categories = [
    "command-line-interface",
    "config",
]
license = "Unlicense"
repository = "https://github.com/link-foundation/lino-arguments"

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

[[bin]]
name = "lino-arguments"
path = "src/main.rs"

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

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

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

[dependencies.clap]
version = "4.4"
features = [
    "derive",
    "env",
    "string",
]

[dependencies.ctor]
version = "0.4.3"

[dependencies.dotenvy]
version = "0.15"

[dependencies.lino-env]
version = "0.1.0"

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

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.tempfile]
version = "3.10"