From eb713f88efaa8da9c2c1b9804e8d55e9565f0e2b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 13 Jan 2021 02:02:04 +0000 Subject: [PATCH] update x11rb Prompted by nailing-cargo --subcommand-props='!locked,!target-dir,!offline' upgrades Remaining are: slotmap >=0.4.0, <0.5.0 matches 0.4.0; latest is 1.0.2 API break which affects us directly tera >=0.11.0, <0.12.0 matches 0.11.20; latest is 1.6.1 we want to stay aligned with Rocket Signed-off-by: Ian Jackson --- Cargo.lock.example | 24 ++++++------------------ wdriver/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/Cargo.lock.example b/Cargo.lock.example index c2478166..3f149489 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1422,18 +1422,6 @@ dependencies = [ "winapi 0.3.9", ] -[[package]] -name = "nix" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83450fe6a6142ddd95fb064b746083fc4ef1705fe81f64a64e1d4b39f54a1055" -dependencies = [ - "bitflags", - "cc", - "cfg-if 0.1.10", - "libc", -] - [[package]] name = "nix" version = "0.19.1" @@ -1611,7 +1599,7 @@ dependencies = [ "lazy_static", "libc", "log 0.4.13", - "nix 0.19.1", + "nix", "num-derive", "num-traits", "ordered-float", @@ -1666,7 +1654,7 @@ dependencies = [ "lazy_static", "libc", "log 0.4.13", - "nix 0.19.1", + "nix", "num-derive", "num-traits", "ordered-float", @@ -1722,7 +1710,7 @@ dependencies = [ "libc", "log 0.4.13", "ndarray", - "nix 0.19.1", + "nix", "num-derive", "num-traits", "once_cell", @@ -3321,12 +3309,12 @@ dependencies = [ [[package]] name = "x11rb" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "232bc353846d5350d7a815c249209f9545f1d5c725dca846a5ae383a70f30fa5" +checksum = "a4122702a684f01cf35cf8e00d0ba513f7c4c7d46f9881d9a699f3de787e61e4" dependencies = [ "gethostname", - "nix 0.18.0", + "nix", "winapi 0.3.9", "winapi-wsapoll", ] diff --git a/wdriver/Cargo.toml b/wdriver/Cargo.toml index 6e7e828a..e0a2b8cb 100644 --- a/wdriver/Cargo.toml +++ b/wdriver/Cargo.toml @@ -35,7 +35,7 @@ structopt = "0.3" strum = { version = "0.20", features = ['derive'] } thirtyfour_sync = "0.22" void = "1" -x11rb = "0.7" +x11rb = "0.8" [lib] name = "otter_webdriver_tests" -- 2.30.2