Skip to content

Commit

Permalink
Update MSRV to Rust v1.65.0. (#291)
Browse files Browse the repository at this point in the history
Hashbrown updated its MSRV in a patch release (v0.15.1),
so we have to follow.

Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora authored Dec 2, 2024
1 parent 764fcea commit 597634d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ jobs:
run: |
curl -OL https://static.rust-lang.org/rustup/rustup-init.sh
chmod +x ./rustup-init.sh
./rustup-init.sh -y --default-toolchain 1.64.0
./rustup-init.sh -y --default-toolchain 1.65.0
rm rustup-init.sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Update Rust
run: |
rustup toolchain install 1.64.0 --component clippy --component rustfmt
rustup default 1.64.0
rustup toolchain install 1.65.0 --component clippy --component rustfmt
rustup default 1.65.0
rustup target add wasm32-unknown-unknown
rustup target add wasm32-wasi
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "proxy-wasm"
version = "0.2.3-dev"
authors = ["Piotr Sikora <[email protected]>"]
rust-version = "1.64"
rust-version = "1.65"
description = "WebAssembly for Proxies"
readme = "README.md"
license = "Apache-2.0"
Expand Down

0 comments on commit 597634d

Please sign in to comment.