summaryrefslogtreecommitdiff
path: root/graph_macro/Cargo.toml
AgeCommit message (Collapse)Author
2023-05-04Completed the procedural macro for deriving Graphs.JSDurand
The macro `graph_derive` can automatically write the boiler-plate codes for wrapper types one of whose sub-fields implements the `Graph` trait. The generated implementation will delegate the `Graph` operations to the sub-field which implements the `Graph` trait. I plan to add more macros, corresponding to various other graph-related traits, so that no such boiler-plate codes are needed, at least for my use-cases.
2023-01-13macro: try to write a macro for inhereting graphsJSDurand
An attempt to write a derive macro to automatically derive the various graph traits.