cu29-derive 0.14.0

This is the copper project runtime generator. It cannot be used independently from the copper project.
Documentation
(
    missions: [(id: "A"), (id: "B")],
    tasks: [
        (
            id: "src",
            type: "tasks::Source",
        ),
        (
            id: "sink",
            type: "tasks::Sink",
        ),
    ],
    cnx: [
        (
            src: "src",
            dst: "sink",
            msg: "u32",
            missions: ["A"],
        ),
        (
            src: "src",
            dst: "sink",
            msg: "u64",
            missions: ["B"],
        ),
    ],
)