[package]
edition = "2024"
rust-version = "1.88"
name = "dotenvor"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small, fast `.env` parser and loader for Rust"
documentation = "https://docs.rs/dotenvor"
readme = "README.md"
keywords = [
"dotenv",
"env",
"configuration",
"parser",
"loader",
]
categories = [
"config",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JohnTitor/dotenvor"
[lib]
name = "dotenvor"
path = "src/lib.rs"
[[bin]]
name = "dotenv"
path = "src/bin/dotenv.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "load"
path = "tests/load.rs"
[[test]]
name = "macro"
path = "tests/macro.rs"
[[test]]
name = "macro_renamed_dependency"
path = "tests/macro_renamed_dependency.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[[bench]]
name = "load"
path = "benches/load.rs"
harness = false
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[dependencies.dotenvor-macros]
version = "0.1.0"
[dev-dependencies.criterion]
version = "0.6"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]
[dev-dependencies.trybuild]
version = "1.0"