12 releases (6 breaking)

0.6.0 May 5, 2020
0.5.3 Apr 28, 2020
0.4.1 Apr 26, 2020
0.3.0 Apr 14, 2020
0.0.2 Mar 18, 2019

#19 in #foo

Download history 177/week @ 2024-11-29 251/week @ 2024-12-06 195/week @ 2024-12-13 189/week @ 2024-12-20 144/week @ 2024-12-27 171/week @ 2025-01-03 260/week @ 2025-01-10 255/week @ 2025-01-17 230/week @ 2025-01-24 470/week @ 2025-01-31 305/week @ 2025-02-07 201/week @ 2025-02-14 250/week @ 2025-02-21 307/week @ 2025-02-28 352/week @ 2025-03-07 428/week @ 2025-03-14

1,366 downloads per month
Used in 9 crates (via yarte_hir)

MIT/Apache

75KB
1.5K SLoC

v_eval Documentation Latest version

Expression evaluator with context

use v_eval::{Value, Eval};

fn main() -> Result<(), ()> {
    let e = Eval::default()
        .insert("foo", "true")?
        .insert("bar", "false")?;

    assert_eq!(e.eval("foo != bar").unwrap(), Value::Bool(true));
    assert_eq!(
        e.eval("true && foo != bar && true").unwrap(),
        Value::Bool(true)
    );
    assert_eq!(e.eval("1 == 1 != bar").unwrap(), Value::Bool(true));
    assert_eq!(e.eval("1 == 1 + 1 == bar").unwrap(), Value::Bool(true));
    
    Ok(())
}

Contributing

Please, contribute to v_eval! The more the better! Feel free to to open an issue and/or contacting directly with the owner for any request or suggestion.

Code of conduct

This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4

License

This project is distributed under the terms of both the Apache License (Version 2.0) and the MIT license, specified in LICENSE-APACHE and LICENSE-MIT respectively.

Dependencies

~3.5–4.5MB
~91K SLoC