aether-azathoth 0.4.2

A lightweight, embeddable domain-specific language (DSL) interpreter with rich standard library
Documentation
[[bin]]
name = "aether"
path = "src/main.rs"

[build-dependencies.cbindgen]
version = "0.29.2"

[dependencies.calamine]
version = "0.32.0"

[dependencies.chrono]
version = "0.4"

[dependencies.crossbeam]
version = "0.8"

[dependencies.lazy_static]
version = "1.4"

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

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

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

[dependencies.pyo3]
features = ["auto-initialize"]
optional = true
version = "0.27.2"

[dependencies.rust_xlsxwriter]
version = "0.92.2"

[dependencies.serde_json]
version = "1.0.148"

[dependencies.tokio]
features = ["rt", "sync"]
optional = true
version = "1.49.0"

[dependencies.ureq]
version = "3.1.4"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8.1"

[dev-dependencies.tokio]
features = ["full"]
version = "1.49.0"

[[example]]
name = "async_demo"
path = "examples/async_demo.rs"
required-features = ["async"]

[[example]]
name = "engine_modes"
path = "examples/engine_modes.rs"

[features]
async = ["tokio"]
default = ["pytranspile"]
pytranspile = ["dep:pyo3"]

[lib]
crate-type = ["cdylib", "rlib", "staticlib"]
doctest = false
name = "aether"
path = "src/lib.rs"

[package]
authors = ["xiaozuhui <xiaozuhui@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["parser-implementations", "development-tools", "embedded"]
description = "A lightweight, embeddable domain-specific language (DSL) interpreter with rich standard library"
documentation = "https://docs.rs/aether"
edition = "2024"
exclude = ["target/*", ".git/*", ".github/*", "benches/*", "examples/*.aether", "docs/*"]
homepage = "https://github.com/xiaozuhui/aether"
keywords = ["dsl", "interpreter", "scripting", "embedded", "language"]
license = "Apache-2.0"
name = "aether-azathoth"
readme = "README.md"
repository = "https://github.com/xiaozuhui/aether"
version = "0.4.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3

[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3.83"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.106"

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

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

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

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

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

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

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

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

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

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

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