diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-02-13 18:15:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-13 18:15:57 +0000 |
commit | d872b9f3aed225bcae74ee3707a690c1a096608e (patch) | |
tree | f0686a59463c65e218b4b3945b6249ecc1dfc0f3 /alacritty_terminal/src/config | |
parent | a5e2ccd5aba720cc63af4079e7f5e5afb6d9b893 (diff) | |
download | alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.tar.gz alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.zip |
Update dependencies
This introduces some duplicate dependencies, though they are necessary
to build properly without any warnings.
Fixes #4735.
Diffstat (limited to 'alacritty_terminal/src/config')
-rw-r--r-- | alacritty_terminal/src/config/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty_terminal/src/config/mod.rs b/alacritty_terminal/src/config/mod.rs index 59449faa..0b313598 100644 --- a/alacritty_terminal/src/config/mod.rs +++ b/alacritty_terminal/src/config/mod.rs @@ -105,8 +105,8 @@ impl Cursor { } } -#[serde(untagged)] #[derive(Deserialize, Debug, Copy, Clone, PartialEq, Eq)] +#[serde(untagged)] pub enum ConfigCursorStyle { Shape(CursorShape), WithBlinking { @@ -174,8 +174,8 @@ impl From<CursorBlinking> for bool { } } -#[serde(untagged)] #[derive(Deserialize, Debug, Clone, PartialEq, Eq)] +#[serde(untagged)] pub enum Program { Just(String), WithArgs { |