derive-config 2.4.1

My personal configuration library
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 = "derive-config"
version = "2.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "My personal configuration library"
readme = "README.md"
keywords = [
    "serde",
    "derive",
    "config",
]
categories = ["config"]
license = "MIT"
repository = "https://github.com/ShayBox/Derive-Config"

[features]
dirs = [
    "derive-macros/dirs",
    "dep:dirs",
]
json = [
    "derive-macros/json",
    "dep:json",
]
toml = [
    "derive-macros/toml",
    "dep:toml",
]
yaml = [
    "derive-macros/yaml",
    "dep:yaml",
]

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

[dependencies.derive-macros]
version = "2"

[dependencies.dirs]
version = "6"
optional = true

[dependencies.duplicate]
version = "2"

[dependencies.json]
version = "1"
optional = true
package = "serde_json"

[dependencies.thiserror]
version = "1"

[dependencies.toml]
version = "1"
optional = true

[dependencies.yaml]
version = "0.9"
optional = true
package = "serde_yaml"

[lints.clippy]
cargo = "warn"
nursery = "warn"
pedantic = "warn"