@@ -12,12 +12,13 @@ members = [
1212 " libraries/dyn-any" ,
1313 " libraries/path-bool" ,
1414 " libraries/math-parser" ,
15- " node-graph/gapplication-io" ,
16- " node-graph/core-types" ,
17- " node-graph/not-std-types" ,
18- " node-graph/raster-types" ,
19- " node-graph/vector-types" ,
20- " node-graph/graphic-types" ,
15+ " node-graph/libraries/application-io" ,
16+ " node-graph/libraries/core-types" ,
17+ " node-graph/libraries/no-std-types" ,
18+ " node-graph/libraries/raster-types" ,
19+ " node-graph/libraries/vector-types" ,
20+ " node-graph/libraries/graphic-types" ,
21+ " node-graph/libraries/rendering" ,
2122 " node-graph/nodes/blending" ,
2223 " node-graph/nodes/brush" ,
2324 " node-graph/nodes/gcore" ,
@@ -27,7 +28,6 @@ members = [
2728 " node-graph/nodes/raster" ,
2829 " node-graph/nodes/raster/shaders" ,
2930 " node-graph/nodes/raster/shaders/entrypoint" ,
30- " node-graph/rendering" ,
3131 " node-graph/nodes/text" ,
3232 " node-graph/nodes/transform" ,
3333 " node-graph/nodes/vector" ,
@@ -46,12 +46,13 @@ default-members = [
4646 " libraries/dyn-any" ,
4747 " libraries/path-bool" ,
4848 " libraries/math-parser" ,
49- " node-graph/gapplication-io" ,
50- " node-graph/core-types" ,
51- " node-graph/not-std-types" ,
52- " node-graph/raster-types" ,
53- " node-graph/vector-types" ,
54- " node-graph/graphic-types" ,
49+ " node-graph/libraries/application-io" ,
50+ " node-graph/libraries/core-types" ,
51+ " node-graph/libraries/no-std-types" ,
52+ " node-graph/libraries/raster-types" ,
53+ " node-graph/libraries/vector-types" ,
54+ " node-graph/libraries/graphic-types" ,
55+ " node-graph/libraries/rendering" ,
5556 " node-graph/nodes/blending" ,
5657 " node-graph/nodes/brush" ,
5758 " node-graph/nodes/gcore" ,
@@ -60,7 +61,6 @@ default-members = [
6061 " node-graph/nodes/path-bool" ,
6162 " node-graph/nodes/raster" ,
6263 " node-graph/nodes/raster/shaders" ,
63- " node-graph/rendering" ,
6464 " node-graph/nodes/text" ,
6565 " node-graph/nodes/transform" ,
6666 " node-graph/nodes/vector" ,
@@ -88,13 +88,14 @@ dyn-any = { path = "libraries/dyn-any", features = [
8888preprocessor = { path = " node-graph/preprocessor" }
8989math-parser = { path = " libraries/math-parser" }
9090path-bool = { path = " libraries/path-bool" }
91- graphene-application-io = { path = " node-graph/gapplication-io" }
91+ graphene-application-io = { path = " node-graph/libraries/application-io" }
92+ core-types = { path = " node-graph/libraries/core-types" }
93+ no-std-types = { path = " node-graph/libraries/no-std-types" }
94+ raster-types = { path = " node-graph/libraries/raster-types" }
95+ vector-types = { path = " node-graph/libraries/vector-types" }
96+ graphic-types = { path = " node-graph/libraries/graphic-types" }
97+ rendering = { path = " node-graph/libraries/rendering" }
9298brush-nodes = { path = " node-graph/nodes/brush" }
93- core-types = { path = " node-graph/core-types" }
94- not-std-types = { path = " node-graph/not-std-types" }
95- raster-types = { path = " node-graph/raster-types" }
96- vector-types = { path = " node-graph/vector-types" }
97- graphic-types = { path = " node-graph/graphic-types" }
9899blending-nodes = { path = " node-graph/nodes/blending" }
99100graphene-core = { path = " node-graph/nodes/gcore" }
100101graphic-nodes = { path = " node-graph/nodes/graphic" }
@@ -106,7 +107,6 @@ path-bool-nodes = { path = "node-graph/nodes/path-bool" }
106107graph-craft = { path = " node-graph/graph-craft" }
107108raster-nodes = { path = " node-graph/nodes/raster" }
108109graphene-std = { path = " node-graph/nodes/gstd" }
109- rendering = { path = " node-graph/rendering" }
110110interpreted-executor = { path = " node-graph/interpreted-executor" }
111111node-macro = { path = " node-graph/node-macro" }
112112wgpu-executor = { path = " node-graph/wgpu-executor" }
@@ -235,7 +235,7 @@ unexpected_cfgs = { level = "allow", check-cfg = ['cfg(target_arch, values("spir
235235opt-level = 0
236236
237237[profile .dev .package ]
238- not -std-types = { opt-level = 1 }
238+ no -std-types = { opt-level = 1 }
239239core-types = { opt-level = 1 }
240240interpreted-executor = { opt-level = 1 } # This is a mitigation for https://github.com/rustwasm/wasm-pack/issues/981 which is needed because the node_registry function is too large
241241graphite-proc-macros = { opt-level = 1 }
0 commit comments