[package]
edition = "2021"
rust-version = "1.65"
name = "dotenv-verbatim"
version = "0.3.1"
build = false
exclude = [
"CLAUDE.md",
"CODE_STANDARD.md",
"TASK.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A .env loader that takes the value verbatim: no expansion, no escapes, no inline comments; one malformed line is skipped, not the rest of the file"
readme = "README.md"
keywords = [
"dotenv",
"env",
"configuration",
]
categories = ["config"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MarketKernel/dotenv-verbatim"
[lib]
name = "dotenv_verbatim"
path = "src/lib.rs"
[[test]]
name = "load"
path = "tests/load.rs"
[dependencies]