summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-09-17 18:41:21 -0400
committerMicha White <botahamec@outlook.com>2022-09-17 18:41:21 -0400
commita005620119b9c1d18c750552d0a707f36f407ea1 (patch)
treeddbc39c56189a1818a80440e2233e95a06df6db2 /src/lib.rs
renderer stuff
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..a902878
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,9 @@
+#![feature(let_else)]
+#![feature(nonzero_min_max)]
+#![warn(clippy::pedantic)]
+#![warn(clippy::nursery)]
+#![allow(clippy::module_name_repetitions)]
+
+pub mod renderer;
+
+pub use renderer::Renderer;