cu29-derive 0.15.0

This is the copper project runtime generator. It cannot be used independently from the copper project.
Documentation
(
    tasks: [
        (
            id: "src",
            type: "MultiSource",
            run_in_sim: true,
        ),
        (
            id: "sink",
            type: "IntSink",
            run_in_sim: true,
        ),
    ],
    cnx: [
        (
            src: "src",
            dst: "sink",
            msg: "i32",
        ),
        (
            src: "src",
            dst: "__nc__",
            msg: "bool",
        ),
    ],
)