apiel 0.2.0

A subset of the APL programming language implemented in Rust. Exports a macro for evaluating APL expressions from Rust code, providing a way to solve some problems in a very concise manner.
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 = "apiel"
version = "0.2.0"
authors = ["Mark Firman <markfirmanwork@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A subset of the APL programming language implemented in Rust. Exports a macro for evaluating APL expressions from Rust code, providing a way to solve some problems in a very concise manner."
homepage = "https://github.com/NamesMark/apiel"
readme = "README.md"
keywords = [
    "apl",
    "array",
    "interpreter",
    "language",
    "math",
]
categories = [
    "mathematics",
    "compilers",
]
license = "MIT"
repository = "https://github.com/NamesMark/apiel/apiel"
resolver = "2"

[features]

[lib]
name = "apiel"
path = "src/lib.rs"

[[test]]
name = "reference"
path = "tests/reference.rs"

[dependencies.cfgrammar]
version = "0.13.10"

[dependencies.conv]
version = "0.3.3"

[dependencies.eyre]
version = "0.6.12"

[dependencies.lrlex]
version = "0.13.10"

[dependencies.lrpar]
version = "0.13.10"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.rand]
version = "0.8.5"

[dependencies.tracing]
version = "0.1.44"

[build-dependencies.cfgrammar]
version = "0.13.10"

[build-dependencies.lrlex]
version = "0.13.10"

[build-dependencies.lrpar]
version = "0.13.10"