diff --git a/Cargo.lock b/Cargo.lock index 255c587..47b27dc 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.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd2adcfcced5d625bf90a958a82ae5b93231f57f3df1383fee28c9b5096d35ed" +checksum = "a28d6092d7e94a90bb9ea8e6c26c99d5d112d49dda2afdb4f7ea8cf09e1a5a6d" 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.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c01a8b61312d367ce87956bb686731f87e4c6dd5dbc550e8f06e3c24fb1f67f" +checksum = "4f2485ed7d1fe80704928e3eb86387439609bd0c6bb96db8208daa364cfd1e09" 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..f573271 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.3.0", features = ["fancy"] } clap = "3.0.10" diff --git a/day02/Cargo.toml b/day02/Cargo.toml index 23c0286..2e6fd08 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.3.0", features = ["fancy"] } clap = "3.0.10" thiserror = "1.0.30" nom = "7.1.0"