From 322c84be374478d9de1fa5618fbd2d0e09b9f43b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 12:11:41 +0000 Subject: [PATCH] Update env_logger requirement from 0.9 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.9.0...v0.11.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- ios-example/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a49f7ed1..8a822ec0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ winit = "0.26.0" log = "0.4" pretty_env_logger = "0.4" color-backtrace = "0.5.1" -env_logger = "0.9" +env_logger = "0.11" [patch.crates-io] winit = { git = "https://github.com/rust-windowing/winit" } diff --git a/ios-example/Cargo.toml b/ios-example/Cargo.toml index c6680daf..ef904323 100644 --- a/ios-example/Cargo.toml +++ b/ios-example/Cargo.toml @@ -16,5 +16,5 @@ winit = "0.20.0" color-backtrace = "0.2.3" log = "0.4" pretty_env_logger = "0.3" -env_logger = "0.9" +env_logger = "0.11" uikit-sys = { path = "../" }