Skip to content

Commit 54ac845

Browse files
committed
Code review
1 parent dd00a6a commit 54ac845

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ members = [
1212
"node-graph/node-macro",
1313
"node-graph/compilation-server",
1414
"node-graph/compilation-client",
15+
"node-graph/preprocessor",
1516
"node-graph/wgpu-executor",
1617
"node-graph/gpu-executor",
17-
"node-graph/preprocessor",
1818
"node-graph/gpu-compiler/gpu-compiler-bin-wrapper",
1919
"libraries/dyn-any",
2020
"libraries/path-bool",
2121
"libraries/bezier-rs",
2222
"libraries/math-parser",
23-
"website/other/bezier-rs-demos/wasm", "node-graph/preprocessor",
23+
"website/other/bezier-rs-demos/wasm",
2424
]
2525
exclude = ["node-graph/gpu-compiler"]
2626
default-members = [

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;
@@ -26,8 +28,6 @@ use std::collections::{HashMap, HashSet, VecDeque};
2628
#[cfg(feature = "gpu")]
2729
use wgpu_executor::{Bindgroup, CommandBuffer, PipelineLayout, ShaderHandle, ShaderInputFrame, WgpuShaderInput};
2830

29-
mod document_node_derive;
30-
3131
pub struct NodePropertiesContext<'a> {
3232
pub persistent_data: &'a PersistentData,
3333
pub responses: &'a mut VecDeque<Message>,

node-graph/preprocessor/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ dyn-any = { path = "../../libraries/dyn-any", features = [
1717
# Workspace dependencies
1818
graphene-core = { workspace = true, features = ["std"] }
1919
graphene-std = { workspace = true, features = ["gpu"] }
20-
graph-craft = { workspace = true}
21-
interpreted-executor = { path = "../interpreted-executor" }
20+
graph-craft = { workspace = true }
21+
interpreted-executor = { path = "../interpreted-executor" }
2222
log = { workspace = true }
2323
futures = { workspace = true }
2424
glam = { workspace = true }
@@ -28,4 +28,3 @@ base64 = { workspace = true }
2828
serde = { workspace = true, optional = true }
2929
tokio = { workspace = true, optional = true }
3030
serde_json = { workspace = true, optional = true }
31-

0 commit comments

Comments
 (0)