lambda-cat 0.1.0

Untyped lambda calculus interpreter built on comp-cat-rs. Lex, parse, and tree-walk evaluation expressed as Io effects with static dispatch and no panics.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "lambda-cat"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Untyped lambda calculus interpreter built on comp-cat-rs. Lex, parse, and tree-walk evaluation expressed as Io effects with static dispatch and no panics."
readme = "README.md"
keywords = [
    "lambda-calculus",
    "interpreter",
    "category-theory",
    "monad",
    "type-driven",
]
categories = [
    "development-tools",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"

[lib]
name = "lambda_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