12 releases
Uses old Rust 2015
0.1.12 | Jun 30, 2017 |
---|---|
0.1.11 | Jun 27, 2017 |
0.1.3 | Apr 14, 2015 |
0.1.0 | Jan 6, 2015 |
#912 in Programming languages
26KB
542 lines
wren-rust
Rust bindings to the Wren scripting language API.
Crate documentation is somewhat lacking at the moment.
For complete documentation on each type and function, refer to wren.h
in the official Wren repository.
Wren is still under heavy development. I'll do my best to keep these bindings up-to-date as new features are added. If you notice a missing feature, feel free to create an issue or pull request.
Safety
Wren doesn't do any kind of validation outside of a few assertions in debug builds. This means it's very easy to get Undefined Behavior in release builds if you're not careful (especially when processing arbitrary scripts).
Most functions in this crate include additional safety features to help avoid these problems. In particular:
- Functions that retrieve slot values will perform type checking and return an Option.
wrenEnsureSlots
is called automatically when setting slot values.- Most functions validate their parameters before calling Wren.
Dependencies
~43KB