Integrate dyn-any into the main graphite repo

This commit is contained in:
Dennis
2022-08-04 08:52:24 +02:00
parent 52b3553a75
commit 30af1ba8db
17 changed files with 1724 additions and 1600 deletions

View File

@@ -1,2 +0,0 @@
**/target

View File

@@ -1,3 +0,0 @@
[submodule "non-static-any"]
path = non-static-any
url = git@github.com:TrueDoctor/non-static-any.git

1579
node-graph/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +0,0 @@
[workspace]
members = [
#"proc-macro",
"gcore",
"gstd",
"borrow_stack"
]

View File

@@ -1,2 +0,0 @@
# NodeGraphExperiments
Repo for testing ideas for the upcoming Graphite node graph implementation

View File

@@ -2,7 +2,7 @@
name = "graphene-core"
version = "0.1.0"
edition = "2021"
description = "Api definitions for graphene"
description = "API definitions for Graphene"
authors = ["Dennis Kobert <dennis@kobert.dev>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -15,7 +15,7 @@ async = ["async-trait"]
nightly = []
[dependencies]
dyn-any = {path = "../dyn-any", features = ["derive"], optional = true}
dyn-any = {path = "../../libraries/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}

View File

@@ -18,7 +18,7 @@ default = ["derive", "memoization"]
[dependencies]
graphene-core = {path = "../gcore"}
borrow_stack = {path = "../borrow_stack"}
dyn-any = {path = "../dyn-any", features = ["derive"]}
dyn-any = {path = "../../libraries/dyn-any", features = ["derive"]}
graph-proc-macros = {path = "../proc-macro", optional = true}
once_cell = {version= "1.10", optional = true}
ide = { version = "*", package = "ra_ap_ide", optional = true }