Initial implementation of node graph based on structs

This commit is contained in:
TrueDoctor
2022-08-01 23:43:42 -07:00
committed by Keavon Chambers
parent 58c1a9db03
commit 01bbe5dced
9 changed files with 1634 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[package]
name = "graph-proc-macros"
version = "0.1.0"
authors = ["Graphite Authors <contact@graphite.design>"]
edition = "2018"
publish = false
[lib]
path = "src/lib.rs"
proc-macro = true
[dependencies]
proc-macro2 = "1.0.26"
syn = { version = "1.0.68", features = ["full"] }
quote = "1.0.9"