Skip to content

Commit 9649458

Browse files
committed
test
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent e0421f8 commit 9649458

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

src/bootstrap/Cargo.lock

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ name = "bootstrap"
3737
version = "0.0.0"
3838
dependencies = [
3939
"build_helper",
40-
"cc",
40+
"cc 1.2.18",
4141
"clap",
4242
"clap_complete",
4343
"cmake",
@@ -96,6 +96,14 @@ dependencies = [
9696
"shlex",
9797
]
9898

99+
[[package]]
100+
name = "cc"
101+
version = "1.2.18"
102+
source = "git+https://github.com/onur-ozkan/cc-rs?branch=extend-ar-finding#e3b04dc4e57b275dee75e46ba3a5c3cf31af205b"
103+
dependencies = [
104+
"shlex",
105+
]
106+
99107
[[package]]
100108
name = "cfg-if"
101109
version = "1.0.0"
@@ -155,7 +163,7 @@ version = "0.1.54"
155163
source = "registry+https://github.com/rust-lang/crates.io-index"
156164
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
157165
dependencies = [
158-
"cc",
166+
"cc 1.2.17",
159167
]
160168

161169
[[package]]
@@ -380,7 +388,7 @@ version = "0.1.20"
380388
source = "registry+https://github.com/rust-lang/crates.io-index"
381389
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
382390
dependencies = [
383-
"cc",
391+
"cc 1.2.17",
384392
"libc",
385393
"pkg-config",
386394
]

src/bootstrap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ test = false
3232
# Most of the time updating these dependencies requires modifications to the
3333
# bootstrap codebase(e.g., https://github.com/rust-lang/rust/issues/124565);
3434
# otherwise, some targets will fail. That's why these dependencies are explicitly pinned.
35-
cc = "=1.2.17"
35+
cc = { git = "https://github.com/onur-ozkan/cc-rs", branch = "extend-ar-finding" }
3636
cmake = "=0.1.54"
3737

3838
build_helper = { path = "../build_helper" }

0 commit comments

Comments
 (0)