Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ core_maths = "0.1"
# default-features enabled by `skrifa`. Other crates using `read-fonts`
# that want default features will have to enable them directly.
font-test-data = { path = "font-test-data" }
font-types = { version = "0.10.1", path = "font-types" }
read-fonts = { version = "0.36.0", path = "read-fonts", default-features = false }
font-types = { version = "0.11.0", path = "font-types" }
read-fonts = { version = "0.37.0", path = "read-fonts", default-features = false }
# Disable default-features so that fauntlet can use skrifa without autohint
# shaping support
skrifa = { version = "0.39.0", path = "skrifa", default-features = false, features = ["std"] }
write-fonts = { version = "0.44.1", path = "write-fonts" }
skrifa = { version = "0.40.0", path = "skrifa", default-features = false, features = ["std"] }
write-fonts = { version = "0.45.0", path = "write-fonts" }
shared-brotli-patch-decoder = { version = "0.1.0", path = "shared-brotli-patch-decoder", default-features = false }
incremental-font-transfer = { version = "0.1.0", path = "incremental-font-transfer" }
klippa = { version = "0.1.0", path = "klippa" }
Expand Down
2 changes: 1 addition & 1 deletion font-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "font-types"
version = "0.10.1"
version = "0.11.0"
description = "Scalar types used in fonts."
readme = "README.md"
categories = ["text-processing"]
Expand Down
2 changes: 1 addition & 1 deletion read-fonts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "read-fonts"
version = "0.36.0"
version = "0.37.0"
description = "Reading OpenType font files."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
Expand Down
2 changes: 1 addition & 1 deletion skrifa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skrifa"
version = "0.39.0"
version = "0.40.0"
description = "Metadata reader and glyph scaler for OpenType fonts."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
Expand Down
2 changes: 1 addition & 1 deletion write-fonts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "write-fonts"
version = "0.44.1"
version = "0.45.0"
description = "Writing font files."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
Expand Down
Loading