Skip to content

Commit

Permalink
prevent unknown fields at top config level
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Mar 12, 2024
1 parent 362a5ca commit 3868c62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Fixed watch IMAP envelopes when folder was empty [#179].
- Prevent parsing of undefined config options [#188].

## [1.0.0-beta.3] - 2024-02-25

Expand Down Expand Up @@ -806,3 +807,4 @@ Few major concepts changed:
[#95]: https://todo.sr.ht/~soywod/pimalaya/95
[#172]: https://todo.sr.ht/~soywod/pimalaya/172
[#173]: https://todo.sr.ht/~soywod/pimalaya/173
[#188]: https://todo.sr.ht/~soywod/pimalaya/188
2 changes: 1 addition & 1 deletion src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use crate::{account::config::TomlAccountConfig, wizard_prompt, wizard_warn};

/// Represents the user config file.
#[derive(Clone, Debug, Default, Eq, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case")]
#[serde(rename_all = "kebab-case", deny_unknown_fields)]
pub struct TomlConfig {
#[serde(alias = "name")]
pub display_name: Option<String>,
Expand Down

0 comments on commit 3868c62

Please sign in to comment.