lambda_calculus 3.5.0

A simple, zero-dependency implementation of pure lambda calculus in Safe Rust
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"
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"