[package]
edition = "2021"
rust-version = "1.82"
name = "funcmap"
version = "0.1.7"
authors = ["Matthias Stemmler <matthias.stemmler@gmail.com>"]
build = false
include = [
"examples/**/*",
"src/**/*",
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"crates-io.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derivable functorial mappings for Rust"
readme = "crates-io.md"
keywords = [
"data",
"derive",
"macro",
"map",
"no_std",
]
categories = [
"algorithms",
"data-structures",
"development-tools",
"no-std",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/matthias-stemmler/funcmap"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "funcmap"
path = "src/lib.rs"
[[example]]
name = "fallible"
path = "examples/fallible.rs"
[[example]]
name = "multi_param"
path = "examples/multi_param.rs"
[[example]]
name = "relative"
path = "examples/relative.rs"
[[example]]
name = "to_owned"
path = "examples/to_owned.rs"
[dependencies.funcmap_derive]
version = "=0.1.7"