aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..4b3dfa4
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,14 @@
+[package]
+name = "higher-free-macro"
+version = "0.0.1"
+edition = "2021"
+authors = ["Andreas Grois"]
+rust-version = "1.66.1"
+description = "A macro that allows to conjure a Free Monad for every Functor. This builds on the traits from the higher crate, and re-exports said crate."
+repository = "https://github.com/soulsource/higher-free-macro"
+license = "MPL-2.0+"
+keywords = ["functor", "applicative", "monad", "category-theory", "haskell"]
+
+[dependencies]
+higher = "0.2"
+paste = "1.0"