[package]
edition = "2024"
rust-version = "1.88"
name = "blc"
version = "0.7.0"
authors = ["ljedrz <ljedrz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of the binary lambda calculus."
documentation = "https://docs.rs/blc"
readme = "README.md"
keywords = [
"lambda",
"calculus",
"church",
"functional",
"binary",
]
categories = ["encoding"]
license = "CC0-1.0"
repository = "https://github.com/ljedrz/blc"
[lib]
name = "blc"
path = "src/lib.rs"
[[test]]
name = "deflate"
path = "tests/deflate.rs"
[[test]]
name = "fizzbuzz"
path = "tests/fizzbuzz.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "inflate"
path = "tests/inflate.rs"
[[test]]
name = "repeat"
path = "tests/repeat.rs"
[[test]]
name = "sort"
path = "tests/sort.rs"
[dependencies.lambda_calculus]
version = "3.5"