hydro_lang 0.16.0

A Rust framework for correct and performant distributed systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Graph visualization utilities for Hydro IR

pub mod api;
pub mod config;
pub mod debug;
pub mod graphviz;
pub mod json;
pub mod mermaid;
pub mod render;

#[cfg(test)]
mod json_test;

// Re-export only the necessary public API
pub use api::GraphApi;