fp-library 0.4.1

A functional programming library for Rust featuring your favourite higher-kinded types and type classes.
Documentation
[[bench]]
harness = false
name = "benchmarks"
path = "benches/benchmarks.rs"

[dependencies.fp-macros]
version = "0.2"

[dependencies.rayon]
optional = true
version = "1.11"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"

[dev-dependencies.quickcheck]
version = "1.0"

[dev-dependencies.quickcheck_macros]
version = "1.1"

[dev-dependencies.trybuild]
version = "1.0"

[features]
default = []
rayon = ["dep:rayon"]

[lib]
name = "fp_library"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures", "rust-patterns"]
description = "A functional programming library for Rust featuring your favourite higher-kinded types and type classes."
edition = "2024"
keywords = ["functional", "higher-kinded", "hkt", "types"]
license = "BlueOak-1.0.0"
name = "fp-library"
readme = "README.md"
repository = "https://github.com/nothingnesses/rust-fp-library"
version = "0.4.1"

[package.metadata.docs.rs]
all-features = true

[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "thread_safety"
path = "tests/thread_safety.rs"