aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock4
-rw-r--r--components/compositing/Cargo.toml2
-rw-r--r--components/constellation/Cargo.toml2
-rw-r--r--components/embedder_traits/Cargo.toml2
-rw-r--r--components/malloc_size_of/Cargo.toml2
-rw-r--r--components/script/Cargo.toml2
-rw-r--r--components/script_traits/Cargo.toml2
-rw-r--r--components/servo/Cargo.toml2
-rw-r--r--components/webdriver_server/Cargo.toml2
-rw-r--r--ports/libsimpleservo/capi/Cargo.toml2
-rw-r--r--ports/winit/Cargo.toml2
-rw-r--r--tests/unit/script/Cargo.toml2
12 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b0c72c754e6..f46551ac529 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3096,9 +3096,9 @@ dependencies = [
[[package]]
name = "keyboard-types"
-version = "0.5.0"
+version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a989afac88279b0482f402d234b5fbd405bf1ad051308595b58de4e6de22346b"
+checksum = "0b7668b7cff6a51fe61cdde64cd27c8a220786f399501b57ebe36f7d8112fd68"
dependencies = [
"bitflags",
"serde",
diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml
index 4353f7b9472..7b76f036cb5 100644
--- a/components/compositing/Cargo.toml
+++ b/components/compositing/Cargo.toml
@@ -24,7 +24,7 @@ gfx_traits = { path = "../gfx_traits" }
gleam = { version = "0.12", optional = true }
image = "0.23"
ipc-channel = "0.14"
-keyboard-types = "0.5"
+keyboard-types = "0.6"
libc = "0.2"
log = "0.4"
msg = { path = "../msg" }
diff --git a/components/constellation/Cargo.toml b/components/constellation/Cargo.toml
index 6ef5c41f00a..79f7a927f9d 100644
--- a/components/constellation/Cargo.toml
+++ b/components/constellation/Cargo.toml
@@ -25,7 +25,7 @@ gfx_traits = { path = "../gfx_traits" }
http = "0.2"
headers = "0.3"
ipc-channel = "0.14"
-keyboard-types = "0.5"
+keyboard-types = "0.6"
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 0e85686e729..fc9f20d66b3 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.5"
+keyboard-types = "0.6"
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 60c7fee9c7d..a4497cd3c82 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" }
http = { version = "0.2", optional = true }
hyper_serde = { version = "0.12", optional = true }
-keyboard-types = { version = "0.5", optional = true }
+keyboard-types = { version = "0.6", 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 539dffc906e..cfe9530e072 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.5"
+keyboard-types = "0.6"
lazy_static = "1"
libc = "0.2"
log = "0.4"
diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml
index 266d80d3317..cd943871fc0 100644
--- a/components/script_traits/Cargo.toml
+++ b/components/script_traits/Cargo.toml
@@ -24,7 +24,7 @@ headers = "0.3"
http = "0.2"
hyper_serde = "0.12"
ipc-channel = "0.14"
-keyboard-types = "0.5"
+keyboard-types = "0.6"
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 a5f17aa70c5..d7155325919 100644
--- a/components/servo/Cargo.toml
+++ b/components/servo/Cargo.toml
@@ -56,7 +56,7 @@ gfx_traits = { path = "../gfx_traits" }
gleam = "0.12"
gstreamer = { version = "0.15", features = ["v1_16"], optional = true }
ipc-channel = "0.14"
-keyboard-types = "0.5"
+keyboard-types = "0.6"
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 d5b7957afe5..a4738265a9c 100644
--- a/components/webdriver_server/Cargo.toml
+++ b/components/webdriver_server/Cargo.toml
@@ -20,7 +20,7 @@ headers = "0.3"
http = "0.2"
image = "0.23"
ipc-channel = "0.14"
-keyboard-types = "0.5"
+keyboard-types = "0.6"
log = "0.4"
msg = { path = "../msg" }
net_traits = { path = "../net_traits" }
diff --git a/ports/libsimpleservo/capi/Cargo.toml b/ports/libsimpleservo/capi/Cargo.toml
index 26a6ff47af4..a856d5f5b4e 100644
--- a/ports/libsimpleservo/capi/Cargo.toml
+++ b/ports/libsimpleservo/capi/Cargo.toml
@@ -19,7 +19,7 @@ lazy_static = "1"
log = "0.4"
simpleservo = { path = "../api" }
surfman = "0.4"
-keyboard-types = "0.5"
+keyboard-types = "0.6"
[target.'cfg(target_os = "windows")'.dependencies]
libc = "0.2"
diff --git a/ports/winit/Cargo.toml b/ports/winit/Cargo.toml
index 0353f05ca3b..59f0175a845 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.5"
+keyboard-types = "0.6"
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 e898e9b803c..dcc5d9a6ffa 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.5"
+keyboard-types = "0.6"
script = {path = "../../../components/script"}
servo_url = {path = "../../../components/url"}