Skip to content

Commit 9d939ba

Browse files
committed
for testing only
1 parent d5f4c70 commit 9d939ba

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

library/Cargo.lock

+9-10
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ dependencies = [
3636

3737
[[package]]
3838
name = "allocator-api2"
39-
version = "0.2.18"
39+
version = "0.2.20"
4040
source = "registry+https://github.com/rust-lang/crates.io-index"
41-
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
41+
checksum = "45862d1c77f2228b9e10bc609d5bc203d86ebc9b87ad8d5d5167a6c9abf739d9"
4242

4343
[[package]]
4444
name = "cc"
45-
version = "1.2.0"
45+
version = "1.2.1"
4646
source = "registry+https://github.com/rust-lang/crates.io-index"
47-
checksum = "1aeb932158bd710538c73702db6945cb68a8fb08c519e6e12706b94263b36db8"
47+
checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
4848
dependencies = [
4949
"shlex",
5050
]
@@ -135,9 +135,9 @@ dependencies = [
135135

136136
[[package]]
137137
name = "hashbrown"
138-
version = "0.15.0"
138+
version = "0.15.2"
139139
source = "registry+https://github.com/rust-lang/crates.io-index"
140-
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
140+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
141141
dependencies = [
142142
"allocator-api2",
143143
"compiler_builtins",
@@ -159,8 +159,7 @@ dependencies = [
159159
[[package]]
160160
name = "libc"
161161
version = "0.2.166"
162-
source = "registry+https://github.com/rust-lang/crates.io-index"
163-
checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36"
162+
source = "git+https://github.com/tgross35/rust-libc?branch=backport-fix-rustc-dep-of-std#70b1487bb06aaaeb12df794fe9b6dda4121de591"
164163
dependencies = [
165164
"rustc-std-workspace-core",
166165
]
@@ -405,9 +404,9 @@ dependencies = [
405404

406405
[[package]]
407406
name = "unwinding"
408-
version = "0.2.3"
407+
version = "0.2.4"
409408
source = "registry+https://github.com/rust-lang/crates.io-index"
410-
checksum = "637d511437df708cee34bdec7ba2f1548d256b7acf3ff20e0a1c559f9bf3a987"
409+
checksum = "e2c6cb20f236dae10c69b0b45d82ef50af8b7e45c10e429e7901d26b49b4dbf3"
411410
dependencies = [
412411
"compiler_builtins",
413412
"gimli 0.31.1",

library/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ rustc-demangle.debug = 0
4545
rustc-std-workspace-core = { path = 'rustc-std-workspace-core' }
4646
rustc-std-workspace-alloc = { path = 'rustc-std-workspace-alloc' }
4747
rustc-std-workspace-std = { path = 'rustc-std-workspace-std' }
48+
libc = { git = "https://github.com/tgross35/rust-libc", branch = "backport-fix-rustc-dep-of-std", default-features = false, features = [
49+
'rustc-dep-of-std',
50+
], public = true }

0 commit comments

Comments
 (0)