| Crates.io | netsblox-extension-util |
| lib.rs | netsblox-extension-util |
| version | 0.2.7 |
| created_at | 2023-06-08 20:37:08.817441+00 |
| updated_at | 2024-10-09 16:13:31.134511+00 |
| description | Allows for automatic generation of a NetsBlox extension that uses WASM |
| homepage | https://github.com/gsteinLTU/netsblox-extension-rs |
| repository | |
| max_upload_size | |
| id | 885705 |
| size | 36,112 |
This crate provides a build script to automatically generate a WASM-based NetsBlox extension.
The netsblox-extension-macro crate provides a set of macros used to mark functions and structs used to generate the extension.
Example usage in build.rs:
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
netsblox_extension_util::build()
}
See https://github.com/gsteinLTU/netsblox-extension-rs for an example project using this crate.