emlex 0.1.0

A zero-cost S-expression mathematical DSL engine for Rust. Provides compile-time evaluation, AST preservation, optimization, and reverse DSL reconstruction.
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 = "2021"
name = "emlex"
version = "0.1.0"
authors = ["Rhetro <rhetro@rhetroxc.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-cost S-expression mathematical DSL engine for Rust. Provides compile-time evaluation, AST preservation, optimization, and reverse DSL reconstruction."
readme = "README.md"
keywords = [
    "dsl",
    "macro",
    "s-expression",
    "math",
    "ast",
]
categories = [
    "development-tools",
    "compilers",
    "mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rhetro/emlex"

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

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

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

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

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

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

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

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

[dependencies.num-complex]
version = "0.4"

[dev-dependencies.trybuild]
version = "1.0"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"