File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -13,20 +13,20 @@ cargo fmt --check
13
13
echo Build with default features
14
14
build
15
15
16
- echo Build with no default features
17
- build --no-default-features
16
+ echo Build with only no_std feature
17
+ build --no-default-features --features no_std
18
18
19
19
echo Build with only std feature
20
20
build --no-default-features --features std
21
21
22
- echo Build with only swash feature
23
- build --no-default-features --features swash
22
+ echo Build with only std and swash features
23
+ build --no-default-features --features std, swash
24
24
25
- echo Build with only syntect feature
26
- build --no-default-features --features syntect
25
+ echo Build with only std and syntect features
26
+ build --no-default-features --features std, syntect
27
27
28
- echo Build with only vi feature
29
- build --no-default-features --features vi
28
+ echo Build with only std and vi features
29
+ build --no-default-features --features std, vi
30
30
31
31
echo Build with all features
32
32
build --all-features
You can’t perform that action at this time.
0 commit comments