sim-nest 0.1.25

The SIM constellation umbrella facade: one crate that re-exports the runtime kernel, codecs, number domains, and libraries behind features.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
macro_rules! cookbook_directory_watch {
    ($m:ident) => {
        $m!(
            "watch/sdk",
            "Watch SDK",
            "watch-modeled",
            Some(crate::runtime::watch::RECIPES),
            || Box::new(crate::runtime::watch::WatchStackLib)
        );
        $m!(
            "stream-wrist",
            "Worn Stream",
            "watch-modeled",
            Some(crate::lib_stream_wrist::RECIPES),
            || Box::new(crate::lib_stream_wrist::WristStreamLib)
        );
    };
}