aether-azathoth 0.5.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.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.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.serde_json]
version = "1.0.149"

[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"

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

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

[features]
async = ["tokio"]
default = []

[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-azathoth/latest/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.5.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 = "ast_tests"
path = "tests/ast_tests.rs"

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

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

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

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

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

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

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

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

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

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

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

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

[[test]]
name = "lib_tests"
path = "tests/lib_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 = "module_system_tests"
path = "tests/module_system_tests.rs"

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

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

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

[[test]]
name = "sandbox_tests"
path = "tests/sandbox_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 = "stdlib_tests"
path = "tests/stdlib_tests.rs"

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

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

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

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

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