diff --git a/Cargo.lock b/Cargo.lock index 9120342..68daa1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1661,7 +1661,7 @@ dependencies = [ "symphonia", "tempfile", "thiserror 2.0.18", - "tiny-skia", + "tiny-skia 0.12.0", "tokio", "tracing", "tracing-subscriber", @@ -1807,7 +1807,7 @@ dependencies = [ "iced_runtime", "iced_selector", "nom 8.0.0", - "png 0.18.1", + "png", "sha2", "thiserror 2.0.18", ] @@ -1826,7 +1826,7 @@ dependencies = [ "log", "rustc-hash 2.1.2", "softbuffer", - "tiny-skia", + "tiny-skia 0.11.4", ] [[package]] @@ -3229,19 +3229,6 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" -[[package]] -name = "png" -version = "0.17.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" -dependencies = [ - "bitflags 1.3.2", - "crc32fast", - "fdeflate", - "flate2", - "miniz_oxide", -] - [[package]] name = "png" version = "0.18.1" @@ -3651,7 +3638,7 @@ dependencies = [ "log", "memmap2", "smithay-client-toolkit 0.19.2", - "tiny-skia", + "tiny-skia 0.11.4", ] [[package]] @@ -4333,8 +4320,22 @@ dependencies = [ "bytemuck", "cfg-if", "log", - "png 0.17.16", - "tiny-skia-path", + "tiny-skia-path 0.11.4", +] + +[[package]] +name = "tiny-skia" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea" +dependencies = [ + "arrayref", + "arrayvec", + "bytemuck", + "cfg-if", + "log", + "png", + "tiny-skia-path 0.12.0", ] [[package]] @@ -4348,6 +4349,17 @@ dependencies = [ "strict-num", ] +[[package]] +name = "tiny-skia-path" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9" +dependencies = [ + "arrayref", + "bytemuck", + "strict-num", +] + [[package]] name = "tiny-xlib" version = "0.2.5" diff --git a/Cargo.toml b/Cargo.toml index f045a56..8ee01d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ iced_wgpu = "=0.14.0" iced_tiny_skia = "=0.14.0" iced_core = "=0.14.0" iced_graphics = "=0.14.0" -tiny-skia = "=0.11.4" +tiny-skia = "=0.12.0" [[bench]] name = "grid_render"