From b3205592db6b53ad431a003c243deb6c4c19666a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Nov 2022 23:08:13 +0000 Subject: [PATCH] Update env_logger requirement from 0.8 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.8.0...v0.10.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0675acc3b..303be34eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ paperclip-actix = { path = "plugins/actix-web", version = "0.4.2", optional = tr paperclip-core = { path = "core", version = "0.4.1" } paperclip-macros = { path = "macros", version = "0.5.1", optional = true } -env_logger = { version = "0.8", optional = true } +env_logger = { version = "0.10", optional = true } git2 = { version = "0.13", optional = true } heck = { version = "0.3", optional = true } http = { version = "0.2", optional = true } @@ -51,7 +51,7 @@ actix-web2 = { version = "2", default-features = false, package = "actix-web" } actix-web3 = { version = "3", default-features = false, package = "actix-web" } actix-web4 = { version = "4.0.0-beta.12", default-features = false, package = "actix-web" } chrono_dev = { version = "0.4", features = ["serde"], package = "chrono" } -env_logger = "0.8" +env_logger = "0.10" futures = "0.3" insta = "1.0" log = { version = "0.4", features = ["kv_unstable"] }