config-get 0.1.7

Cross-platform configuration file locator and reader for Rust. Auto-discovers .env, .ini, .toml, .json, .yml, .yaml from OS-standard locations.
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"
rust-version = "1.70"
name = "config-get"
version = "0.1.7"
authors = ["Hadi Cahyadi <cumulus13@gmail.com>"]
build = false
exclude = [
    ".github",
    "tests/fixtures",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform configuration file locator and reader for Rust. Auto-discovers .env, .ini, .toml, .json, .yml, .yaml from OS-standard locations."
homepage = "https://github.com/cumulus13/config-get-rs"
documentation = "https://docs.rs/config-get"
readme = "README.md"
keywords = [
    "config",
    "configuration",
    "env",
    "toml",
    "ini",
]
categories = [
    "config",
    "filesystem",
]
license = "MIT"
repository = "https://github.com/cumulus13/config-get-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
all = [
    "toml",
    "yaml",
    "dotenv",
    "ini",
    "cli",
]
cli = ["dep:clap"]
default = [
    "toml",
    "yaml",
    "dotenv",
    "ini",
]
dotenv = ["dep:dotenvy"]
ini = ["dep:rust-ini"]
toml = ["dep:toml"]
yaml = ["dep:serde_yaml"]

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

[[bin]]
name = "config-get"
path = "src/main.rs"
required-features = ["cli"]

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

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.dirs]
version = "5"

[dependencies.dotenvy]
version = "0.15"
optional = true

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.log]
version = "0.4"

[dependencies.rust-ini]
version = "0.21"
optional = true

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

[dependencies.serde_json]
version = "1"

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

[dependencies.thiserror]
version = "1"

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

[dev-dependencies.pretty_assertions]
version = "1"

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

[lints.clippy]
expect_used = "warn"
module_name_repetitions = "allow"
unwrap_used = "warn"

[lints.clippy.pedantic]
level = "warn"
priority = -1