dotenvpp 0.0.3

From-scratch .env parsing and loading toolkit in Rust.
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.78.0"
name = "dotenvpp"
version = "0.0.3"
authors = ["Ariaj Sarkar <ariajsarkar@gmail.com>"]
build = false
exclude = [
    "usage-examples/",
    ".github/",
    "target/",
    "docs/",
    "rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "From-scratch .env parsing and loading toolkit in Rust."
homepage = "https://github.com/Carabryx/DotenvPP"
readme = "README.md"
keywords = [
    "dotenv",
    "env",
    "config",
    "environment",
    "secrets",
]
categories = [
    "config",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Carabryx/DotenvPP"

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

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

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

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

[[bench]]
name = "parser_benchmark"
path = "benches/parser_benchmark.rs"
harness = false

[dependencies.dotenvpp-parser]
version = "=0.0.3"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"