# 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 = "2021" name = "lamcalc" version = "1.2.0" exclude = [ "/pkg", "/web", "/scripts", ] description = "A library for creating, parsing and evaluating lambda calculus" homepage = "https://sshwy.github.io/lamcalc/" documentation = "https://docs.rs/lamcalc/" readme = "README.md" keywords = [ "lambda_calculus", "De_Bruijn_encoding", "parser", ] categories = [ "parser-implementations", "wasm", ] license = "MIT" repository = "https://github.com/sshwy/lamcalc" [package.metadata.docs.rs] features = ["wasm"] [profile.release] lto = true [lib] crate-type = [ "cdylib", "rlib", ] [[example]] name = "y_combinator" path = "examples/y_combinator.rs" [[example]] name = "parser" path = "examples/parser.rs" [[example]] name = "church_encoding" path = "examples/church_encoding.rs" [[example]] name = "beta_reduce" path = "examples/beta_reduce.rs" [[example]] name = "eta_reduce" path = "examples/eta_reduce.rs" [dependencies.pest] version = "2" [dependencies.pest_derive] version = "2" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde-wasm-bindgen] version = "0.4" optional = true [dependencies.wasm-bindgen] version = "0.2" optional = true [dependencies.web-sys] version = "0.3" features = ["console"] optional = true [features] experimental = [] wasm = [ "serde", "serde-wasm-bindgen", "wasm-bindgen", "web-sys", ]