Skip to content

Commit

Permalink
Fixup breakage between two outstanding PRs
Browse files Browse the repository at this point in the history
This has now happened twice, so I'm inclined to turn on the setting that
requires branches to be up to date in order to be mergeable.

This also adds the missing 'read' feature to write-fonts :o
  • Loading branch information
cmyr committed Aug 2, 2023
1 parent 7395486 commit 7a91225
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions write-fonts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ categories = ["text-processing", "parsing", "graphics"]

[features]
default = ["dot2"]
read = []

[dependencies]
font-types = { version = "0.3.4", path = "../font-types" }
Expand Down
2 changes: 1 addition & 1 deletion write-fonts/src/font_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use std::collections::BTreeMap;
use std::{borrow::Cow, fmt::Display};

use read::{FontRef, TableProvider};
use read_fonts::{FontRef, TableProvider};
use types::{Tag, TT_SFNT_VERSION};

include!("../generated/generated_font.rs");
Expand Down

0 comments on commit 7a91225

Please sign in to comment.