From f79572903c04628820de87da88de07e903fa8eab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Apr 2024 21:02:49 +0000 Subject: [PATCH] Bump xkbcommon from 0.6.0 to 0.7.0 Bumps [xkbcommon](https://github.com/rust-x-bindings/xkbcommon-rs) from 0.6.0 to 0.7.0. - [Commits](https://github.com/rust-x-bindings/xkbcommon-rs/compare/v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: xkbcommon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 +++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9aa3bca..aee6e2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -199,7 +199,7 @@ dependencies = [ "smithay", "thiserror", "xcursor", - "xkbcommon 0.6.0", + "xkbcommon 0.7.0", ] [[package]] @@ -697,9 +697,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.147" +version = "0.2.153" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" +checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" [[package]] name = "libloading" @@ -807,6 +807,15 @@ dependencies = [ "libc", ] +[[package]] +name = "memmap2" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed" +dependencies = [ + "libc", +] + [[package]] name = "memoffset" version = "0.6.5" @@ -2090,12 +2099,12 @@ dependencies = [ [[package]] name = "xkbcommon" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c286371c44b3572d19b09196c129a8fff47d7704d6494daefb44fec10f0278ab" +checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e" dependencies = [ "libc", - "memmap2 0.7.1", + "memmap2 0.8.0", "xkeysym", ] diff --git a/Cargo.toml b/Cargo.toml index fc5b1ce..6229395 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ colored = "2.0.4" xcursor = "0.3.5" thiserror = "1.0.50" rand = "0.8.5" -xkbcommon = "0.6.0" +xkbcommon = "0.7.0" libc = "0.2.147" [dependencies.compositor-macros]