exegraph 0.3.1

no_std execution graph library
Documentation
  • Coverage
  • 0%
    0 out of 13 items documented0 out of 12 items with examples
  • Size
  • Source code size: 5.87 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.29 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • iota-xSK/exegraph
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • iota-xSK

Exegraph

A simple tiny rust no_std no alloc graph library with a fixed number of inputs and outputs for each node.

Each data sink can have at most one data source connected to it, but every data source can output its data to as many sinks as there are.

The library currently has a propagation delay which might be of use in some situations (such as when making a circuit simulator), but might also be a hinderance, depending on your needs. I might add more versions of a similar struct to the library as I need them. It is primarily designed to be used for audio applications where everything is a signal of the same type, but it can easily be modified to support other funcitonality as it's only 100 lines of code at the moment.