Skip to content

Commit 8f2ee00

Browse files
committed
crates.io version
1 parent f14781c commit 8f2ee00

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[package]
22
name = "glifparser"
3-
version = "1.2.4"
3+
version = "1.2.5"
44
authors = ["Fredrick Brennan <copypaste@kittens.ph>", "MFEK Authors"]
55
edition = "2021"
66
license = "Apache-2.0"
77
keywords = ["glif", "parsers", "ufo-format", "fonts"]
8+
# crates.io
9+
description = "A parser and writer for UFO `.glif` files"
10+
repository = "https://github.com/MFEK/glifparser.rlib"
811

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

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

2831
[dev-dependencies]
2932
env_logger = "0.9"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# glifparser v1.2.4 (⏫︎2022-11-24)
1+
# glifparser v1.2.5 (⏫︎2022-12-13)
22

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

src/glif/write.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ impl<PD: PointData> IntoXML for Glif<PD> {
9292
Lib::Plist(lib_node) => {
9393
let mut plist_buf: Vec<u8> = vec![];
9494
match plist::to_writer_xml(&mut plist_buf, &lib_node).map(|()|Element::parse(plist_buf.as_slice())) {
95-
Ok(Ok(plib)) => (plib),
95+
Ok(Ok(plib)) => plib,
9696
Ok(Err(e)) => {
9797
log::error!("Failed to write .glif <lib> as an inline plist. xmltree error: {:?}.", e);
9898
return glyph

0 commit comments

Comments
 (0)