Skip to content

Commit

Permalink
chore(deps): update dependency rust to v1.82.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Nov 28, 2024
1 parent 896ff86 commit e158128
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/checkout-action@v1

# wasm bindgen breaks under rustc 1.82.0 wasm-bindgen 0.2.95
# https://github.com/rustwasm/wasm-bindgen/issues/4207
- run: sed -i ${{ (runner.os == 'macOS' && '""') || '' }} -e 's/82/81/g' rust-toolchain.toml

- uses: Boshen/setup-rust@main
with:
cache-key: wasm
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release_wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
steps:
- uses: taiki-e/checkout-action@v1

# wasm bindgen breaks under rustc 1.82.0 wasm-bindgen 0.2.95
# https://github.com/rustwasm/wasm-bindgen/issues/4207
- run: sed -i ${{ (runner.os == 'macOS' && '""') || '' }} -e 's/82/81/g' rust-toolchain.toml

- uses: ./.github/actions/pnpm

- uses: Boshen/setup-rust@main
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.81.0"
channel = "1.82.0"
profile = "default"
1 change: 1 addition & 0 deletions tasks/ast_tools/src/schema/defs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ use super::TypeName;

#[derive(Debug, Serialize)]
#[serde(untagged)]
#[expect(clippy::large_enum_variant)]
pub enum TypeDef {
Struct(StructDef),
Enum(EnumDef),
Expand Down

0 comments on commit e158128

Please sign in to comment.