1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! The [egui]-based visual graph editor for [nodui]. //! //! [nodui]: https://crates.io/crates/nodui pub mod connection; pub mod context_menu; mod conversion; mod editor; mod node; mod socket; mod viewport; pub use connection::CustomConnectionRenderer; pub use editor::{GraphEditor, GraphOutput}; pub use socket::RenderedSocket;