From 7653c6c9fc74e53a3ed937de643d148704d5f5cc Mon Sep 17 00:00:00 2001 From: Paul Rouget Date: Mon, 29 Jun 2020 10:20:16 +0200 Subject: [PATCH] update keyboard-types crate --- Cargo.lock | 4 ++-- components/compositing/Cargo.toml | 2 +- components/constellation/Cargo.toml | 2 +- components/embedder_traits/Cargo.toml | 2 +- components/malloc_size_of/Cargo.toml | 2 +- components/script/Cargo.toml | 2 +- components/script_traits/Cargo.toml | 2 +- components/servo/Cargo.toml | 2 +- components/webdriver_server/Cargo.toml | 2 +- ports/winit/Cargo.toml | 2 +- tests/unit/script/Cargo.toml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fef028c035c..a5188b71739 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2736,9 +2736,9 @@ dependencies = [ [[package]] name = "keyboard-types" -version = "0.4.4" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53b536dc22c0dabb295e85dbd0c062023885b12b8db24e1d86833f4e50ea7959" +checksum = "a989afac88279b0482f402d234b5fbd405bf1ad051308595b58de4e6de22346b" dependencies = [ "bitflags", "serde", diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml index 027d16233bf..0d4fc881921 100644 --- a/components/compositing/Cargo.toml +++ b/components/compositing/Cargo.toml @@ -24,7 +24,7 @@ gfx_traits = { path = "../gfx_traits" } gleam = { version = "0.11", optional = true } image = "0.23" ipc-channel = "0.14" -keyboard-types = "0.4.3" +keyboard-types = "0.5" libc = "0.2" log = "0.4" msg = { path = "../msg" } diff --git a/components/constellation/Cargo.toml b/components/constellation/Cargo.toml index d373aac8063..29fbccd66d3 100644 --- a/components/constellation/Cargo.toml +++ b/components/constellation/Cargo.toml @@ -25,7 +25,7 @@ gfx = { path = "../gfx" } gfx_traits = { path = "../gfx_traits" } http = "0.1" ipc-channel = "0.14" -keyboard-types = "0.4.3" +keyboard-types = "0.5" layout_traits = { path = "../layout_traits" } log = "0.4" media = { path = "../media" } diff --git a/components/embedder_traits/Cargo.toml b/components/embedder_traits/Cargo.toml index 8393476be98..0e85686e729 100644 --- a/components/embedder_traits/Cargo.toml +++ b/components/embedder_traits/Cargo.toml @@ -13,7 +13,7 @@ path = "lib.rs" [dependencies] crossbeam-channel = "0.4" ipc-channel = "0.14" -keyboard-types = "0.4.3" +keyboard-types = "0.5" lazy_static = "1" log = "0.4" msg = { path = "../msg" } diff --git a/components/malloc_size_of/Cargo.toml b/components/malloc_size_of/Cargo.toml index 77915f1fa67..e9b5bedd228 100644 --- a/components/malloc_size_of/Cargo.toml +++ b/components/malloc_size_of/Cargo.toml @@ -36,7 +36,7 @@ euclid = "0.20" hashglobe = { path = "../hashglobe" } hyper = { version = "0.12", optional = true } hyper_serde = { version = "0.11", optional = true } -keyboard-types = { version = "0.4.3", optional = true } +keyboard-types = { version = "0.5", optional = true } selectors = { path = "../selectors" } serde = { version = "1.0.27", optional = true } serde_bytes = { version = "0.11", optional = true } diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 8746273e9f1..225367a7090 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -64,7 +64,7 @@ ipc-channel = "0.14" itertools = "0.8" js = { package = "mozjs", git = "https://github.com/servo/rust-mozjs" } jstraceable_derive = { path = "../jstraceable_derive" } -keyboard-types = "0.4.4" +keyboard-types = "0.5" lazy_static = "1" libc = "0.2" log = "0.4" diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml index 96f51c82707..9f9e1233c8e 100644 --- a/components/script_traits/Cargo.toml +++ b/components/script_traits/Cargo.toml @@ -24,7 +24,7 @@ http = "0.1" hyper = "0.12" hyper_serde = "0.11" ipc-channel = "0.14" -keyboard-types = "0.4.3" +keyboard-types = "0.5" libc = "0.2" log = "0.4" malloc_size_of = { path = "../malloc_size_of" } diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 87c5e713f60..6f357927aa7 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -57,7 +57,7 @@ gfx_traits = { path = "../gfx_traits" } gleam = "0.11" gstreamer = { version = "0.15", optional = true } ipc-channel = "0.14" -keyboard-types = "0.4" +keyboard-types = "0.5" layout_thread_2013 = { path = "../layout_thread", optional = true } layout_thread_2020 = { path = "../layout_thread_2020", optional = true } log = "0.4" diff --git a/components/webdriver_server/Cargo.toml b/components/webdriver_server/Cargo.toml index 146f825c89d..b568d1cfb09 100644 --- a/components/webdriver_server/Cargo.toml +++ b/components/webdriver_server/Cargo.toml @@ -19,7 +19,7 @@ euclid = "0.20" hyper = "0.12" image = "0.23" ipc-channel = "0.14" -keyboard-types = "0.4.3" +keyboard-types = "0.5" log = "0.4" msg = { path = "../msg" } net_traits = { path = "../net_traits" } diff --git a/ports/winit/Cargo.toml b/ports/winit/Cargo.toml index 1091cdc4b17..3f3247f558e 100644 --- a/ports/winit/Cargo.toml +++ b/ports/winit/Cargo.toml @@ -50,7 +50,7 @@ backtrace = "0.3" clipboard = "0.5" euclid = "0.20" getopts = "0.2.11" -keyboard-types = "0.4.3" +keyboard-types = "0.5" lazy_static = "1" libc = "0.2" libservo = { path = "../../components/servo" } diff --git a/tests/unit/script/Cargo.toml b/tests/unit/script/Cargo.toml index 3194bc35ddc..e898e9b803c 100644 --- a/tests/unit/script/Cargo.toml +++ b/tests/unit/script/Cargo.toml @@ -11,6 +11,6 @@ path = "lib.rs" [dependencies] euclid = "0.20" -keyboard-types = "0.4.3" +keyboard-types = "0.5" script = {path = "../../../components/script"} servo_url = {path = "../../../components/url"}