From e50f3878279c6a5b79161750423937461647eec1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 14:36:46 +0000 Subject: [PATCH] Update env_logger requirement from 0.10 to 0.11 Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.11.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- ctl/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f6f4846..4b847e2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ thiserror = "1.0" [dev-dependencies] criterion = "0.4" ctor = "0.2" -env_logger = "0.10" +env_logger = "0.11" kvproto = { git = "https://github.com/pingcap/kvproto.git", default-features = false, features = ["protobuf-codec"] } raft = { git = "https://github.com/tikv/raft-rs", branch = "master", default-features = false, features = ["protobuf-codec"] } rand = "0.8" diff --git a/ctl/Cargo.toml b/ctl/Cargo.toml index 5bf23c8b..82b8f03b 100644 --- a/ctl/Cargo.toml +++ b/ctl/Cargo.toml @@ -10,5 +10,5 @@ license = "Apache-2.0" [dependencies] clap = { version = "3.1", features = ["derive", "cargo"] } -env_logger = "0.10" +env_logger = "0.11" raft-engine = { path = "..", version = "0.4.1", features = ["scripting", "internals"] }