Skip to content

Commit

Permalink
Bump rust version to 1.82.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iawia002 committed Oct 23, 2024
1 parent 27014b7 commit db2293f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@1.78.0
uses: dtolnay/rust-toolchain@1.82.0
with:
components: clippy, rustfmt
- name: Install protoc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
fetch-depth: 1
- name: Install Rust
uses: dtolnay/rust-toolchain@1.78.0
uses: dtolnay/rust-toolchain@1.82.0
with:
targets: ${{ matrix.target }}
- name: Install dependencies
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
with:
fetch-depth: 1
- name: Install Rust
uses: dtolnay/rust-toolchain@1.78.0
uses: dtolnay/rust-toolchain@1.82.0
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
Expand Down
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion wacker-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ tonic.workspace = true
ahash.workspace = true

tabled = "0.15.0"
once_cell = "1.20.1"
4 changes: 2 additions & 2 deletions wacker-cli/src/commands/list.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use ahash::AHashMap;
use anyhow::{bail, Result};
use clap::Parser;
use once_cell::sync::Lazy;
use std::sync::LazyLock;
use tabled::{
settings::{object::Columns, Modify, Padding, Style, Width},
Table, Tabled,
Expand All @@ -24,7 +24,7 @@ struct Program {
address: String,
}

static STATUS: Lazy<AHashMap<u32, &'static str>> = Lazy::new(|| {
static STATUS: LazyLock<AHashMap<u32, &'static str>> = LazyLock::new(|| {
AHashMap::from([
(PROGRAM_STATUS_RUNNING, "Running"),
(PROGRAM_STATUS_FINISHED, "Finished"),
Expand Down

0 comments on commit db2293f

Please sign in to comment.