gantz_core 0.3.0

The core types and traits for gantz, an environment for creative systems.
Documentation
pub use builtin::Builtins;
pub use diagnostic::Diagnostic;
pub use edge::Edge;
pub use node::Node;
pub use steel;

pub mod builtin;
pub mod compile;
pub mod diagnostic;
pub mod edge;
pub mod graph;
pub mod node;
pub mod reg;
pub mod visit;
pub mod vm;

/// The ident used to represent the root state.
/// This is the state of the top-level graph.
pub const ROOT_STATE: &str = "%root-state";
/// The ident used to represent the state of a graph.
/// Note that this can be either nested or top-level.
const GRAPH_STATE: &str = "graph-state";