From ca7b489663eb7a9fa5df0214697bb14df800ea56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Mar 2023 15:56:07 +1100 Subject: [PATCH] Bump miette from 5.5.0 to 5.6.0 (#913) Bumps [miette](https://github.com/zkat/miette) from 5.5.0 to 5.6.0. - [Release notes](https://github.com/zkat/miette/releases) - [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/miette/compare/miette-derive-v5.5.0...miette-derive-v5.6.0) --- updated-dependencies: - dependency-name: miette dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 56 +++++++--------------------- crates/bin/Cargo.toml | 2 +- crates/binstalk-manifests/Cargo.toml | 2 +- crates/binstalk/Cargo.toml | 2 +- 4 files changed, 16 insertions(+), 46 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 350fd824..4bab21ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,17 +95,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi 0.1.19", - "libc", - "winapi", -] - [[package]] name = "autocfg" version = "1.1.0" @@ -354,7 +343,7 @@ dependencies = [ "semver", "strum", "strum_macros", - "supports-color 2.0.0", + "supports-color", "tempfile", "tokio", "tracing", @@ -868,15 +857,6 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - [[package]] name = "hermit-abi" version = "0.2.6" @@ -1253,16 +1233,16 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "miette" -version = "5.5.0" +version = "5.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4afd9b301defa984bbdbe112b4763e093ed191750a0d914a78c1106b2d0fe703" +checksum = "07749fb52853e739208049fb513287c6f448de9103dfa78b05ae01f2fc5809bb" dependencies = [ - "atty", "backtrace", + "is-terminal", "miette-derive", "once_cell", "owo-colors", - "supports-color 1.3.1", + "supports-color", "supports-hyperlinks", "supports-unicode", "terminal_size", @@ -1273,9 +1253,9 @@ dependencies = [ [[package]] name = "miette-derive" -version = "5.5.0" +version = "5.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97c2401ab7ac5282ca5c8b518a87635b1a93762b0b90b9990c509888eeccba29" +checksum = "2a07ad93a80d1b92bb44cb42d7c49b49c9aab1778befefad49cceb5e4c5bf460" dependencies = [ "proc-macro2", "quote", @@ -2076,16 +2056,6 @@ dependencies = [ "syn", ] -[[package]] -name = "supports-color" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f" -dependencies = [ - "atty", - "is_ci", -] - [[package]] name = "supports-color" version = "2.0.0" @@ -2098,20 +2068,20 @@ dependencies = [ [[package]] name = "supports-hyperlinks" -version = "1.2.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "590b34f7c5f01ecc9d78dba4b3f445f31df750a67621cf31626f3b7441ce6406" +checksum = "4b4806e0b03b9906e76b018a5d821ebf198c8e9dc0829ed3328eeeb5094aed60" dependencies = [ - "atty", + "is-terminal", ] [[package]] name = "supports-unicode" -version = "1.0.2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8b945e45b417b125a8ec51f1b7df2f8df7920367700d1f98aedd21e5735f8b2" +checksum = "4b6c2cb240ab5dd21ed4906895ee23fe5a48acdbd15a3ce388e7b62a9b66baf7" dependencies = [ - "atty", + "is-terminal", ] [[package]] diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index 1768b956..aa26b5c3 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -31,7 +31,7 @@ file-format = { version = "0.15.0", default-features = false } fs-lock = { version = "0.1.0", path = "../fs-lock" } gh-token = "0.1.1" log = { version = "0.4.17", features = ["std"] } -miette = "5.5.0" +miette = "5.6.0" mimalloc = { version = "0.1.34", default-features = false, optional = true } once_cell = "1.17.1" semver = "1.0.17" diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index 36d8338c..0e462389 100644 --- a/crates/binstalk-manifests/Cargo.toml +++ b/crates/binstalk-manifests/Cargo.toml @@ -15,7 +15,7 @@ binstalk-types = { version = "0.3.0", path = "../binstalk-types" } compact_str = { version = "0.7.0", features = ["serde"] } fs-lock = { version = "0.1.0", path = "../fs-lock" } home = "0.5.4" -miette = "5.5.0" +miette = "5.6.0" semver = { version = "1.0.17", features = ["serde"] } serde = { version = "1.0.155", features = ["derive"] } serde-tuple-vec-map = "1.0.1" diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index cc2cac2a..5af6ee5d 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -22,7 +22,7 @@ home = "0.5.4" itertools = "0.10.5" jobslot = { version = "0.2.10", features = ["tokio"] } maybe-owned = "0.3.4" -miette = "5.5.0" +miette = "5.6.0" normalize-path = { version = "0.2.0", path = "../normalize-path" } once_cell = "1.17.1" semver = { version = "1.0.17", features = ["serde"] }