We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
envy uses the new name in order to successfully find the environment variable
use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize)] struct Config { #[serde(rename = "DATABASE_URL")] database_url: String } fn main() { let config = envy::from_env::<Config>().unwrap(); dbg!(config); }
Linux
envy version: 0.4.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🐛 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.
🤔 Expected Behavior
envy uses the new name in order to successfully find the environment variable
👟 Steps to reproduce
🌍 Your environment
Linux
envy version: 0.4.2
The text was updated successfully, but these errors were encountered: