diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-24 20:12:00 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-24 23:43:51 +0200 |
| commit | 6f84cf3c225c80a131fc6b0ab46749331306bc9d (patch) | |
| tree | 860805754daf2967424daf54192458d45f33b3bd /src/export/mod.rs | |
| parent | 7a2e3c80b5a6c0497ea062bce2714c0dfc300dd2 (diff) | |
Basic subsetting architecture
Constructs a brand new font file where only necessary tables are contained.
Diffstat (limited to 'src/export/mod.rs')
| -rw-r--r-- | src/export/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/export/mod.rs b/src/export/mod.rs index 5ed0abf9..d3836859 100644 --- a/src/export/mod.rs +++ b/src/export/mod.rs @@ -1,5 +1,7 @@ //! Exporting into external formats. mod pdf; +mod subset; pub use pdf::*; +pub use subset::*; |
