From 31523092b255512785a7159875b1a5f59d04d86d Mon Sep 17 00:00:00 2001 From: ParasiteDelta Date: Mon, 29 Jul 2024 13:52:51 -0600 Subject: [PATCH] Update 0.3.1 - Added GWM3 compatibility, general refactoring. --- Cargo.lock | 3 ++- Cargo.toml | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7752309..9f146b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,10 +258,11 @@ dependencies = [ [[package]] name = "gat-gwm" -version = "0.2.1" +version = "0.3.1" dependencies = [ "anyhow", "embed-resource", + "semver", "serde_json", "tokio", "tray-item", diff --git a/Cargo.toml b/Cargo.toml index bf46367..dcfc8c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,13 @@ name = "gat-gwm" description = "Alternating tiler for GlazeWM via WebSocket IPC, effectively a sloppy rewrite of Burgr033's Python script in Rust." authors = ["ParasiteDelta"] -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "GPLv3" [dependencies] anyhow = "1.0.82" +semver = "1.0.23" serde_json = "1.0.116" tokio = { version = "1.37.0", features = ["full"] } tray-item = "0.10.0" @@ -22,3 +23,6 @@ embed-resource = "^2.3" lto = true opt-level = "s" codegen-units = 4 + +[features] +no_console = []