[package]
edition = "2024"
name = "lambda-ref-cat"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lambda calculus with mutable reference cells and a pure-functional mark-sweep garbage collector, built on comp-cat-rs. Spike 2 of a web-engine reformulation targeting Tauri."
readme = "README.md"
keywords = [
"lambda-calculus",
"interpreter",
"garbage-collector",
"category-theory",
"type-driven",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
[lib]
name = "lambda_ref_cat"
path = "src/lib.rs"
[[test]]
name = "eval"
path = "tests/eval.rs"
[dependencies.comp-cat-rs]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
manual_map = "warn"
needless_pass_by_value = "warn"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1