From 205cca82a9f2c9a03db76008230fcffb333b80d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Aug 2022 17:38:42 +0000 Subject: [PATCH] build(deps): bump miette from 3.3.0 to 5.2.0 Bumps [miette](https://github.com/zkat/miette) from 3.3.0 to 5.2.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.2.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..227bc3e 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.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd2adcfcced5d625bf90a958a82ae5b93231f57f3df1383fee28c9b5096d35ed" +checksum = "8e2c9d50e919ffdc4d2d83b83972a13e8ba86ba8245a205bee9e314d593c15a8" dependencies = [ "atty", "backtrace", @@ -179,15 +179,16 @@ dependencies = [ "supports-hyperlinks", "supports-unicode", "terminal_size", - "textwrap", + "textwrap 0.15.0", "thiserror", + "unicode-width", ] [[package]] name = "miette-derive" -version = "3.3.0" +version = "5.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c01a8b61312d367ce87956bb686731f87e4c6dd5dbc550e8f06e3c24fb1f67f" +checksum = "3c8d10c73bcc9f0ab5c918521dab23d178062a56e6b328eb37106d497280bd94" 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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" dependencies = [ "smawk", "unicode-linebreak", diff --git a/day01/Cargo.toml b/day01/Cargo.toml index 4e09e1a..f8a187b 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.2.0", features = ["fancy"] } clap = "3.0.10" diff --git a/day02/Cargo.toml b/day02/Cargo.toml index 23c0286..0a0afa7 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.2.0", features = ["fancy"] } clap = "3.0.10" thiserror = "1.0.30" nom = "7.1.0"