Skip to content

Commit 13a63b6

Browse files
committed
Auto merge of rust-lang#130720 - arttet:fix/profiler_builtins, r=Amanieu
Bump cc dependency Closes [rust-lang#130719](rust-lang#130719) try-job: x86_64-msvc
2 parents 9e394f5 + 66ca56e commit 13a63b6

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

Diff for: library/Cargo.lock

+11-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,12 @@ checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
4242

4343
[[package]]
4444
name = "cc"
45-
version = "1.0.99"
45+
version = "1.1.21"
4646
source = "registry+https://github.com/rust-lang/crates.io-index"
47-
checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695"
47+
checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
48+
dependencies = [
49+
"shlex",
50+
]
4851

4952
[[package]]
5053
name = "cfg-if"
@@ -312,6 +315,12 @@ dependencies = [
312315
"std",
313316
]
314317

318+
[[package]]
319+
name = "shlex"
320+
version = "1.3.0"
321+
source = "registry+https://github.com/rust-lang/crates.io-index"
322+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
323+
315324
[[package]]
316325
name = "std"
317326
version = "0.0.0"

Diff for: library/profiler_builtins/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ core = { path = "../core" }
1313
compiler_builtins = { version = "0.1.0", features = ['rustc-dep-of-std'] }
1414

1515
[build-dependencies]
16-
cc = "1.0.97"
16+
cc = "1.1.21"

Diff for: src/tools/tidy/src/deps.rs

+1
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,7 @@ const PERMITTED_STDLIB_DEPENDENCIES: &[&str] = &[
481481
"rand_core",
482482
"rand_xorshift",
483483
"rustc-demangle",
484+
"shlex",
484485
"unicode-width",
485486
"unwinding",
486487
"wasi",

0 commit comments

Comments
 (0)