From b502292059b12862c4dad3355b0259f1b9af7a6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 15:56:31 +0000 Subject: [PATCH] build(deps): bump inferno from 0.11.14 to 0.11.15 (#6264) Bumps [inferno](https://github.com/jonhoo/inferno) from 0.11.14 to 0.11.15. - [Release notes](https://github.com/jonhoo/inferno/releases) - [Changelog](https://github.com/jonhoo/inferno/blob/main/CHANGELOG.md) - [Commits](https://github.com/jonhoo/inferno/compare/v0.11.14...v0.11.15) --- updated-dependencies: - dependency-name: inferno dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- Cargo.lock | 24 +++++++++++++++++++++--- zebrad/Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e9e2ea8..839ae37d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1748,6 +1748,12 @@ dependencies = [ "libc", ] +[[package]] +name = "hermit-abi" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" + [[package]] name = "hex" version = "0.4.3" @@ -1974,12 +1980,12 @@ dependencies = [ [[package]] name = "inferno" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6e66fa9bb3c52f40d05c11b78919ff2f18993c2305bd8a62556d20cb3e9606f" +checksum = "2fb7c1b80a1dfa604bb4a649a5c5aeef3d913f7c520cb42b40e534e8a61bcdfc" dependencies = [ "ahash 0.8.2", - "atty", + "is-terminal", "itoa", "log", "num-format", @@ -2040,6 +2046,18 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c" +[[package]] +name = "is-terminal" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" +dependencies = [ + "hermit-abi 0.3.1", + "io-lifetimes", + "rustix", + "windows-sys 0.45.0", +] + [[package]] name = "itertools" version = "0.10.5" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 8f2439cc..20724650 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -139,7 +139,7 @@ sentry = { version = "0.30.0", default-features = false, features = ["backtrace" # prod feature flamegraph tracing-flame = { version = "0.2.0", optional = true } -inferno = { version = "0.11.14", default-features = false, optional = true } +inferno = { version = "0.11.15", default-features = false, optional = true } # prod feature journald tracing-journald = { version = "0.3.0", optional = true }