From d8290f3fdc4827f9b9a643c9d47f05a1e16d2a7d Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Sun, 22 Dec 2024 08:50:48 +0000 Subject: [PATCH] Update Rust crate miette to 7.4.0 --- Cargo.lock | 29 ++++++----------------------- Cargo.toml | 2 +- workspace-hack/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e362c0b540d..93f2fb108f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -696,7 +696,7 @@ dependencies = [ "anstyle", "clap_lex 0.7.2", "strsim 0.11.1", - "terminal_size 0.4.1", + "terminal_size", ] [[package]] @@ -2879,9 +2879,9 @@ dependencies = [ [[package]] name = "miette" -version = "7.2.0" +version = "7.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4edc8853320c2a0dab800fbda86253c8938f6ea88510dc92c5f1ed20e794afc1" +checksum = "317f146e2eb7021892722af37cf1b971f0a70c8406f487e24952667616192c64" dependencies = [ "backtrace", "backtrace-ext", @@ -2891,7 +2891,7 @@ dependencies = [ "supports-color 3.0.2", "supports-hyperlinks", "supports-unicode", - "terminal_size 0.3.0", + "terminal_size", "textwrap 0.16.0", "thiserror 1.0.69", "unicode-width 0.1.13", @@ -2899,9 +2899,9 @@ dependencies = [ [[package]] name = "miette-derive" -version = "7.2.0" +version = "7.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf09caffaac8068c346b6df2a7fc27a177fd20b39421a39ce0a211bde679a6c" +checksum = "23c9b935fbe1d6cbd1dac857b54a688145e2d93f48db36010514d0f612d0ad67" dependencies = [ "proc-macro2", "quote", @@ -3828,12 +3828,6 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" -[[package]] -name = "smawk" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" - [[package]] name = "socket2" version = "0.5.7" @@ -4043,16 +4037,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "terminal_size" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" -dependencies = [ - "rustix", - "windows-sys 0.48.0", -] - [[package]] name = "terminal_size" version = "0.4.1" @@ -4111,7 +4095,6 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" dependencies = [ - "smawk", "unicode-linebreak", "unicode-width 0.1.13", ] diff --git a/Cargo.toml b/Cargo.toml index e98db7e0044..0b97eea77ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ cfg-expr = "0.17.2" datatest-stable = "0.2.10" guppy-workspace-hack = "0.1.0" insta = "1.41.1" -miette = "7.2.0" +miette = "7.4.0" [workspace.package] rust-version = "1.78" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index d025e81ed89..3bbf28b22fc 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -26,7 +26,7 @@ console = { version = "0.15.8" } getrandom = { version = "0.2.12", default-features = false, features = ["std"] } indexmap = { version = "1.9.3", default-features = false, features = ["std"] } log = { version = "0.4.22", default-features = false, features = ["std"] } -miette = { version = "7.2.0", features = ["fancy"] } +miette = { version = "7.4.0", features = ["fancy"] } num-traits = { version = "0.2.17", features = ["libm"] } owo-colors = { version = "3.5.0", default-features = false, features = ["supports-colors"] } petgraph = { version = "0.6.5", default-features = false, features = ["graphmap"] } @@ -35,7 +35,7 @@ regex-automata = { version = "0.4.5", default-features = false, features = ["dfa regex-syntax = { version = "0.8.2" } serde = { version = "1.0.216", features = ["alloc", "derive"] } serde_json = { version = "1.0.134", features = ["unbounded_depth"] } -textwrap = { version = "0.16.0" } +textwrap = { version = "0.16.0", default-features = false, features = ["unicode-linebreak", "unicode-width"] } toml = { version = "0.5.11", features = ["preserve_order"] } [build-dependencies]