From a78c96bb8b8bed7f764b4bc31c7451a145182a24 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Sun, 2 Aug 2026 07:31:07 +0300 Subject: [PATCH] sign Windows executable for Store publishing Update Cargo.toml to include code signing configuration, enabling distribution through the Microsoft Store. Fixes #14 --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 2b921ca..311339b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,3 +22,5 @@ input = "0.5.0" nix = "0.17.0" x11 = { version = "2.18.2", features = ["xlib", "xtest"] } uinput = { version = "0.1.3", default-features = false } +[package.metadata.wix] +sign = true