From 0f1b676924d9a614278f2a7e3bf4284369de64e1 Mon Sep 17 00:00:00 2001 From: yavko Date: Wed, 17 Aug 2022 18:51:19 -0700 Subject: [PATCH] 0.2.4 The stupidest patch yet --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/shared.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf0a719..38341aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -92,7 +92,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hyprland" -version = "0.2.3" +version = "0.2.4" dependencies = [ "hex", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index 22d9c2a..d58512d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyprland" -version = "0.2.3" +version = "0.2.4" edition = "2021" authors = ["yavko "] license = "GPL-3.0-or-later" diff --git a/README.md b/README.md index 519548e..6ea164d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Lets get started with Hyprland-rs! Add the code below to the dependencies section of your Cargo.toml file! ```toml -hyprland = "0.2.3" +hyprland = "0.2.4" ``` ### What this crate provides diff --git a/src/shared.rs b/src/shared.rs index a6680dc..b10e5ba 100644 --- a/src/shared.rs +++ b/src/shared.rs @@ -142,8 +142,8 @@ where #[derive(Deserialize, Debug)] #[serde(untagged)] enum Aux { - Special(i8), Reg(u8), + Special(i8), } match Deserialize::deserialize(deserializer)? {