summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-10-21 20:21:49 -0400
committerMicha White <botahamec@outlook.com>2022-10-21 20:21:49 -0400
commitd8e633093c4f1728900354ae790b088c61b06615 (patch)
tree5bf56439580a9a9bfadeb01e1b313529cb1111e8
parent9950ae8d49d692f698dfafd544748df2bced6d7d (diff)
alligator 0.0.1
-rw-r--r--Cargo.toml9
-rw-r--r--src/lib.rs1
2 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f5f9bfb..5aa3546 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,3 +1,12 @@
+[package]
+name = "alligator"
+version = "0.0.1"
+edition = "2021"
+rust-version = "1.65"
+
+[dependencies]
+alligator_render = {path = "alligator_render"}
+
[workspace]
members = ["alligator_render"]
resolver = "2" \ No newline at end of file
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..cdfa927
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1 @@
+pub use alligator_render as render;