aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rwxr-xr-xsrc/lib.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100755
index 0000000..821bdeb
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,18 @@
+#![no_std]
+
+pub mod cirque;
+pub mod logger;
+
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn pass() {
+ assert!(0 == 0);
+ }
+
+ #[test]
+ #[should_panic]
+ fn fail() {
+ assert!(1 == 0);
+ }
+}