Merge branch 'wip/a-wai/xkbcommon-0.8' into 'main'

Update xkbcommon dependency to 0.8

See merge request World/Phosh/squeekboard!697
This commit is contained in:
Marge Bot
2024-11-05 18:01:26 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ clap = { version = "4.4", features=["std"], default-features = false }
zbus = "1.9" zbus = "1.9"
zvariant = "2.10" zvariant = "2.10"
zvariant_derive = "2.10" zvariant_derive = "2.10"
xkbcommon = { version = "0.7", features = ["wayland"] } xkbcommon = { version = "0.8", features = ["wayland"] }
[dependencies.cairo-rs] [dependencies.cairo-rs]
version = "0.18" version = "0.18"

View File

@ -696,7 +696,7 @@ mod tests {
xkb::KEYSYM_NO_FLAGS, xkb::KEYSYM_NO_FLAGS,
); );
let keysym = xkb::keysym_to_utf8(keysym); let keysym = xkb::keysym_to_utf8(keysym);
assert_eq!(keysym, "å\0"); assert_eq!(keysym, "å");
} }
#[test] #[test]