From 63500a5f754ed3c2bf1658381d66df5a59ebebcd Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Tue, 19 Nov 2024 10:19:45 +0100 Subject: [PATCH] Update dependencies --- Dockerfile | 2 +- build.sh | 15 +++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index e51a29f23..2ba1f559b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN \ --no-modify-path \ --profile minimal \ --target wasm32-unknown-emscripten \ - --default-toolchain nightly-2024-10-21 \ + --default-toolchain nightly-2024-11-19 \ --component rust-src # Cache settings diff --git a/build.sh b/build.sh index ac18aab49..5c8b40aa1 100755 --- a/build.sh +++ b/build.sh @@ -179,8 +179,8 @@ export RUSTFLAGS+=" --remap-path-prefix=$DEPS/=" # Dependency version numbers VERSION_ZLIB_NG=2.2.2 # https://github.com/zlib-ng/zlib-ng VERSION_FFI=3.4.6 # https://github.com/libffi/libffi -VERSION_GLIB=2.82.2 # https://gitlab.gnome.org/GNOME/glib -VERSION_EXPAT=2.6.3 # https://github.com/libexpat/libexpat +VERSION_GLIB=2.83.0 # https://gitlab.gnome.org/GNOME/glib +VERSION_EXPAT=2.6.4 # https://github.com/libexpat/libexpat VERSION_EXIF=0.6.24 # https://github.com/libexif/libexif VERSION_LCMS2=2.16 # https://github.com/mm2/Little-CMS VERSION_HWY=1.2.0 # https://github.com/google/highway @@ -193,8 +193,8 @@ VERSION_CGIF=0.4.1 # https://github.com/dloebl/cgif VERSION_WEBP=1.4.0 # https://chromium.googlesource.com/webm/libwebp VERSION_TIFF=4.7.0 # https://gitlab.com/libtiff/libtiff VERSION_RESVG=0.44.0 # https://github.com/linebender/resvg -VERSION_AOM=3.10.0 # https://aomedia.googlesource.com/aom -VERSION_HEIF=1.19.1 # https://github.com/strukturag/libheif +VERSION_AOM=3.11.0 # https://aomedia.googlesource.com/aom +VERSION_HEIF=1.19.3 # https://github.com/strukturag/libheif VERSION_VIPS=8.16.0 # https://github.com/libvips/libvips VERSION_EMSCRIPTEN="$(emcc -dumpversion)" @@ -285,7 +285,7 @@ node --version curl -Ls https://github.com/GNOME/glib/compare/$VERSION_GLIB...kleisauke:wasm-vips-$VERSION_GLIB.patch | patch -p1 meson setup _build --prefix=$TARGET $MESON_ARGS --default-library=static --buildtype=release \ --force-fallback-for=gvdb -Dintrospection=disabled -Dselinux=disabled -Dxattr=false -Dlibmount=disabled -Dsysprof=disabled -Dnls=disabled \ - -Dtests=false -Dglib_assert=false -Dglib_checks=false + -Dglib_debug=disabled -Dtests=false -Dglib_assert=false -Dglib_checks=false meson install -C _build --tag devel ) @@ -447,12 +447,11 @@ node --version # Vendor dir doesn't work with -Zbuild-std due to https://github.com/rust-lang/wg-cargo-std-aware/issues/23 # Just delete the config so that all deps are downloaded from the internet rm .cargo/config - # https://github.com/etemesi254/zune-image/pull/187 - # https://github.com/bevyengine/bevy/issues/14117#issuecomment-2236518551 + # https://github.com/etemesi254/zune-image/pull/242 # https://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#the-patch-section cat >> Cargo.toml <