[package]
name = "lambda-throw-cat"
version = "0.1.0"
edition = "2024"
description = "Lambda calculus with records, prototype chains, ref cells, GC, and non-local control flow via throw/try/catch. Outcome::Normal/Thrown is threaded purely-functionally through every reduction. Spike 4 of a web-engine reformulation targeting Tauri."
license = "MIT OR Apache-2.0"
keywords = ["lambda-calculus", "interpreter", "exceptions", "garbage-collector", "type-driven"]
categories = ["development-tools", "parser-implementations"]
[dependencies]
comp-cat-rs = "0.5"
[dev-dependencies]
proptest = "1"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
needless_pass_by_value = "warn"
manual_map = "warn"