#type-safety #computation #flowgraph #rust #directedgraph

aloe-oboe-flowgraph

Aloe-Oboe-Flowgraph is a Rust crate for constructing, manipulating, and executing directed flow graphs efficiently. It features strong type safety and modular design for complex flow-based computations. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 3, 2025

#9 in #flowgraph


Used in 2 crates

GPL-3.0 license

36KB
190 lines

Aloe-Oboe-Flowgraph

Aloe-Oboe-Flowgraph is a Rust crate designed to streamline and enhance the construction, manipulation, and execution of directed flow graphs. By leveraging the capabilities of Rust's type system and performance, this crate provides state-of-the-art utilities for creating complex, reliable flow-based computation models.

Features

  • Efficient Flow Construction: Build and manage directed graphs with optimized performance for both dense and sparse configurations.
  • Type Safety: Utilize Rust's robust type system to ensure correctness at compile-time.
  • Modular Design: Components are designed for easy integration and extension, allowing for highly customizable flow solutions.

Installation

To include Aloe-Oboe-Flowgraph in your project, add the following to your Cargo.toml:

[dependencies]
aloe-oboe-flowgraph = "0.1.0"

Usage

Below is a basic example demonstrating how to create a simple flow graph:

use aloe_oboe_flowgraph::{FlowGraph, Node};

fn main() {
    let mut graph = FlowGraph::new();
    let node1 = graph.add_node(Node::new("Start"));
    let node2 = graph.add_node(Node::new("Process"));
    graph.add_edge(node1, node2);
    graph.execute();
}

This would create a flow graph with two nodes and execute the defined flow between them.

Documentation

Comprehensive documentation is available on docs.rs. For detailed usage patterns and API specifications, please refer to the provided documentation.

Contribution

Contributions are welcomed! Please see CONTRIBUTING.md for more details.

License

Aloe-Oboe-Flowgraph is licensed under the GNU GPL-3.0 license.


This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–23MB
~371K SLoC