From 1c8088b16cc255fc188b0b9a84b550a5c50a9003 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Nov 2022 14:43:35 +0000 Subject: [PATCH] build(deps): update env_logger requirement from 0.9 to 0.10 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.9.0...v0.10.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- aya-log/Cargo.toml | 2 +- test/integration-test/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aya-log/Cargo.toml b/aya-log/Cargo.toml index f1fd581e..47333e33 100644 --- a/aya-log/Cargo.toml +++ b/aya-log/Cargo.toml @@ -19,7 +19,7 @@ bytes = "1.1" tokio = { version = "1.2.0" } [dev-dependencies] -env_logger = "0.9" +env_logger = "0.10" testing_logger = "0.1.1" [lib] diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index 74b5801b..34c30828 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -8,7 +8,7 @@ publish = false anyhow = "1" aya = { path = "../../aya" } clap = { version = "3", features = ["derive"] } -env_logger = "0.9" +env_logger = "0.10" inventory = "0.2" integration-test-macros = { path = "../integration-test-macros" } lazy_static = "1"