[dependencies.anyhow]
version = "1.0.89"
[dependencies.clap]
features = ["derive"]
version = "4.5.19"
[dependencies.proc-macro2]
version = "1.0.86"
[dependencies.quote]
version = "1.0.37"
[dependencies.serde]
features = ["derive"]
version = "1.0.210"
[dependencies.serde_with]
default-features = false
features = ["macros"]
version = "3.10.0"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.syn]
version = "2.0.79"
[dev-dependencies.log]
version = "0.4.22"
[dev-dependencies.macrotest]
version = "1.0.13"
[dev-dependencies.syn]
features = ["full", "extra-traits"]
version = "2.0.79"
[[example]]
name = "example"
path = "examples/example.rs"
[lib]
name = "cli_settings_derive"
path = "src/lib.rs"
proc-macro = true
[lints.clippy]
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
needless_doctest_main = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
dead_code = "deny"
future-incompatible = "warn"
let-underscore = "warn"
nonstandard-style = "warn"
rust-2018-idioms = "warn"
unsafe_code = "deny"
warnings = "warn"
[lints.rust.unused]
level = "warn"
priority = -1
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["command-line-interface"]
description = "Manage CLI settings with configuration file(s) and command line parsing, using serde and clap"
documentation = "https://docs.rs/cli-settings-derive"
edition = "2021"
keywords = ["clap", "serde", "derive", "config", "setting"]
license = "MIT"
name = "cli-settings-derive"
readme = "README.md"
repository = "https://github.com/mic006/cli-settings-derive"
version = "0.3.2"
[[test]]
name = "expand"
path = "tests/expand.rs"
[[test]]
name = "usage"
path = "tests/usage.rs"