cu29-derive 1.2.0

This is the copper project runtime generator. It cannot be used independently from the copper project.
(
    tasks: [
        (
            id: "src",
            type: "IntSource",
            kind: source,
            run_in_sim: true,
        ),
        (
            id: "regular",
            type: "NcOnlyRegular",
            kind: task,
            run_in_sim: true,
        ),
    ],
    cnx: [
        (
            src: "src",
            dst: "regular",
            msg: "i32",
        ),
        (
            src: "regular",
            dst: "__nc__",
            msg: "bool",
        ),
    ],
)