lemon-graph

Crates.iolemon-graph
lib.rslemon-graph
version0.0.1
sourcesrc
created_at2024-02-19 06:13:55.650898
updated_at2024-03-06 05:04:12.863199
descriptionAsync directed computation graphs.
homepage
repositoryhttps://github.com/unavi-xyz/lemon
max_upload_size
id1144811
size19,708
kayh (kayhhh)

documentation

README

lemon-graph

Async directed computation graphs, using petgraph.

Usage

use lemon_graph::{Graph, Executor, nodes::{NodeWrapper, LogNode}};

#[tokio::main]
async fn main() {
    let mut graph = Graph::new();

    // Create a log node and set its message.
    let log = LogNode::new(&mut graph);
    let message = log.message(&graph).unwrap();
    message.set_value(&mut graph, "Hello, world!".to_string().into());

    // Create a second log node to run after the first.
    let log_2 = LogNode::new(&mut graph);
    log_2.run_after(&mut graph, log.0);

    // Use the first log's message as input to the second log's message.
    let message_2 = log_2.message(&graph).unwrap();
    message_2.set_input(&mut graph, Some(message));

    // Execute the graph.
    Executor::execute(&mut graph, log.0).await.unwrap();
}
Commit count: 0

cargo fmt