harfbuzz / rustybuzz

A complete harfbuzz's shaping algorithm port to Rust
MIT License
551 stars 37 forks source link

unicode-script dependency needs to be bumped #35

Closed chris-morgan closed 3 years ago

chris-morgan commented 3 years ago

Currently it’s using unicode-script = "0.5", but src/unicode.rs is using four unicode_script::Script enum variants that are not present in 0.5.0: Chorasmian, Dives_Akuru, Khitan_Small_Script, Yezidi.

I haven’t checked 0.5.1, but they are present in 0.5.2.

Simplest patch is to bump it to "0.5.2".

RazrFalcon commented 3 years ago

Thanks!