Skip to content
New issue

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

#[serde(rename = "")] not supported #75

Open
SkyfallWasTaken opened this issue Mar 25, 2024 · 0 comments
Open

#[serde(rename = "")] not supported #75

SkyfallWasTaken opened this issue Mar 25, 2024 · 0 comments

Comments

@SkyfallWasTaken
Copy link

🐛 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

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);
}

🌍 Your environment

Linux

envy version: 0.4.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant