Skip to content

Commit 66e683a

Browse files
committed
unify image formats in workspace
1 parent 2b79a55 commit 66e683a

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ axum = "0.8"
6262
chrono = "0.4"
6363
ron = "0.8"
6464
fastnoise-lite = "1.1"
65-
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu.git" }
6665
wgpu = "23"
6766
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
6867
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.
@@ -79,7 +78,7 @@ rand = { version = "0.9", default-features = false }
7978
rand_chacha = "0.9"
8079
glam = { version = "0.29", default-features = false, features = ["serde"] }
8180
base64 = "0.22"
82-
image = { version = "0.25", default-features = false, features = ["png"] }
81+
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "bmp"] }
8382
rustybuzz = "0.20"
8483
pretty_assertions = "1.4.1"
8584
fern = { version = "0.7", features = ["colored"] }

editor/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ futures = { workspace = true }
4545
glam = { workspace = true, features = ["serde", "debug-glam-assert"] }
4646
derivative = { workspace = true }
4747
specta = { workspace = true }
48-
image = { workspace = true, features = ["bmp", "png"] }
4948
dyn-any = { workspace = true }
5049
num_enum = { workspace = true }
5150
usvg = { workspace = true }

node-graph/gcore/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ rand_chacha = { workspace = true }
4747
bezier-rs = { workspace = true }
4848
specta = { workspace = true }
4949
rustybuzz = { workspace = true }
50-
image = { workspace = true, default-features = false, features = [
51-
"png",
52-
] }
50+
image = { workspace = true }
5351

5452
# Required dependencies
5553
half = { version = "2.4.1", default-features = false, features = ["bytemuck"] }

node-graph/gstd/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@ rand = { workspace = true, default-features = false, features = [
4040
"small_rng",
4141
] }
4242
bytemuck = { workspace = true }
43-
image = { workspace = true, default-features = false, features = [
44-
"png",
45-
"jpeg",
46-
] }
43+
image = { workspace = true }
4744

4845
# Optional workspace dependencies
4946
base64 = { workspace = true, optional = true }

0 commit comments

Comments
 (0)