File tree 3 files changed +47
-0
lines changed
3 files changed +47
-0
lines changed Original file line number Diff line number Diff line change @@ -558,6 +558,26 @@ jobs:
558
558
- run : rustup update --no-self-update 1.57 && rustup default 1.57 && rustup target add ${{ matrix.target }}
559
559
- run : cargo build --target ${{ matrix.target }} ${{ matrix.features }}
560
560
561
+ 2018 :
562
+ name : Check edition 2018 compatibility
563
+ runs-on : ubuntu-latest
564
+ strategy :
565
+ fail-fast : false
566
+ matrix :
567
+ target :
568
+ - x86_64-unknown-linux-gnu
569
+ - wasm32-unknown-unknown
570
+ features :
571
+ - --no-default-features
572
+ - " "
573
+ defaults :
574
+ run :
575
+ working-directory : crates/msrv/2018
576
+ steps :
577
+ - uses : actions/checkout@v4
578
+ - run : rustup update --no-self-update 1.57 && rustup default 1.57 && rustup target add ${{ matrix.target }}
579
+ - run : cargo build --target ${{ matrix.target }} ${{ matrix.features }}
580
+
561
581
msrv-cli :
562
582
name : Check MSRV for CLI tools
563
583
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ edition = " 2018"
3
+ name = " edition-2018-test"
4
+ publish = false
5
+ version = " 0.0.0"
6
+
7
+ [features ]
8
+ default = [" std" ]
9
+ std = [
10
+ " wasm-bindgen/std" ,
11
+ " js-sys/std" ,
12
+ " wasm-bindgen-futures/std" ,
13
+ " web-sys/std" ,
14
+ " wasm-bindgen-test/std" ,
15
+ ]
16
+
17
+ [dependencies ]
18
+ js-sys = { path = " ../../js-sys" , default-features = false }
19
+ wasm-bindgen = { path = " ../../../" , default-features = false }
20
+ wasm-bindgen-futures = { path = " ../../futures" , default-features = false }
21
+ wasm-bindgen-test = { path = " ../../test" , default-features = false }
22
+ web-sys = { path = " ../../web-sys" , default-features = false }
23
+
24
+ # Pinned sub-dependencies for MSRV
25
+ bumpalo = " =3.12.0"
26
+ log = " =0.4.18"
27
+ scoped-tls = { version = " =1.0.0" , optional = false }
You can’t perform that action at this time.
0 commit comments