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

#761 in Programming languages

Download history 5/week @ 2024-02-25 155/week @ 2024-03-31

155 downloads per month

MIT license

26KB
542 lines

wren-rust Crates.io Documentation

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:

  1. Functions that retrieve slot values will perform type checking and return an Option.
  2. wrenEnsureSlots is called automatically when setting slot values.
  3. Most functions validate their parameters before calling Wren.

Dependencies

~42KB