From 75b2b4dc570d0c16b4fb306d95509ecb6761b896 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Nov 2022 18:05:30 +0000 Subject: [PATCH] build(deps): bump miette from 3.3.0 to 5.5.0 Bumps [miette](https://github.com/zkat/miette) from 3.3.0 to 5.5.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-v3.3.0...miette-derive-v5.5.0) --- updated-dependencies: - dependency-name: miette dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++++++++++------ day01/Cargo.toml | 2 +- day02/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 255c587..f891c78 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -88,7 +88,7 @@ dependencies = [ "os_str_bytes", "strsim", "termcolor", - "textwrap", + "textwrap 0.14.2", ] [[package]] @@ -166,9 +166,9 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "miette" -version = "3.3.0" +version = "5.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd2adcfcced5d625bf90a958a82ae5b93231f57f3df1383fee28c9b5096d35ed" +checksum = "4afd9b301defa984bbdbe112b4763e093ed191750a0d914a78c1106b2d0fe703" dependencies = [ "atty", "backtrace", @@ -179,15 +179,16 @@ dependencies = [ "supports-hyperlinks", "supports-unicode", "terminal_size", - "textwrap", + "textwrap 0.15.2", "thiserror", + "unicode-width", ] [[package]] name = "miette-derive" -version = "3.3.0" +version = "5.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c01a8b61312d367ce87956bb686731f87e4c6dd5dbc550e8f06e3c24fb1f67f" +checksum = "97c2401ab7ac5282ca5c8b518a87635b1a93762b0b90b9990c509888eeccba29" dependencies = [ "proc-macro2", "quote", @@ -367,6 +368,12 @@ name = "textwrap" version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" + +[[package]] +name = "textwrap" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d" dependencies = [ "smawk", "unicode-linebreak", diff --git a/day01/Cargo.toml b/day01/Cargo.toml index 4e09e1a..9c963f2 100644 --- a/day01/Cargo.toml +++ b/day01/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" [dependencies] common = { path = "../common" } -miette = { version = "3.3.0", features = ["fancy"] } +miette = { version = "5.5.0", features = ["fancy"] } clap = "3.0.10" diff --git a/day02/Cargo.toml b/day02/Cargo.toml index 23c0286..d372e8d 100644 --- a/day02/Cargo.toml +++ b/day02/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] common = { path = "../common" } -miette = { version = "3.3.0", features = ["fancy"] } +miette = { version = "5.5.0", features = ["fancy"] } clap = "3.0.10" thiserror = "1.0.30" nom = "7.1.0"