Skip to content

Commit

Permalink
Bump MSRV to 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
AldaronLau committed Jun 13, 2023
1 parent 9f87e82 commit f633a1a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
tc: [1.56.1, stable, beta, nightly]
tc: [1.70.0, stable, beta, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
tc: [1.56.1]
tc: [1.70.0]
cc:
- aarch64-linux-android
- i686-pc-windows-gnu
Expand All @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
tc: [1.56.1]
tc: [1.70.0]
cc: [aarch64-apple-ios]
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
name = "nucleide"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
description = """
A crate to manipulate custom sections of a WebAssembly module to view/edit
application metadata.
Expand Down
3 changes: 1 addition & 2 deletions examples/inspector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ use nucleide::{

fn main() {
let path = env::args()
.skip(1)
.next()
.nth(1)
.expect("Need to provide wasm file");
let bytes = fs::read(path).expect("Could not open file");

Expand Down

0 comments on commit f633a1a

Please sign in to comment.