Skip to content

Commit a8a2a88

Browse files
committed
Auto merge of #56875 - Centril:rollup, r=Centril
Rollup of 20 pull requests Successful merges: - #53506 (Documentation for impl From for AtomicBool and other Atomic types) - #56343 (Remove not used mod) - #56439 (Clearer error message for dead assign) - #56640 (Add FreeBSD unsigned char platforms to std::os::raw) - #56648 (Fix BTreeMap UB) - #56672 (Document time of back operations of a Linked List) - #56706 (Make `const unsafe fn` bodies `unsafe`) - #56742 (infer: remove Box from a returned Iterator) - #56761 (Suggest using `.display()` when trying to print a `Path`) - #56781 (Update LLVM submodule) - #56789 (rustc: Add an unstable `simd_select_bitmask` intrinsic) - #56790 (Make RValue::Discriminant a normal Shallow read) - #56793 (rustdoc: look for comments when scraping attributes/crates from doctests) - #56826 (rustc: Add the `cmpxchg16b` target feature on x86/x86_64) - #56832 (std: Use `rustc_demangle` from crates.io) - #56844 (Improve CSS rule) - #56850 (Fixed issue with using `Self` ctor in typedefs) - #56855 (Remove u8 cttz hack) - #56857 (Fix a small mistake regarding NaNs in a deprecation message) - #56858 (Fix doc of `std::fs::canonicalize`) Failed merges: - #56741 (treat ref-to-raw cast like a reborrow: do a special kind of retag) r? @ghost
2 parents 19dc2ca + 6574d83 commit a8a2a88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+649
-836
lines changed

Cargo.lock

+13-8
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ dependencies = [
8787
"backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
8888
"cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
8989
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)",
90-
"rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
90+
"rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
9191
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
9292
]
9393

@@ -1813,7 +1813,7 @@ name = "rand_chacha"
18131813
version = "0.1.0"
18141814
source = "registry+https://github.com/rust-lang/crates.io-index"
18151815
dependencies = [
1816-
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
1816+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
18171817
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
18181818
]
18191819

@@ -1835,7 +1835,7 @@ name = "rand_hc"
18351835
version = "0.1.0"
18361836
source = "registry+https://github.com/rust-lang/crates.io-index"
18371837
dependencies = [
1838-
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
1838+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
18391839
]
18401840

18411841
[[package]]
@@ -1860,7 +1860,7 @@ name = "rand_xorshift"
18601860
version = "0.1.0"
18611861
source = "registry+https://github.com/rust-lang/crates.io-index"
18621862
dependencies = [
1863-
"rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
1863+
"rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
18641864
]
18651865

18661866
[[package]]
@@ -2195,8 +2195,12 @@ dependencies = [
21952195

21962196
[[package]]
21972197
name = "rustc-demangle"
2198-
version = "0.1.9"
2198+
version = "0.1.10"
21992199
source = "registry+https://github.com/rust-lang/crates.io-index"
2200+
dependencies = [
2201+
"compiler_builtins 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2202+
"rustc-std-workspace-core 1.0.0",
2203+
]
22002204

22012205
[[package]]
22022206
name = "rustc-hash"
@@ -2315,7 +2319,7 @@ dependencies = [
23152319
"cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
23162320
"memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
23172321
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
2318-
"rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
2322+
"rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
23192323
"rustc_llvm 0.0.0",
23202324
]
23212325

@@ -2331,7 +2335,7 @@ dependencies = [
23312335
"memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
23322336
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
23332337
"rustc 0.0.0",
2334-
"rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
2338+
"rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
23352339
"rustc_allocator 0.0.0",
23362340
"rustc_apfloat 0.0.0",
23372341
"rustc_codegen_utils 0.0.0",
@@ -2892,6 +2896,7 @@ dependencies = [
28922896
"panic_unwind 0.0.0",
28932897
"profiler_builtins 0.0.0",
28942898
"rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
2899+
"rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
28952900
"rustc_asan 0.0.0",
28962901
"rustc_lsan 0.0.0",
28972902
"rustc_msan 0.0.0",
@@ -3578,7 +3583,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
35783583
"checksum rustc-ap-serialize 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b2c0e8161e956647592a737074736e6ce05ea36b70c770ea8cca3eb9cb33737"
35793584
"checksum rustc-ap-syntax 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1adc189e5e4500a4167b9afa04e67067f40d0039e0e05870c977bebb561f065a"
35803585
"checksum rustc-ap-syntax_pos 306.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d42c430dbb0be4377bfe6aa5099074c63ac8796b24098562c2e2154aecc5652"
3581-
"checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395"
3586+
"checksum rustc-demangle 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "82ae957aa1b3055d8e086486723c0ccd3d7b8fa190ae8fa2e35543b6171c810e"
35823587
"checksum rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7540fc8b0c49f096ee9c961cda096467dce8084bec6bdca2fc83895fd9b28cb8"
35833588
"checksum rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c6d5a683c6ba4ed37959097e88d71c9e8e26659a3cb5be8b389078e7ad45306"
35843589
"checksum rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40f06724db71e18d68b3b946fdf890ca8c921d9edccc1404fdfdb537b0d12649"

0 commit comments

Comments
 (0)