File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2626 - name : Build with std
2727 run : cargo build
2828
29- - name : MSRV Build (Rust 1.80 )
30- run : cargo +1.80 build
29+ - name : MSRV Build (Rust 1.82 )
30+ run : cargo +1.82 build
3131
3232 - name : Run tests
3333 run : cargo test --verbose
Original file line number Diff line number Diff line change 22name = " harfrust"
33version = " 0.3.0"
44edition = " 2021"
5- rust-version = " 1.80 " # should match https://github.com/googlefonts/fontations/blob/main/Cargo.toml
5+ rust-version = " 1.82 " # should match https://github.com/googlefonts/fontations/blob/main/Cargo.toml
66description = " A complete HarfBuzz shaping algorithm port to Rust."
77repository = " https://github.com/harfbuzz/harfrust"
88license = " MIT"
Original file line number Diff line number Diff line change @@ -494,7 +494,7 @@ impl IndicShapePlan {
494494 && plan
495495 . ot_map
496496 . chosen_script ( TableIndex :: GSUB )
497- . map_or ( true , |tag| tag. to_be_bytes ( ) [ 3 ] != b'2' ) ;
497+ . is_none_or ( |tag| tag. to_be_bytes ( ) [ 3 ] != b'2' ) ;
498498
499499 // Use zero-context would_substitute() matching for new-spec of the main
500500 // Indic scripts, and scripts with one spec only, but not for old-specs.
You can’t perform that action at this time.
0 commit comments