[package]
edition = "2021"
name = "potenv"
version = "0.2.0"
include = [
"/src",
"!**/tests.rs",
"!/src/test_utils.rs",
]
description = "Rust implementation of the POSIX-compliant dotenv file format specification."
readme = "README.md"
keywords = [
"dotenv",
"posix",
"config",
"env",
"environment",
]
categories = [
"config",
"parser-implementations",
]
license-file = "LICENSE"
repository = "https://github.com/ju1ius/potenv"
[dependencies.thiserror]
version = "1.0.56"
[dev-dependencies.rstest]
version = "0.18.2"
[dev-dependencies.serde]
version = "1.0.195"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.111"
[dev-dependencies.walkdir]
version = "2.4.0"