5 releases
0.1.4 | Jun 7, 2024 |
---|---|
0.1.3 | Jun 6, 2024 |
0.1.2 | Jun 17, 2022 |
0.1.1 | May 17, 2022 |
0.1.0 | May 15, 2022 |
#423 in Data structures
68 downloads per month
Used in 5 crates
40KB
613 lines
persian-rug - it really ties the room together
This is a framework for building and mutating collections of objects that refer to one another. It supports having multiple different types participating in the graph. It does not require that links form a directed acyclic graph, or tree, or anything convenient.
To do this, all objects are stored in a centralised holder (a
Context
),
which passes out
Proxy
objects to serve as pointers. All access requires the context to be
present, and this has some limitations with Rust's current mutable
reference rules (it's not possible to borrow the same context mutably
more than once, even when accessing different pieces of data within
it).
Deletion of objects is not supported at present. Contexts many only grow to encompass more objects, old objects may not be retired. This restriction might be lifted a future version of this crate.
License
This crate is made available under either an Apache-2.0 or an MIT license.
Dependencies
~1.5MB
~38K SLoC