Skip to content

Commit 3a6fc80

Browse files
committed
Update cargo
1 parent a2df8ba commit 3a6fc80

File tree

3 files changed

+82
-3
lines changed

3 files changed

+82
-3
lines changed

Cargo.lock

+78-2
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ dependencies = [
337337
"humantime 2.0.1",
338338
"ignore",
339339
"im-rc",
340+
"indexmap",
340341
"itertools",
341342
"jobserver",
342343
"lazy_static",
@@ -358,6 +359,7 @@ dependencies = [
358359
"serde_ignored",
359360
"serde_json",
360361
"shell-escape",
362+
"snapbox",
361363
"strip-ansi-escapes",
362364
"tar",
363365
"tempfile",
@@ -794,6 +796,32 @@ dependencies = [
794796
"winapi",
795797
]
796798

799+
[[package]]
800+
name = "concolor"
801+
version = "0.0.8"
802+
source = "registry+https://github.com/rust-lang/crates.io-index"
803+
checksum = "015267563b1df20adccdd00cb05257b1dfbea70a04928e9cf88ffb850c1a40af"
804+
dependencies = [
805+
"atty",
806+
"bitflags",
807+
"concolor-query",
808+
]
809+
810+
[[package]]
811+
name = "concolor-query"
812+
version = "0.0.5"
813+
source = "registry+https://github.com/rust-lang/crates.io-index"
814+
checksum = "d6417fe6fc03a8b533fd2177742eeb39a90c7233eedec7bac96d4d6b69a09449"
815+
816+
[[package]]
817+
name = "content_inspector"
818+
version = "0.2.4"
819+
source = "registry+https://github.com/rust-lang/crates.io-index"
820+
checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
821+
dependencies = [
822+
"memchr",
823+
]
824+
797825
[[package]]
798826
name = "core"
799827
version = "0.0.0"
@@ -1088,6 +1116,12 @@ dependencies = [
10881116
"rustc-std-workspace-core",
10891117
]
10901118

1119+
[[package]]
1120+
name = "dunce"
1121+
version = "1.0.2"
1122+
source = "registry+https://github.com/rust-lang/crates.io-index"
1123+
checksum = "453440c271cf5577fd2a40e4942540cb7d0d2f85e27c8d07dd0023c925a67541"
1124+
10911125
[[package]]
10921126
name = "either"
10931127
version = "1.6.0"
@@ -2417,6 +2451,12 @@ dependencies = [
24172451
"version_check",
24182452
]
24192453

2454+
[[package]]
2455+
name = "normalize-line-endings"
2456+
version = "0.3.0"
2457+
source = "registry+https://github.com/rust-lang/crates.io-index"
2458+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2459+
24202460
[[package]]
24212461
name = "ntapi"
24222462
version = "0.3.6"
@@ -4789,6 +4829,12 @@ dependencies = [
47894829
"libc",
47904830
]
47914831

4832+
[[package]]
4833+
name = "similar"
4834+
version = "2.1.0"
4835+
source = "registry+https://github.com/rust-lang/crates.io-index"
4836+
checksum = "2e24979f63a11545f5f2c60141afe249d4f19f84581ea2138065e400941d83d3"
4837+
47924838
[[package]]
47934839
name = "siphasher"
47944840
version = "0.3.3"
@@ -4823,6 +4869,30 @@ version = "1.0.1"
48234869
source = "registry+https://github.com/rust-lang/crates.io-index"
48244870
checksum = "da73c8f77aebc0e40c300b93f0a5f1bece7a248a36eee287d4e095f35c7b7d6e"
48254871

4872+
[[package]]
4873+
name = "snapbox"
4874+
version = "0.2.9"
4875+
source = "registry+https://github.com/rust-lang/crates.io-index"
4876+
checksum = "c1f212b806d6f56d19838e36a0aaa7e79a0bc9ca177e873fb87651ad92f983e2"
4877+
dependencies = [
4878+
"concolor",
4879+
"content_inspector",
4880+
"dunce",
4881+
"filetime",
4882+
"normalize-line-endings",
4883+
"similar",
4884+
"snapbox-macros",
4885+
"tempfile",
4886+
"walkdir",
4887+
"yansi",
4888+
]
4889+
4890+
[[package]]
4891+
name = "snapbox-macros"
4892+
version = "0.2.1"
4893+
source = "registry+https://github.com/rust-lang/crates.io-index"
4894+
checksum = "c01dea7e04cbb27ef4c86e9922184608185f7cd95c1763bc30d727cda4a5e930"
4895+
48264896
[[package]]
48274897
name = "socket2"
48284898
version = "0.4.1"
@@ -5667,9 +5737,9 @@ dependencies = [
56675737

56685738
[[package]]
56695739
name = "walkdir"
5670-
version = "2.3.1"
5740+
version = "2.3.2"
56715741
source = "registry+https://github.com/rust-lang/crates.io-index"
5672-
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
5742+
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
56735743
dependencies = [
56745744
"same-file",
56755745
"winapi",
@@ -5780,6 +5850,12 @@ dependencies = [
57805850
"linked-hash-map",
57815851
]
57825852

5853+
[[package]]
5854+
name = "yansi"
5855+
version = "0.5.1"
5856+
source = "registry+https://github.com/rust-lang/crates.io-index"
5857+
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
5858+
57835859
[[package]]
57845860
name = "yansi-term"
57855861
version = "0.1.2"

src/tools/cargo

Submodule cargo updated 556 files

src/tools/tidy/src/deps.rs

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ const EXCEPTIONS: &[(&str, &str)] = &[
4242
("self_cell", "Apache-2.0"), // rustc (fluent translations)
4343
// FIXME: this dependency violates the documentation comment above:
4444
("fortanix-sgx-abi", "MPL-2.0"), // libstd but only for `sgx` target
45+
("dunce", "CC0-1.0"), // cargo (dev dependency)
46+
("similar", "Apache-2.0"), // cargo (dev dependency)
47+
("normalize-line-endings", "Apache-2.0"), // cargo (dev dependency)
4548
];
4649

4750
const EXCEPTIONS_CRANELIFT: &[(&str, &str)] = &[

0 commit comments

Comments
 (0)