[package]
edition = "2024"
name = "karpal-proof"
version = "0.6.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Algebraic law witnesses and refinement types for the Industrial Algebra ecosystem"
homepage = "https://github.com/Industrial-Algebra/Karpal"
readme = "README.md"
keywords = [
"hkt",
"functor",
"algebraic",
"category-theory",
"fp",
]
categories = [
"no-std",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/Industrial-Algebra/Karpal"
[features]
alloc = [
"karpal-core/alloc",
"karpal-algebra/alloc",
]
default = [
"std",
"derive",
]
derive = ["karpal-proof-derive"]
std = [
"alloc",
"karpal-core/std",
"karpal-algebra/std",
]
[lib]
name = "karpal_proof"
path = "src/lib.rs"
[[test]]
name = "derive_tests"
path = "tests/derive_tests.rs"
[dependencies.karpal-algebra]
version = "0.6.1"
default-features = false
[dependencies.karpal-core]
version = "0.6.1"
default-features = false
[dependencies.karpal-proof-derive]
version = "0.6.1"
optional = true
[dev-dependencies.proptest]
version = "1"