From 5df0be8311e8efc613fdfa24ce13890d12ada30b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Sep 2021 21:12:49 +0000 Subject: [PATCH] cargo: bump rustyline from 8.2.0 to 9.0.0 Bumps [rustyline](https://github.com/kkawakam/rustyline) from 8.2.0 to 9.0.0. - [Release notes](https://github.com/kkawakam/rustyline/releases) - [Changelog](https://github.com/kkawakam/rustyline/blob/master/History.md) - [Commits](https://github.com/kkawakam/rustyline/compare/v8.2.0...v9.0.0) --- updated-dependencies: - dependency-name: rustyline dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++------ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95b80d6de..8fd97f2ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1501,10 +1501,11 @@ dependencies = [ [[package]] name = "fd-lock" -version = "2.0.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0010f02effd88c702318c5dde0463206be67495d0b4d906ba7c0a8f166cc7f06" +checksum = "b8806dd91a06a7a403a8e596f9bfbfb34e469efbc363fc9c9713e79e26472e36" dependencies = [ + "cfg-if 1.0.0", "libc", "winapi", ] @@ -2277,14 +2278,15 @@ dependencies = [ [[package]] name = "nix" -version = "0.20.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a" +checksum = "cf1e25ee6b412c2a1e3fcb6a4499a5c1bfe7f43e014bdce9a6b6666e5aa2d187" dependencies = [ "bitflags", "cc", "cfg-if 1.0.0", "libc", + "memoffset", ] [[package]] @@ -3194,9 +3196,9 @@ dependencies = [ [[package]] name = "rustyline" -version = "8.2.0" +version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbd4eaf7a7738f76c98e4f0395253ae853be3eb018f7b0bb57fe1b6c17e31874" +checksum = "790487c3881a63489ae77126f57048b42d62d3b2bafbf37453ea19eedb6340d6" dependencies = [ "bitflags", "cfg-if 1.0.0", diff --git a/Cargo.toml b/Cargo.toml index cdcc82d08..4d81eba73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ rand = "0.7" regex = "1.5" rusqlite = "0.25" rust-hsluv = "0.1" -rustyline = { version = "8.2", optional = true } +rustyline = { version = "9.0", optional = true } sanitize-filename = "0.3" serde_json = "1.0" serde = { version = "1.0", features = ["derive"] }