configloader-676 0.1.0

A library for loading configuration files (JSON, TOML, YAML) into Rust structs with environment variable overrides and validation.
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 = "configloader-676"
version = "0.1.0"
authors = ["Mohtashim Nawaz mohtashim3nawaz@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for loading configuration files (JSON, TOML, YAML) into Rust structs with environment variable overrides and validation."
readme = "README.md"
keywords = [
    "config",
    "loader",
    "json",
    "toml",
    "yaml",
]
categories = ["config"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mohtashimnawaz/config_loader"

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

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

[dependencies.dotenv]
version = "0.15"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.toml]
version = "0.8.20"