Use glob syntax for Cargo.toml (#3489)
* Use glob syntax for Cargo.toml * Readd nested crates to workspace members and reduce the list of default members
This commit is contained in:
parent
ead914ec2b
commit
50ef6e15cb
43
Cargo.toml
43
Cargo.toml
|
|
@ -12,27 +12,10 @@ members = [
|
||||||
"libraries/dyn-any",
|
"libraries/dyn-any",
|
||||||
"libraries/path-bool",
|
"libraries/path-bool",
|
||||||
"libraries/math-parser",
|
"libraries/math-parser",
|
||||||
"node-graph/libraries/application-io",
|
"node-graph/libraries/*",
|
||||||
"node-graph/libraries/core-types",
|
"node-graph/nodes/*",
|
||||||
"node-graph/libraries/no-std-types",
|
|
||||||
"node-graph/libraries/raster-types",
|
|
||||||
"node-graph/libraries/vector-types",
|
|
||||||
"node-graph/libraries/graphic-types",
|
|
||||||
"node-graph/libraries/rendering",
|
|
||||||
"node-graph/libraries/wgpu-executor",
|
|
||||||
"node-graph/nodes/blending",
|
|
||||||
"node-graph/nodes/brush",
|
|
||||||
"node-graph/nodes/gcore",
|
|
||||||
"node-graph/nodes/graphic",
|
|
||||||
"node-graph/nodes/math",
|
|
||||||
"node-graph/nodes/path-bool",
|
|
||||||
"node-graph/nodes/raster",
|
|
||||||
"node-graph/nodes/raster/shaders",
|
"node-graph/nodes/raster/shaders",
|
||||||
"node-graph/nodes/raster/shaders/entrypoint",
|
"node-graph/nodes/raster/shaders/entrypoint",
|
||||||
"node-graph/nodes/text",
|
|
||||||
"node-graph/nodes/transform",
|
|
||||||
"node-graph/nodes/repeat",
|
|
||||||
"node-graph/nodes/vector",
|
|
||||||
"node-graph/graph-craft",
|
"node-graph/graph-craft",
|
||||||
"node-graph/graphene-cli",
|
"node-graph/graphene-cli",
|
||||||
"node-graph/nodes/gstd",
|
"node-graph/nodes/gstd",
|
||||||
|
|
@ -51,32 +34,12 @@ default-members = [
|
||||||
"libraries/dyn-any",
|
"libraries/dyn-any",
|
||||||
"libraries/path-bool",
|
"libraries/path-bool",
|
||||||
"libraries/math-parser",
|
"libraries/math-parser",
|
||||||
"node-graph/libraries/application-io",
|
|
||||||
"node-graph/libraries/core-types",
|
|
||||||
"node-graph/libraries/no-std-types",
|
|
||||||
"node-graph/libraries/raster-types",
|
|
||||||
"node-graph/libraries/vector-types",
|
|
||||||
"node-graph/libraries/graphic-types",
|
|
||||||
"node-graph/libraries/rendering",
|
|
||||||
"node-graph/libraries/wgpu-executor",
|
|
||||||
"node-graph/nodes/blending",
|
|
||||||
"node-graph/nodes/brush",
|
|
||||||
"node-graph/nodes/gcore",
|
|
||||||
"node-graph/nodes/graphic",
|
|
||||||
"node-graph/nodes/math",
|
|
||||||
"node-graph/nodes/path-bool",
|
|
||||||
"node-graph/nodes/raster",
|
|
||||||
"node-graph/nodes/raster/shaders",
|
|
||||||
"node-graph/nodes/text",
|
|
||||||
"node-graph/nodes/transform",
|
|
||||||
"node-graph/nodes/vector",
|
|
||||||
"node-graph/graph-craft",
|
"node-graph/graph-craft",
|
||||||
"node-graph/graphene-cli",
|
"node-graph/graphene-cli",
|
||||||
"node-graph/nodes/gstd",
|
|
||||||
"node-graph/interpreted-executor",
|
"node-graph/interpreted-executor",
|
||||||
"node-graph/node-macro",
|
"node-graph/node-macro",
|
||||||
"node-graph/preprocessor",
|
"node-graph/preprocessor",
|
||||||
# blocked by https://github.com/rust-lang/cargo/issues/15890
|
# blocked by https://github.com/rust-lang/cargo/issues/16000
|
||||||
# "proc-macros",
|
# "proc-macros",
|
||||||
]
|
]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue