node_editor 0.0.3

Node editor UI using imgui-rs as backend, made for aflak project
Documentation
extern crate aflak_cake as cake;
#[macro_use]
extern crate imgui;
extern crate rayon;
extern crate ron;

extern crate serde;
#[macro_use]
extern crate serde_derive;

mod compute;
mod constant_editor;
mod editor;
mod export;
mod id_stack;
mod node_state;
mod scrolling;
mod vec2;

pub use compute::{ComputationState, ComputeResult};
pub use constant_editor::ConstantEditor;
pub use editor::NodeEditor;