diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c65557..e45f296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.23.0 +* Update _ttf-parser_ to `0.23.0`, [changelog](https://github.com/RazrFalcon/ttf-parser/blob/master/CHANGELOG.md#0230---2024-07-02). +* Remove feature `no-std-float`. + # 0.22.0 * Update _ttf-parser_ to `0.22.0`, [changelog](https://github.com/RazrFalcon/ttf-parser/blob/master/CHANGELOG.md#0220---2024-06-29). * Use of feature `no-std-float` is required for no-std builds. diff --git a/Cargo.toml b/Cargo.toml index debd9d3..d7fa3fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "owned_ttf_parser" # Version should be inline with ttf-parser -version = "0.22.0" +version = "0.23.0" authors = ["Alex Butler "] edition = "2021" description = "ttf-parser plus support for owned data" @@ -11,13 +11,12 @@ license = "Apache-2.0" readme = "README.md" [dependencies] -ttf-parser = { version = "0.22", default-features = false } +ttf-parser = { version = "0.23", default-features = false } [features] default = ["std", "opentype-layout", "apple-layout", "variable-fonts", "glyph-names"] # Activates usage of std. std = ["ttf-parser/std"] -no-std-float = ["ttf-parser/no-std-float"] # Enables variable fonts support. Increases binary size almost twice. # Includes avar, CFF2, fvar, gvar, HVAR, MVAR and VVAR tables. variable-fonts = ["ttf-parser/variable-fonts"] diff --git a/test b/test index 9d23ba9..d1dcfe2 100755 --- a/test +++ b/test @@ -9,7 +9,7 @@ echo "==> test" cargo test echo "==> no_std" -cargo build --target thumbv6m-none-eabi --no-default-features --features "no-std-float variable-fonts opentype-layout glyph-names" +cargo build --target thumbv6m-none-eabi --no-default-features --features "variable-fonts opentype-layout glyph-names" echo "==> rustfmt" cargo fmt -- --check