[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"