From 39066b767fb5cf36e714c19be1d4493f4e9d3863 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:49:34 +0000 Subject: [PATCH] build!: Bump reedline from 0.23.0 to 0.24.0 Bumps [reedline](https://github.com/nushell/reedline) from 0.23.0 to 0.24.0. - [Release notes](https://github.com/nushell/reedline/releases) - [Commits](https://github.com/nushell/reedline/compare/v0.23.0...v0.24.0) --- updated-dependencies: - dependency-name: reedline dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0099f1b..778bdd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -411,7 +411,7 @@ version = "7.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ab77dbd8adecaf3f0db40581631b995f312a8a5ae3aa9993188bb8f23d83a5b" dependencies = [ - "crossterm", + "crossterm 0.26.1", "strum 0.24.1", "strum_macros 0.24.3", "unicode-width", @@ -486,6 +486,22 @@ dependencies = [ "libc", "mio", "parking_lot", + "signal-hook", + "signal-hook-mio", + "winapi", +] + +[[package]] +name = "crossterm" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" +dependencies = [ + "bitflags 2.4.0", + "crossterm_winapi", + "libc", + "mio", + "parking_lot", "serde", "signal-hook", "signal-hook-mio", @@ -1581,12 +1597,12 @@ dependencies = [ [[package]] name = "reedline" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3defc4467a8909614bcb02cb304a3e8472c31f7a44e6c6c287eb9575b212bc4d" +checksum = "971ac45071721aae18927f3feb7e4c2b95cce387d96af185c5103166d332e55c" dependencies = [ "chrono", - "crossterm", + "crossterm 0.27.0", "fd-lock", "itertools", "nu-ansi-term", diff --git a/Cargo.toml b/Cargo.toml index 6f885a8..3f1a5e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ ciborium = "0.2" clap = { version = "4.4.2", features = ["derive", "cargo"] } nu-ansi-term = { version = "0.49", optional = true } once_cell = "1" -reedline = "0.23" +reedline = "0.24" serde = { version = "1.0.160", features = ["derive"] } sqlparser = "0.37" tmp_env = "0.1.1"