sim-nest 0.2.1

The SIM constellation umbrella facade: one crate that re-exports the runtime kernel, codecs, number domains, and libraries behind features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg(feature = "javascript")]

mod recipe {
    include!(concat!(
        env!("CARGO_MANIFEST_DIR"),
        "/recipes/javascript/bounded-module/setup.rs"
    ));
}

#[test]
fn bounded_javascript_module_recipe_runs() {
    recipe::bounded_javascript_module().expect("JavaScript SDK recipe should pass");
}