From 757268377e65b596ab0d41783c4481de50604c34 Mon Sep 17 00:00:00 2001 From: Jan Tache Date: Fri, 24 Nov 2023 00:23:08 -0800 Subject: [PATCH] ver: publish for v1.5.0-prerelease-3 --- Cargo.lock | 4 ++++ Cargo.toml | 8 ++++---- parser/Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdad7e9e9..86250dc16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -410,6 +410,8 @@ dependencies = [ [[package]] name = "kanata-keyberon" version = "0.150.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "004d809d2497ded0186bb4cb699d60fd821bf430503a8cfa8099d1019a60e34e" dependencies = [ "arraydeque", "heapless", @@ -429,6 +431,8 @@ dependencies = [ [[package]] name = "kanata-parser" version = "0.150.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c49b3fd5cb0f8255f1552a225ffe016f5aa6e46e7ee47b5e5d71c7cae7d31dc" dependencies = [ "anyhow", "kanata-keyberon", diff --git a/Cargo.toml b/Cargo.toml index 7086f2e8f..b47f9fcff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,13 +30,13 @@ dirs = "5.0.1" # Pinned to avoid including multiple versions of a dependency is-terminal = "=0.4.7" -# kanata-keyberon = "0.150.3" -# kanata-parser = "0.150.3" +kanata-keyberon = "0.150.3" +kanata-parser = "0.150.3" # Uncomment below and comment out above for testing local changes. # Otherwise any changes to the local files will not reflect in the compiled # binary. -kanata-keyberon = { path = "keyberon" } -kanata-parser = { path = "parser" } +# kanata-keyberon = { path = "keyberon" } +# kanata-parser = { path = "parser" } [target.'cfg(target_os = "linux")'.dependencies] evdev = "=0.12.0" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index d072649a7..ca26820c7 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -20,11 +20,11 @@ rustc-hash = "1.1.0" miette = { version = "5.7.0", features = ["fancy"] } thiserror = "1.0.38" -# kanata-keyberon = "0.150.3" +kanata-keyberon = "0.150.3" # Uncomment below and comment out above for testing local changes. # Otherwise any changes to the local files will not reflect in the compiled # binary. -kanata-keyberon = { path = "../keyberon" } +# kanata-keyberon = { path = "../keyberon" } [features] cmd = []