Skip to content

Commit 67a8739

Browse files
KeavonTrueDoctor
authored andcommitted
Code review
1 parent ffa7f1a commit 67a8739

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ members = [
1111
"node-graph/graphene-cli",
1212
"node-graph/interpreted-executor",
1313
"node-graph/node-macro",
14-
"node-graph/wgpu-executor",
1514
"node-graph/preprocessor",
1615
"libraries/dyn-any",
1716
"libraries/path-bool",
1817
"libraries/bezier-rs",
1918
"libraries/math-parser",
20-
"website/other/bezier-rs-demos/wasm", "node-graph/preprocessor",
19+
"website/other/bezier-rs-demos/wasm",
2120
]
2221
default-members = [
2322
"editor",

editor/src/messages/portfolio/document/node_graph/document_node_definitions.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
mod document_node_derive;
2+
13
use super::node_properties::choice::enum_choice;
24
use super::node_properties::{self, ParameterWidgetsInfo};
35
use super::utility_types::FrontendNodeType;
@@ -24,8 +26,6 @@ use graphene_std::vector::VectorDataTable;
2426
use graphene_std::*;
2527
use std::collections::{HashMap, HashSet, VecDeque};
2628

27-
mod document_node_derive;
28-
2929
pub struct NodePropertiesContext<'a> {
3030
pub persistent_data: &'a PersistentData,
3131
pub responses: &'a mut VecDeque<Message>,

editor/src/messages/portfolio/document/node_graph/document_node_definitions/document_node_derive.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use graph_craft::ProtoNodeIdentifier;
44
use graph_craft::document::*;
55
use graphene_std::registry::*;
66
use graphene_std::*;
7-
use std::collections::{HashMap, HashSet};
7+
use std::collections::HashSet;
88

99
pub(super) fn post_process_nodes(mut custom: Vec<DocumentNodeDefinition>) -> Vec<DocumentNodeDefinition> {
1010
// Remove struct generics

node-graph/preprocessor/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dyn-any = { path = "../../libraries/dyn-any", features = [
1616

1717
# Workspace dependencies
1818
graphene-std = { workspace = true, features = ["gpu"] }
19-
graph-craft = { workspace = true}
20-
interpreted-executor = { path = "../interpreted-executor" }
19+
graph-craft = { workspace = true }
20+
interpreted-executor = { path = "../interpreted-executor" }
2121
log = { workspace = true }
2222
futures = { workspace = true }
2323
glam = { workspace = true }
@@ -27,4 +27,3 @@ base64 = { workspace = true }
2727
serde = { workspace = true, optional = true }
2828
tokio = { workspace = true, optional = true }
2929
serde_json = { workspace = true, optional = true }
30-

0 commit comments

Comments
 (0)