#dag #ecs #gamedev

macro moongraph-macros

Derive macros for the moongraph library

4 releases

0.1.3 Mar 26, 2024
0.1.2 Dec 16, 2023
0.1.1 Jul 16, 2023
0.1.0 Apr 30, 2023

#48 in #dag

Download history 8/week @ 2024-02-12 21/week @ 2024-02-19 38/week @ 2024-02-26 3/week @ 2024-03-11 110/week @ 2024-03-25 31/week @ 2024-04-01 10/week @ 2024-04-08 8/week @ 2024-04-15

159 downloads per month
Used in moongraph

MIT/Apache

10KB
131 lines

moongraph 🌙📈

moongraph is a Rust library for scheduling, managing resources, and running directed acyclic graphs.

In moongraph, graph nodes are normal Rust functions and graph edges are function parameters and function results.

The graph is built automatically by registering each function. moongraph figures out how the functions connect by their parameters and their results.

moongraph validates and schedules nodes to run in parallel where possible, using rayon as the underlying parallelizing tech. This only happens when compiled with the "parallel" feature, on by default.

what

moongraph is made up of two parts:

  • The scheduler - provided by dagga
  • The resource manager - provided by broomdog

why

Scheduling and running DAGs is a common problem and I didn't find any prior art.

how

Read the introduction tutorial

uses

moongraph is in use in a number of other libraries (let me know if you use it in yours, and how :))

  • As the render graph in renderling, a scrappy real-time renderer with advanced lighting
  • Its scheduler is used for scheduling systems in apecs, a well-performing ECS with async integration.

💚 Sponsor this!

This work will always be free and open source. If you use it (outright or for inspiration), please consider donating.

💰 Sponsor 💝

License

Renderling is free and open source. All code in this repository is dual-licensed under either:

MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)

at your option. This means you can select the license you prefer! This dual-licensing approach is the de-facto standard in the Rust ecosystem and there are very good reasons to include both.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Provides derive macros for moongraph::Edges.

Dependencies

~340–800KB
~19K SLoC