Skip to content

Commit 597634d

Browse files
authored
Update MSRV to Rust v1.65.0. (#291)
Hashbrown updated its MSRV in a patch release (v0.15.1), so we have to follow. Signed-off-by: Piotr Sikora <code@piotrsikora.dev>
1 parent 764fcea commit 597634d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ jobs:
125125
run: |
126126
curl -OL https://static.rust-lang.org/rustup/rustup-init.sh
127127
chmod +x ./rustup-init.sh
128-
./rustup-init.sh -y --default-toolchain 1.64.0
128+
./rustup-init.sh -y --default-toolchain 1.65.0
129129
rm rustup-init.sh
130130
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
131131
132132
- name: Update Rust
133133
run: |
134-
rustup toolchain install 1.64.0 --component clippy --component rustfmt
135-
rustup default 1.64.0
134+
rustup toolchain install 1.65.0 --component clippy --component rustfmt
135+
rustup default 1.65.0
136136
rustup target add wasm32-unknown-unknown
137137
rustup target add wasm32-wasi
138138

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "proxy-wasm"
33
version = "0.2.3-dev"
44
authors = ["Piotr Sikora <piotrsikora@google.com>"]
5-
rust-version = "1.64"
5+
rust-version = "1.65"
66
description = "WebAssembly for Proxies"
77
readme = "README.md"
88
license = "Apache-2.0"

0 commit comments

Comments
 (0)