Skip to content

Commit

Permalink
crates.io version
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlcctrlv committed Dec 13, 2022
1 parent f14781c commit 8f2ee00
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
[package]
name = "glifparser"
version = "1.2.4"
version = "1.2.5"
authors = ["Fredrick Brennan <copypaste@kittens.ph>", "MFEK Authors"]
edition = "2021"
license = "Apache-2.0"
keywords = ["glif", "parsers", "ufo-format", "fonts"]
# crates.io
description = "A parser and writer for UFO `.glif` files"
repository = "https://github.com/MFEK/glifparser.rlib"

[dependencies]
derive_more = "0.99"
Expand All @@ -13,7 +16,7 @@ xmltree = { version = "0.10", features = ["attribute-order"] }
log = "0.4"
kurbo = { version = "0.9", default-features = false }
trees = "0.4"
skia-safe = { version = "*", optional = true }
skia-safe = { version = ">0.0", optional = true }
image = { version = "0.24", features = ["png"], default-features = false, optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
plist = "1.3"
Expand All @@ -23,7 +26,7 @@ float-cmp = "0.9"

# Our submodules
# The default feature is serde, dep:serde syntax still (Oct '21) not stabilized
integer_or_float = { version = "0.1.5", default-features = false, features = ["hash", "float-cmp"] }
integer_or_float = { version = "0.1.5-1", default-features = false, features = ["hash", "float-cmp"] }

[dev-dependencies]
env_logger = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# glifparser v1.2.4 (⏫︎2022-11-24)
# glifparser v1.2.5 (⏫︎2022-12-13)

(c) 2020–2022 Fredrick R. Brennan and MFEK Authors

Expand Down
2 changes: 1 addition & 1 deletion src/glif/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl<PD: PointData> IntoXML for Glif<PD> {
Lib::Plist(lib_node) => {
let mut plist_buf: Vec<u8> = vec![];
match plist::to_writer_xml(&mut plist_buf, &lib_node).map(|()|Element::parse(plist_buf.as_slice())) {
Ok(Ok(plib)) => (plib),
Ok(Ok(plib)) => plib,
Ok(Err(e)) => {
log::error!("Failed to write .glif <lib> as an inline plist. xmltree error: {:?}.", e);
return glyph
Expand Down

0 comments on commit 8f2ee00

Please sign in to comment.