[package] name = "higher" version = "0.2.0" edition = "2021" rust-version = "1.65" authors = ["Bodil Stokke "] license = "MPL-2.0+" description = "Functors, Applicatives, Monads and other bad ideas" repository = "https://github.com/bodil/higher" documentation = "http://docs.rs/higher" readme = "../README.md" categories = ["data-structures"] keywords = ["functor", "applicative", "monad", "category-theory", "haskell"] exclude = ["release.toml"] [features] default = ["std", "effect", "io"] std = [] effect = ["futures"] io = ["std", "futures"] test = ["std"] [dependencies] higher-derive = "0.2.0" futures = { version = "0.3.25", optional = true, features = ["thread-pool"] }