qjs is an experimental Rust binding for the QuickJS Javascript Engine
qjs
To use qjs in your project, add the following to your Cargo.toml:
toml [dependencies] qjs = "0.1"
```rust let v: Option = qjs::eval("1+2").unwrap();
assert_eq!(v, Some(3)); ```