[package]
edition = "2024"
rust-version = "1.88"
name = "lambda_calculus"
version = "3.5.0"
authors = ["ljedrz <ljedrz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple, zero-dependency implementation of pure lambda calculus in Safe Rust"
documentation = "https://docs.rs/lambda_calculus"
readme = "README.md"
keywords = [
"lambda",
"calculus",
"functional",
"mathematics",
"combinators",
]
license = "CC0-1.0"
repository = "https://github.com/ljedrz/lambda_calculus"
[features]
backslash_lambda = []
default = ["encoding"]
encoding = []
[lib]
name = "lambda_calculus"
crate-type = ["lib"]
path = "src/lib.rs"
[[test]]
name = "lists"
path = "tests/lists.rs"
[[test]]
name = "num"
path = "tests/num.rs"
[[test]]
name = "option"
path = "tests/option.rs"
[[test]]
name = "pair_list"
path = "tests/pair_list.rs"
[[test]]
name = "parse_error"
path = "tests/parse_error.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "reduction"
path = "tests/reduction.rs"
[[test]]
name = "signed"
path = "tests/signed.rs"
[[test]]
name = "term_error"
path = "tests/term_error.rs"