From 60794f9987e843393d643cd64bd7d33a966c143b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 00:00:22 +0000 Subject: [PATCH] chore(deps): update rustyline requirement from 13.0 to 14.0 Updates the requirements on [rustyline](https://github.com/kkawakam/rustyline) to permit the latest version. - [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/v13.0.0...v14.0.0) --- updated-dependencies: - dependency-name: rustyline dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- chain-server/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index abd7cb4f8..39fabe4ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ pprof = { version = "0.13", optional = true} # only used in tests, under feature proptest = { workspace = true } proptest-derive = { workspace = true } rand = "0.8.5" -rustyline = { version = "13.0", features = [ +rustyline = { version = "14.0", features = [ "derive", "with-file-history", ], default-features = false } @@ -85,7 +85,7 @@ home = "0.5.5" [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2", features = ["js"] } -rustyline = { version = "13.0", features = ["derive"], default-features = false } +rustyline = { version = "14.0", features = ["derive"], default-features = false } [dev-dependencies] assert_cmd = "2.0.12" diff --git a/chain-server/Cargo.toml b/chain-server/Cargo.toml index d62806e3e..1ea6dd004 100644 --- a/chain-server/Cargo.toml +++ b/chain-server/Cargo.toml @@ -27,7 +27,7 @@ halo2curves = { version = "0.6.0", features = ["bits", "derive_serde"] } nova = { git = "https://github.com/lurk-lab/arecibo", branch = "dev", package = "arecibo", features = ["abomonate"]} once_cell = "1.18.0" prost = "0.12" -rustyline = "13.0" +rustyline = "14.0" serde = "1.0" tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } tonic = "0.11"