File tree 4 files changed +11
-1
lines changed
tasks/ast_tools/src/schema
4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,11 @@ jobs:
121
121
runs-on : ubuntu-latest
122
122
steps :
123
123
- uses : taiki-e/checkout-action@v1
124
+
125
+ # wasm bindgen breaks under rustc 1.82.0 wasm-bindgen 0.2.95
126
+ # https://github.com/rustwasm/wasm-bindgen/issues/4207
127
+ - run : sed -i ${{ (runner.os == 'macOS' && '""') || '' }} -e 's/82/81/g' rust-toolchain.toml
128
+
124
129
- uses : Boshen/setup-rust@main
125
130
with :
126
131
cache-key : wasm
Original file line number Diff line number Diff line change 45
45
steps :
46
46
- uses : taiki-e/checkout-action@v1
47
47
48
+ # wasm bindgen breaks under rustc 1.82.0 wasm-bindgen 0.2.95
49
+ # https://github.com/rustwasm/wasm-bindgen/issues/4207
50
+ - run : sed -i ${{ (runner.os == 'macOS' && '""') || '' }} -e 's/82/81/g' rust-toolchain.toml
51
+
48
52
- uses : ./.github/actions/pnpm
49
53
50
54
- uses : Boshen/setup-rust@main
Original file line number Diff line number Diff line change 1
1
[toolchain ]
2
- channel = " 1.81 .0"
2
+ channel = " 1.82 .0"
3
3
profile = " default"
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ use super::TypeName;
14
14
15
15
#[ derive( Debug , Serialize ) ]
16
16
#[ serde( untagged) ]
17
+ #[ expect( clippy:: large_enum_variant) ]
17
18
pub enum TypeDef {
18
19
Struct ( StructDef ) ,
19
20
Enum ( EnumDef ) ,
You can’t perform that action at this time.
0 commit comments