Update Cargo.lock

This commit is contained in:
Philipp Krones 2025-07-10 20:25:57 +02:00
parent ee400afc51
commit 69fca569eb
No known key found for this signature in database
GPG key ID: 1CA0DF2AF59D68A5

View file

@ -569,22 +569,16 @@ dependencies = [
"color-print",
"declare_clippy_lint",
"filetime",
"futures",
"if_chain",
"itertools",
"parking_lot",
"pulldown-cmark",
"quote",
"regex",
"rustc_tools_util 0.4.2",
"serde",
"serde_json",
"syn 2.0.104",
"tempfile",
"termize 0.1.1",
"tokio",
"termize",
"toml 0.7.8",
"ui_test",
"ui_test 0.30.2",
"walkdir",
]
@ -642,6 +636,21 @@ dependencies = [
"rustc-semver",
]
[[package]]
name = "clippy_test_deps"
version = "0.1.0"
dependencies = [
"futures",
"if_chain",
"itertools",
"parking_lot",
"quote",
"regex",
"serde",
"syn 2.0.104",
"tokio",
]
[[package]]
name = "clippy_utils"
version = "0.1.90"
@ -2409,7 +2418,7 @@ dependencies = [
"smallvec",
"tempfile",
"tikv-jemalloc-sys",
"ui_test",
"ui_test 0.29.2",
]
[[package]]
@ -3773,7 +3782,7 @@ dependencies = [
"serde",
"serde_json",
"termcolor",
"termize 0.2.0",
"termize",
"tracing",
"windows 0.61.3",
]
@ -4536,7 +4545,7 @@ dependencies = [
"rustc_serialize",
"rustc_span",
"rustc_target",
"termize 0.2.0",
"termize",
"tracing",
"windows 0.61.3",
]
@ -5067,6 +5076,17 @@ dependencies = [
"color-eyre",
]
[[package]]
name = "spanned"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4b0c055fde758f086eb4a6e73410247df8a3837fd606d2caeeaf72aa566d"
dependencies = [
"anyhow",
"bstr",
"color-eyre",
]
[[package]]
name = "spdx-expression"
version = "0.5.2"
@ -5305,16 +5325,6 @@ dependencies = [
"winapi-util",
]
[[package]]
name = "termize"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1706be6b564323ce7092f5f7e6b118a14c8ef7ed0e69c8c5329c914a9f101295"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "termize"
version = "0.2.0"
@ -5726,7 +5736,33 @@ dependencies = [
"rustfix",
"serde",
"serde_json",
"spanned",
"spanned 0.3.0",
]
[[package]]
name = "ui_test"
version = "0.30.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b56a6897cc4bb6f8daf1939b0b39cd9645856997f46f4d0b3e3cb7122dfe9251"
dependencies = [
"annotate-snippets 0.11.5",
"anyhow",
"bstr",
"cargo-platform",
"cargo_metadata 0.18.1",
"color-eyre",
"colored",
"comma",
"crossbeam-channel",
"indicatif",
"levenshtein",
"prettydiff",
"regex",
"rustc_version",
"rustfix",
"serde",
"serde_json",
"spanned 0.4.1",
]
[[package]]