1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/// V0 parser logic
pub mod v0;
/// V1 parser logic
pub mod v1;
/// The reserved reference name for schematic input. Used in schematic manifests to denote schematic input.
pub const SCHEMATIC_INPUT: &str = "<input>";
/// The reserved reference name for schematic output. Used in schematic manifests to denote schematic output.
pub const SCHEMATIC_OUTPUT: &str = "<output>";
/// The reserved reference name for a namespace link. Used in schematic manifests to pass a collection to a port by its namespace.
pub const NS_LINK: &str = "<link>";
/// The reserved name for components that send static data.
pub static SENDER_ID: &str = "core::sender";
/// The reserved name for data that Wick injects itself.
pub static CORE_ID: &str = "<core>";
/// The name of SENDER's output port.
pub static SENDER_PORT: &str = "output";