sim-nest 0.2.0

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 = "typescript")]

mod recipe {
    include!(concat!(
        env!("CARGO_MANIFEST_DIR"),
        "/recipes/typescript-notation/admitted-notation/setup.rs"
    ));
}

#[test]
fn admitted_typescript_notation_recipe_runs() {
    recipe::admitted_typescript_notation().expect("TypeScript notation SDK recipe should pass");
}