Skip to content

Commit 3784830

Browse files
committed
Bump image and femtovg dependencies
1 parent 6d9763a commit 3784830

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

examples/imagefilter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "imagefilter"
1515

1616
[dependencies]
1717
sixtyfps = { path = "../../api/sixtyfps-rs" }
18-
image = { version = "0.23.12", default-features = false, features = [ "png" ] }
18+
image = { version = "0.24.0", default-features = false, features = [ "png" ] }
1919

2020
[build-dependencies]
2121
sixtyfps-build = { path = "../../api/rs/build" }

internal/backends/gl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ cfg-if = "1"
3535
copypasta = { version = "0.7.0", default-features = false }
3636
derive_more = "0.99.5"
3737
euclid = "0.22.1"
38-
femtovg = { version = "0.2.9" }
38+
femtovg = { version = "0.3.0" }
3939
fontdb = { version = "0.7.0", default-features = false }
40-
image = { version = "0.23.14", default-features = false, features = [ "png", "jpeg" ] }
40+
image = { version = "0.24.0", default-features = false, features = [ "png", "jpeg" ] }
4141
imgref = "1.6.1"
4242
lyon_path = "0.17.3"
4343
once_cell = "1.5"

internal/backends/gl/images.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ enum ImageData {
9898

9999
impl std::fmt::Debug for ImageData {
100100
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
101-
use image::GenericImageView;
102101
match self {
103102
ImageData::Texture(t) => {
104103
write!(f, "ImageData::Texture({:?})", t.id.0)

internal/backends/mcu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ derive_more = "0.99.5"
3939
embedded-graphics = "0.7.1"
4040
embedded-graphics-simulator = { version = "0.3.0", optional = true, default-features = false }
4141
euclid = { version = "0.22.1", default-features = false }
42-
femtovg = { version = "0.2.9", optional = true }
42+
femtovg = { version = "0.3.0", optional = true }
4343
glutin = { version = "0.28", default-features = false, optional = true, features = ["x11"] }
4444
imgref = { version = "1.6.1", optional = true }
4545
once_cell = { version = "1.9", default-features = false, features = ["alloc", "atomic-polyfill"] }

internal/backends/testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ path = "lib.rs"
1818
[dependencies]
1919
sixtyfps-corelib = { version = "=0.2.0", path = "../../../internal/core" }
2020

21-
image = { version = "0.23.14", default-features = false, features = ["png"] }
21+
image = { version = "0.24.0", default-features = false, features = ["png"] }

internal/compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ sixtyfps-common = { version = "=0.2.0", path = "../common" }
5151

5252
# for processing and embedding the rendered image (texture)
5353
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
54-
image = "0.23"
54+
image = "0.24"
5555
tiny-skia = "0.6.1"
5656
resvg = "0.20"
5757
usvg = "0.20"

internal/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ web_sys = { version = "0.3", package = "web-sys", features=["console", "CanvasRe
7070
sixtyfps = { version = "=0.2.0", path = "../../api/sixtyfps-rs", default-features = false, features = ["std"] }
7171
sixtyfps-rendering-backend-testing = { path="../backends/testing" }
7272

73-
image = { version = "0.23.14", default-features = false, features = [ "png" ] }
73+
image = { version = "0.24.0", default-features = false, features = [ "png" ] }
7474
pin-weak = "1"
7575
tiny-skia = "0.6.1"

0 commit comments

Comments
 (0)