You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cargo.toml
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,9 @@ members = [
39
39
"node-graph/node-macro",
40
40
"node-graph/preprocessor",
41
41
"proc-macros",
42
-
"tools/crate-hierarchy-viz"
42
+
"tools/crate-hierarchy-viz",
43
+
"tools/editor-message-tree",
44
+
"tools/node-docs",
43
45
]
44
46
default-members = [
45
47
"editor",
@@ -137,6 +139,7 @@ log = "0.4"
137
139
bitflags = { version = "2.4", features = ["serde"] }
138
140
ctor = "0.2"
139
141
convert_case = "0.8"
142
+
indoc = "2.0.5"
140
143
derivative = "2.2"
141
144
thiserror = "2"
142
145
anyhow = "1.0"
@@ -151,7 +154,7 @@ wgpu = { version = "27.0", features = [
151
154
"spirv",
152
155
"strict_asserts",
153
156
] }
154
-
once_cell = "1.13"# Remove when `core::cell::LazyCell` (<https://doc.rust-lang.org/core/cell/struct.LazyCell.html>) is stabilized in Rust 1.80 and we bump our MSRV
157
+
once_cell = "1.13"# Remove and replace with `core::cell::LazyCell` (<https://doc.rust-lang.org/core/cell/struct.LazyCell.html>)
155
158
wasm-bindgen = "=0.2.100"# NOTICE: ensure this stays in sync with the `wasm-bindgen-cli` version in `website/content/volunteer/guide/project-setup/_index.md`. We pin this version because wasm-bindgen upgrades may break various things.
0 commit comments