A very simple create that packages the Duktape C library for use in Rust.
Yes. They all seem to address slightly different needs so I've added to the pile. Sorry.
This currently includes version 2.3.0 of Duktape. To update it, replace the contents of the duktape-src
directory with new code, and also run:
bindgen duktape-src/duktape.h -o src/bindings.rs --whitelist-var=DUK_.* --whitelist-function=duk_.*
To regenerate the bindings (which may be necessary). Note that this doesn't happen as a build step because of the additional dependencies introduced by making everyone install bindgen.