netsblox-extension-util

Crates.ionetsblox-extension-util
lib.rsnetsblox-extension-util
version0.2.7
sourcesrc
created_at2023-06-08 20:37:08.817441
updated_at2024-10-09 16:13:31.134511
descriptionAllows for automatic generation of a NetsBlox extension that uses WASM
homepagehttps://github.com/gsteinLTU/netsblox-extension-rs
repository
max_upload_size
id885705
size36,112
Gordon Stein (gsteinLTU)

documentation

README

netsblox-extension-util

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.

Commit count: 0

cargo fmt