mirror of https://github.com/hannobraun/Fornjot
Add missing feature declaration
The feature is being set implicitly right now, probably by `egui-wgpu`.
This commit is contained in:
parent
be5023bbb8
commit
a222ce7c02
|
@ -11,7 +11,6 @@ keywords.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytemuck = "1.13.1"
|
|
||||||
chrono = "0.4.24"
|
chrono = "0.4.24"
|
||||||
egui = "0.21.0"
|
egui = "0.21.0"
|
||||||
egui-wgpu = "0.21.0"
|
egui-wgpu = "0.21.0"
|
||||||
|
@ -23,6 +22,10 @@ raw-window-handle = "0.5.2"
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
|
||||||
|
[dependencies.bytemuck]
|
||||||
|
version = "1.13.1"
|
||||||
|
features = ["derive"]
|
||||||
|
|
||||||
[dependencies.image]
|
[dependencies.image]
|
||||||
version = "0.24"
|
version = "0.24"
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
Loading…
Reference in New Issue