Skip to content

Commit bdc597d

Browse files
committed
Rustup to rustc 1.75.0-nightly (0039d739d 2023-10-18)
1 parent 5f2d3ac commit bdc597d

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

patches/stdlib-lock.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ dependencies = [
174174

175175
[[package]]
176176
name = "libc"
177-
version = "0.2.148"
177+
version = "0.2.149"
178178
source = "registry+https://github.com/rust-lang/crates.io-index"
179-
checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
179+
checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
180180
dependencies = [
181181
"rustc-std-workspace-core",
182182
]
@@ -361,7 +361,6 @@ version = "0.0.0"
361361
dependencies = [
362362
"addr2line",
363363
"alloc",
364-
"cc",
365364
"cfg-if",
366365
"compiler_builtins",
367366
"core",

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2023-10-09"
2+
channel = "nightly-2023-10-19"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#![cfg_attr(not(bootstrap), allow(internal_features))]
2-
#![cfg_attr(not(bootstrap), feature(rustdoc_internals))]
3-
#![cfg_attr(not(bootstrap), doc(rust_logo))]
1+
#![cfg_attr(all(doc, not(bootstrap)), allow(internal_features))]
2+
#![cfg_attr(all(doc, not(bootstrap)), feature(rustdoc_internals))]
3+
#![cfg_attr(all(doc, not(bootstrap)), doc(rust_logo))]
44
#![feature(rustc_private)]
55
// Note: please avoid adding other feature gates where possible
66
#![warn(rust_2018_idioms)]

0 commit comments

Comments
 (0)