mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
Integrate dyn-any into the main graphite repo
This commit is contained in:
2
node-graph/.gitignore
vendored
2
node-graph/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
**/target
|
||||
|
||||
3
node-graph/.gitmodules
vendored
3
node-graph/.gitmodules
vendored
@@ -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
1579
node-graph/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,8 +0,0 @@
|
||||
[workspace]
|
||||
|
||||
members = [
|
||||
#"proc-macro",
|
||||
"gcore",
|
||||
"gstd",
|
||||
"borrow_stack"
|
||||
]
|
||||
@@ -1,2 +0,0 @@
|
||||
# NodeGraphExperiments
|
||||
Repo for testing ideas for the upcoming Graphite node graph implementation
|
||||
Submodule node-graph/dyn-any deleted from c4933672de
@@ -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}
|
||||
|
||||
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user