mirror of
https://github.com/CrispyPin/julia-fractal-renderer.git
synced 2024-11-12 21:50:26 +01:00
fix cross compilation (why did this compile without the serde derive
feature flag, but only natively??)
This commit is contained in:
parent
0a0e2f7f9a
commit
0ce808a250
1 changed files with 2 additions and 2 deletions
|
@ -7,10 +7,10 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
eframe = "0.22.0"
|
eframe = "0.22.0"
|
||||||
image = { version = "0.24.6", default_features = false, features = ["png"] }
|
image = { version = "0.24.6", default-features = false, features = ["png"] }
|
||||||
native-dialog = "0.6.4"
|
native-dialog = "0.6.4"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
serde = "1.0.171"
|
serde = { version = "1.0.171", features = ["derive"] }
|
||||||
serde_json = "1.0.102"
|
serde_json = "1.0.102"
|
||||||
|
|
||||||
# Enable high optimizations for dependencies
|
# Enable high optimizations for dependencies
|
||||||
|
|
Loading…
Reference in a new issue