diff options
| author | Andreas Grois <andi@grois.info> | 2023-03-05 21:25:17 +0100 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2023-03-05 21:40:53 +0100 |
| commit | 0c3b291b95bf41cb1887d83fa4d43fa21b375332 (patch) | |
| tree | 381cb490f4f27c151363aa3dc688c20e261b6b61 /Cargo.toml | |
Initial commit.
The code is kinda working, but it's missing documentation and tests.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
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" |
