Releases: superwall/cel-evaluator-rs
Releases · superwall/cel-evaluator-rs
0.1.12
0.1.11
0.1.10
0.1.9
0.1.9
Enhancements
- Added returning of a JSON encoded
Result<PassableValue,String>
from the exposed methods instead of relying on panics.
Example JSON:- Error:
{"Err":"No such key: should_display"}
- Ok:
{"Ok":{"type":"bool","value":true}}
- Error:
Fixes
- Fixed a bug where getting properties from
device
would panic whendevice
functions were defined
0.1.8
0.1.7
0.1.6
Changes
- Adds parse_to_ast method to transform expressions into AST
- Adds WASM compilation target and a bindgen wrapper
- Generates JS bindings for the methods and HostContext
- Adds a WASM target only non-concurrent HostContext
- Adds build script for both browser and node targets
- Adds usage examples