diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-01-02 14:34:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 13:34:57 +0000 |
commit | 5685ce8bf8cb919f454518f1206b7ebc52636378 (patch) | |
tree | e20dde7f70bb06ad4edc277f2faa2b25ccf8938c /Cargo.lock | |
parent | 8f57367eadeca92706193fc40030081f40e81fbf (diff) | |
download | alacritty-5685ce8bf8cb919f454518f1206b7ebc52636378.tar.gz alacritty-5685ce8bf8cb919f454518f1206b7ebc52636378.zip |
Fix replacing optional fields
This fixes an issue with the default `SerdeReplace` implementation where
it would never recurse through options but always replace the entire
option with the new value.
Closes #7518.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -70,6 +70,7 @@ dependencies = [ name = "alacritty_config" version = "0.1.3-dev" dependencies = [ + "alacritty_config_derive", "log", "serde", "toml", |