You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It panics at assert_eq!(config.package.edition, "2000");. I would expect CLI to override the value from file. But it prints 2021 because due to #[clap(flatten)] it incorrectly merges values from clap.
The text was updated successfully, but these errors were encountered:
Let's consider the following test:
It panics at
assert_eq!(config.package.edition, "2000");
. I would expect CLI to override the value from file. But it prints2021
because due to#[clap(flatten)]
it incorrectly merges values from clap.The text was updated successfully, but these errors were encountered: