Don't force nodes to store references to other nodes

This commit is contained in:
Dennis
2022-06-05 15:25:07 +02:00
committed by Keavon Chambers
parent 4b8c0ec4e1
commit 09f550bcd4
12 changed files with 252 additions and 242 deletions

View File

@@ -9,11 +9,13 @@ authors = ["Dennis Kobert <dennis@kobert.dev>"]
[features]
std = ["dyn-any"]
default = ["gpu"]
default = ["gpu", "async"]
gpu = ["spirv-std"]
async = ["async-trait"]
nightly = []
[dependencies]
dyn-any = {path = "../dyn-any", features = ["derive"], optional = true}
spirv-std = { git = "https://github.com/EmbarkStudios/rust-gpu", features = ["glam"] , optional = true}
async-trait = {version = "0.1", optional = true}