From 0c3b291b95bf41cb1887d83fa4d43fa21b375332 Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Sun, 5 Mar 2023 21:25:17 +0100 Subject: Initial commit. The code is kinda working, but it's missing documentation and tests. --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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" -- cgit v1.2.3