Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/cross-linux-riscv64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && \
# install rust tools
RUN curl --proto "=https" --tlsv1.2 --retry 3 -sSfL https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN rustup -v toolchain install 1.90
RUN rustup -v toolchain install 1.91
# add docker the manual way
COPY install_docker.sh /
RUN /install_docker.sh
Expand Down Expand Up @@ -61,7 +61,7 @@ ENV CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_LINKER="$CROSS_TOOLCHAIN_PREFIX"gcc
RUST_TEST_THREADS=1 \
PKG_CONFIG_PATH="/usr/lib/riscv64-linux-gnu/pkgconfig/:${PKG_CONFIG_PATH}"

RUN rustup target add riscv64gc-unknown-linux-gnu --toolchain 1.90-x86_64-unknown-linux-gnu
RUN rustup target add riscv64gc-unknown-linux-gnu --toolchain 1.91-x86_64-unknown-linux-gnu

# quickly install cargo nextest by using pre-built binary
RUN curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: git
MSRV: "1.90"
MSRV: "1.91"

jobs:
run_benchmark:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Builds
env:
RUST_BACKTRACE: 1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: git
MSRV: "1.90"
MSRV: "1.91"

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloudcompiler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release cloudcompiler.wasm

env:
RUST_BACKTRACE: 1
MSRV: "1.90"
MSRV: "1.91"

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "lib/**"

env:
MSRV: "1.90"
MSRV: "1.91"

jobs:
documentation:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
# Rust, but it's not stable on 1.69 yet. By explicitly setting the protocol we
# can override that behaviour
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: git
MSRV: "1.90"
MSRV: "1.91"
NEXTEST_PROFILE: "ci"
RUSTUP_WINDOWS_PATH_ADD_BIN: 1
WASI_SDK_VERSION: "22"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ edition = "2024"
homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.90"
rust-version = "1.91"
version = "7.0.0-alpha.2"

[workspace.dependencies]
Expand Down
10 changes: 5 additions & 5 deletions lib/virtual-fs/src/mem_fs/filesystem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,7 @@ mod test_filesystem {
path,
metadata: Ok(Metadata { ft, .. }),
}))
if path == path!(buf "/foo") && ft.is_dir()
if path.as_path() == path!("/foo") && ft.is_dir()
),
"checking entry #1",
);
Expand All @@ -1780,7 +1780,7 @@ mod test_filesystem {
path,
metadata: Ok(Metadata { ft, .. }),
}))
if path == path!(buf "/bar") && ft.is_dir()
if path.as_path() == path!("/bar") && ft.is_dir()
),
"checking entry #2",
);
Expand All @@ -1791,7 +1791,7 @@ mod test_filesystem {
path,
metadata: Ok(Metadata { ft, .. }),
}))
if path == path!(buf "/baz") && ft.is_dir()
if path.as_path() == path!("/baz") && ft.is_dir()
),
"checking entry #3",
);
Expand All @@ -1802,7 +1802,7 @@ mod test_filesystem {
path,
metadata: Ok(Metadata { ft, .. }),
}))
if path == path!(buf "/a.txt") && ft.is_file()
if path.as_path() == path!("/a.txt") && ft.is_file()
),
"checking entry #4",
);
Expand All @@ -1813,7 +1813,7 @@ mod test_filesystem {
path,
metadata: Ok(Metadata { ft, .. }),
}))
if path == path!(buf "/b.txt") && ft.is_file()
if path.as_path() == path!("/b.txt") && ft.is_file()
),
"checking entry #5",
);
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.90
1.91
Loading