envy icon indicating copy to clipboard operation
envy copied to clipboard

deserialize env vars into typesafe structs with rust

Results 20 envy issues
Sort by recently updated
recently updated
newest added

## 💡 Feature description Continue parsing for more missing required values (instead stopping at the first one). #### 😍 Motivation This can provide more information to the user/devops/developer in order...

## What did you implement: Closes: #26 just a failing test for now to kick start this #### How did you verify your change: when this test passes. the issue...

The readme says that it supports parsing into Vec by separating the values by commas. If I want to parse a variable as `Vec` where each path could contain commas,...

According to #65 env files should work with combination from dotenvy, but they don't seem to for me. env file: `.env` ```env REQUIRED_SALEOR_VERSION=">=3.11.7

## What did you implement: Fixed some typos. Closes: #### How did you verify your change: #### What (if anything) would need to be called out in the CHANGELOG for...

SCREAMING_SNAKE_CASE might not be the expected format, so allow keeping the original serde field names ## What did you implement: a new keep_names() functionthat can be used in order to...

## What did you implement: Closes: #61 #### How did you verify your change: Added unit tests to deserialize into a struct with serde rename attributes. #### What (if anything)...

Just wanted to ask whether or not this crate is still being maintained or not. If it isn't, that's fine - I'd simply like to know whether or not I...

## 🐛 Bug description When using serde to rename a struct field, the code compiles, however the code will not find the renamed variable, nor the original name's one. ####...