diff --git a/Cargo.lock b/Cargo.lock index 9a1577644..103f6b3e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -181,12 +181,6 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fd4c6dcc3b0aea2f5c0b4b82c2b15fe39ddbc76041a310848f4706edf76bb31" -[[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - [[package]] name = "byteorder-lite" version = "0.1.0" @@ -478,12 +472,12 @@ dependencies = [ [[package]] name = "image" -version = "0.25.1" +version = "0.25.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11" +checksum = "99314c8a2152b8ddb211f924cdae532d8c5e4c8bb54728e12fff1b0cd5963a10" dependencies = [ "bytemuck", - "byteorder", + "byteorder-lite", "color_quant", "exr", "gif", diff --git a/crates/sic_core/Cargo.toml b/crates/sic_core/Cargo.toml index a8dbe1a07..8e3a4e23f 100644 --- a/crates/sic_core/Cargo.toml +++ b/crates/sic_core/Cargo.toml @@ -11,7 +11,7 @@ edition = "2021" rust-version = "1.61" [dependencies] -image = { version = "0.25.1", features = ["rayon"] } +image = { version = "0.25.2", features = ["rayon"] } imageproc = { version = "0.25.0", optional = true } ab_glyph = { version = "0.2.28", optional = true } thiserror = "1"