[package]
edition = "2021"
name = "envious"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deserialize (potentially nested) environment variables into your custom structs"
homepage = "https://github.com/TheNeikos/envious"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/TheNeikos/envious"
resolver = "2"
[lib]
name = "envious"
path = "src/lib.rs"
[[test]]
name = "case_sensitivity"
path = "tests/case_sensitivity.rs"
[[test]]
name = "complex_env"
path = "tests/complex_env.rs"
[[test]]
name = "failure"
path = "tests/failure.rs"
[[test]]
name = "hashmap"
path = "tests/hashmap.rs"
[[test]]
name = "prefix_env"
path = "tests/prefix_env.rs"
[[test]]
name = "simple_env"
path = "tests/simple_env.rs"
[dependencies.serde]
version = "1.0.152"
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde]
version = "1.0.152"
features = ["derive"]