Fix running tests locally; fix migrations for relocated nodes (#2805)

* fix `BoundingBox for Raster<GPU>` when `wgpu` feature is disabled

* fix `tinyvec` crate not being `std` by default

* fixup migration for `CoordinateValueNode`

* fixup migration for raster nodes
This commit is contained in:
Firestar99
2025-07-04 11:56:22 +02:00
committed by GitHub
parent a182a7347e
commit 8a0241f0fa
3 changed files with 30 additions and 4 deletions

View File

@@ -150,7 +150,7 @@ petgraph = { version = "0.7.1", default-features = false, features = [
"graphmap",
] }
half = { version = "2.4.1", default-features = false, features = ["bytemuck", "serde"] }
tinyvec = { version = "1" }
tinyvec = { version = "1", features = ["std"] }
criterion = { version = "0.5", features = ["html_reports"] }
iai-callgrind = { version = "0.12.3" }
ndarray = "0.16.1"