Skip to content

Commit 4fee0e4

Browse files
bors[bot]stlankes
andauthored
Merge #414
414: switch to the latest nightly compiler r=stlankes a=stlankes - the latest std library use random `HashMap` keys rust-lang/rust#107387 - fix typo in the creation of OpenOption for RustyHermit rust-lang/rust#109368 Co-authored-by: Stefan Lankes <slankes@eonerc.rwth-aachen.de>
2 parents 02fe1ee + 142cd91 commit 4fee0e4

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \
55
CARGO_HOME=/usr/local/cargo \
66
PATH=/usr/local/cargo/bin:$PATH \
77
# Manually sync this with rust-toolchain.toml!
8-
RUST_VERSION=nightly-2023-02-14 \
8+
RUST_VERSION=nightly-2023-04-05 \
99
RUST_COMPONENTS="rust-src"
1010

1111
RUN set -eux; \

benches/netbench/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = "A Rust program to measure bandwidth or latency over a Rust TCP co
1010

1111
[dependencies]
1212
bytes = "1.1"
13-
clap = {verstion ="4.1", features = ["derive"] }
13+
clap = {version ="4.1", features = ["derive"] }
1414
core_affinity = "0.8"
1515
hdrhist = "0.5"
1616

examples/demo/src/tests/thread_local.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
pub fn test_thread_local() -> Result<(), ()> {
2-
#[repr(align(0x1000))]
3-
struct OverAligned(u8);
2+
#[repr(align(0x10))]
3+
struct Aligned(u8);
44

55
thread_local! {
6-
static THREAD_LOCAL: OverAligned = const { OverAligned(0x42) };
6+
static THREAD_LOCAL: Aligned = const { Aligned(0x42) };
77
}
88

99
THREAD_LOCAL.with(|thread_local| {

libhermit-rs

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
22
# Manually sync this with Dockerfile!
3-
channel = "nightly-2023-03-15"
3+
channel = "nightly-2023-04-05"
44
components = [ "rust-src" ]

0 commit comments

Comments
 (0)