Crates.io | denvars |
lib.rs | denvars |
version | 0.3.2 |
source | src |
created_at | 2023-09-27 15:43:50.126651 |
updated_at | 2023-10-03 00:10:09.968818 |
description | Deserialize environment variables |
homepage | |
repository | https://github.com/zakarumych/denvars |
max_upload_size | |
id | 984918 |
size | 47,627 |
This crate provides deserializer that reads from environment variables or user-provided array of key-value pairs.
For convenience, it can be configured to call specific visiting method for different kind of data.
By default it parses booleans from large set of possible values,
numbers using FromStr
,
sequences from comma-separated values,
maps from comma-separated key:value pairs,
allows using potentially escaped strings in double quotes,
decodes base64-encoded byte arrays if configured (this is default behavior),
compare uppercased names of fields when deserializing struct from map of env vars if configured (this is default behavior),
It may treat values as JSON to support deserializing nested structures.
Custom string parsers may be implemented to support other formats.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.