66 releases (36 breaking)

0.39.0 Dec 31, 2024
0.37.2 Dec 11, 2024
0.35.0 Nov 28, 2024
0.24.2 Jul 17, 2024
0.8.0 Jul 28, 2023

#99 in Date and time

Download history 824/week @ 2024-09-21 925/week @ 2024-09-28 623/week @ 2024-10-05 494/week @ 2024-10-12 237/week @ 2024-10-19 278/week @ 2024-10-26 105/week @ 2024-11-02 132/week @ 2024-11-09 430/week @ 2024-11-16 272/week @ 2024-11-23 592/week @ 2024-11-30 756/week @ 2024-12-07 194/week @ 2024-12-14 237/week @ 2024-12-21 306/week @ 2024-12-28 218/week @ 2025-01-04

984 downloads per month
Used in 2 crates

MIT license

285KB
7K SLoC

A lightweight expression language designed for the evaluation of expressions in various contexts.

Zen Expression is a versatile single-threaded expression language designed for simplicity high-performance. It's primarily used for evaluating and processing JSON data offers key components that empower developers in creating responsive and non-blocking I/O applications Out of the box, it comes with amazing benefits:

  • 🚀 Blazingly fast - Perform millions of evaluations per second
  • 🧠 Intuitive syntax - Minimalistic and expressive syntax
  • 💼 Portable - Can be compiled for all standard architectures including WASM

For a full list of language references, visit documentation.

Example

Evaluate expression using isolate:

use zen_expression::evaluate_expression;
use zen_expression::variable::Variable;
use rust_decimal_macros::dec;
use serde_json::json;

fn main() {
    let context = json!({ "tax": { "percentage": 10 } });
    let tax_amount = evaluate_expression("50 * tax.percentage / 100", context.into()).unwrap();

    assert_eq!(tax_amount, Variable::Number(dec!(5)));
}

High Performance

When evaluating a lot of expressions at once, you can use Isolate directly. Under the hood, Isolate will re-use allocated memory from previous evaluations, drastically improving performance.

use zen_expression::Isolate;
use zen_expression::variable::Variable;
use rust_decimal_macros::dec;
use serde_json::json;

fn main() {
    let context = json!({ "tax": { "percentage": 10 } });
    let mut isolate = Isolate::with_environment(context.into());

    // Fast 🚀
    for _ in 0..1_000 {
        let tax_amount = isolate.run_standard("50 * tax.percentage / 100").unwrap();
        assert_eq!(tax_amount, Variable::Number(dec!(5)));
    }
}

Feature flags

Name Description Default?
regex-deprecated Uses standard regex crate Yes
regex-lite Opts for usage of lightweight regex-lite crate. Useful for reducing build size, especially in WASM. No

Dependencies

~3–5MB
~87K SLoC