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_device {
    ($m:ident) => {
        $m!(
            "device/reference",
            "Reference Device",
            "device-reference",
            Some(crate::runtime::reference_device::RECIPES),
            || Box::new(crate::runtime::reference_device::ReferenceDeviceLib)
        );
        $m!(
            "stream-device",
            "Stream Device",
            "device-reference",
            Some(crate::lib_stream_device::RECIPES),
            || Box::new(crate::lib_stream_device::DeviceStreamBaseLib)
        );
    };
}