From 3c6511f69c7639abff60ac9999a08ce2daa24a7d Mon Sep 17 00:00:00 2001 From: JSDurand Date: Fri, 13 Jan 2023 14:25:40 +0800 Subject: macro: try to write a macro for inhereting graphs An attempt to write a derive macro to automatically derive the various graph traits. --- graph_macro/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 graph_macro/Cargo.toml (limited to 'graph_macro/Cargo.toml') diff --git a/graph_macro/Cargo.toml b/graph_macro/Cargo.toml new file mode 100644 index 0000000..1e4c4db --- /dev/null +++ b/graph_macro/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "graph_macro" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[lib] +proc-macro = true + +[dependencies] -- cgit v1.2.3-18-g5258