Skip to content

Commit

Permalink
Fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthetechie committed Feb 11, 2024
1 parent 2790801 commit f2dfb57
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build_pbf_glyphs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "build_pbf_glyphs"
version = "1.4.1"
version = "1.4.2"
description = "A CLI utility for generating protobuf-encoded SDF font glyphs from original source fonts."
readme = "README.md"
keywords = ["sdf", "protobuf", "fonts"]
Expand Down
2 changes: 1 addition & 1 deletion pbf_font_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbf_font_tools"
version = "2.5.0"
version = "2.5.1"
description = "Tools for working with SDF font glyphs encoded in protobuf format."
readme = "README.md"
keywords = ["sdf", "protobuf", "fonts"]
Expand Down
2 changes: 1 addition & 1 deletion pbf_font_tools/src/ft_generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub fn glyph_range_for_face(
cutoff: f64,
) -> Result<Fontstack, PbfFontError> {
let Some(mut family_name) = face.family_name() else {
return Err(PbfFontError::MissingFontFamilyName)?;
return Err(PbfFontError::MissingFontFamilyName);
};
if let Some(style_name) = face.style_name() {
family_name.push(' ');
Expand Down
2 changes: 1 addition & 1 deletion sdf_glyph_renderer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdf_glyph_renderer"
version = "1.0.0"
version = "1.0.1"
description = "Tools for generating SDF font glyphs from bitmap images."
readme = "README.md"
keywords = ["sdf", "fonts", "glyphs"]
Expand Down

0 comments on commit f2dfb57

Please sign in to comment.