fluidattacks-blends 0.6.0

Blends imperative shell: parsing, AST-graph construction, serialization
Documentation
//! Blends imperative shell: language detection, tree-sitter parsing, AST-graph
//! construction, and canonical-JSON serialization. It wraps the pure domain and
//! is the crate published as `fluidattacks-blends`.

pub use blends_domain as domain;

mod ast;
mod attrs;
mod content;
mod dot;
mod graphs;
mod language;
#[cfg(test)]
mod node_types;
mod parse;
mod svg;
mod syntax;

pub use ast::get_ast_graph;
pub use content::Content;
pub use graphs::get_graphs_from_path;
pub use language::{Language, LanguageExt};
pub use parse::{parse, ParseError};
pub use svg::{render_graph_set, SvgRenderError};
pub use syntax::get_syntax_graph;