dotparser 0.3.0

diagram file parser for Bevy visualization of diagrams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod dot;
pub mod events;
pub mod plantuml;
mod types;

// Main event-based API
pub use events::{
    Direction, EdgeType, EventResult, GraphEvent, GroupType, LayoutType, MessageType, NodeType,
    Position, Properties, StateType, Style,
};

// Legacy types - deprecated
#[deprecated(note = "Use the event-based API instead")]
pub use types::{GraphData, NodeInfo};