summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-02-12 21:31:35 +0100
committerLaurenz <laurmaedje@gmail.com>2019-02-12 21:31:35 +0100
commit5a600eb354c65ec008cbf020e45705c2f401d669 (patch)
treeb61d6ae3168716ba198c5631934520053c4a57c4 /src/lib.rs
Move crate into workspace subfolder
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 00000000..2959925e
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,11 @@
+//! Typeset is a library for compiling _plain-text_ strings written in the
+//! corresponding typesetting language into a typesetted document in a
+//! file format like _PDF_.
+
+#![allow(unused)]
+
+pub mod parsing;
+pub mod doc;
+pub mod font;
+pub mod pdf;
+pub mod utility;