[package]
edition = "2021"
name = "rusty-hkt"
version = "0.1.0"
authors = ["Voltaged <rusindanilo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Higher-kinded types for Rust"
documentation = "https://docs.rs/rusty-hkt"
readme = "README.md"
keywords = [
"higher-kinded-types",
"functional",
"no_std",
"generic",
"types",
]
categories = [
"no-std",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/voltageddebunked/rusty-hkt"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "rusty_hkt"
path = "src/lib.rs"
[features]
alloc = []
default = ["alloc"]