@img/sharp-libvips-dev-wasm32 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/expat.h +21 -10
- package/include/expat_config.h +11 -5
- package/include/ffi.h +12 -25
- package/include/glib-2.0/gio/gapplication.h +6 -0
- package/include/glib-2.0/gio/giotypes.h +0 -1
- package/include/glib-2.0/glib/deprecated/gthread.h +9 -5
- package/include/glib-2.0/glib/gbitlock.h +31 -0
- package/include/glib-2.0/glib/gmessages.h +8 -0
- package/include/glib-2.0/glib/gslice.h +2 -0
- package/include/glib-2.0/glib/gstrfuncs.h +24 -18
- package/include/glib-2.0/glib/gthread.h +191 -3
- package/include/glib-2.0/glib-unix.h +7 -1
- package/include/glib-2.0/gobject/genums.h +6 -6
- package/include/glib-2.0/gobject/glib-types.h +11 -0
- package/include/glib-2.0/gobject/gsignal.h +16 -6
- package/include/hwy/aligned_allocator.h +171 -6
- package/include/hwy/base.h +1765 -543
- package/include/hwy/cache_control.h +24 -6
- package/include/hwy/detect_compiler_arch.h +23 -2
- package/include/hwy/detect_targets.h +56 -13
- package/include/hwy/foreach_target.h +24 -0
- package/include/hwy/highway.h +20 -3
- package/include/hwy/ops/arm_neon-inl.h +1086 -667
- package/include/hwy/ops/arm_sve-inl.h +1091 -235
- package/include/hwy/ops/emu128-inl.h +271 -196
- package/include/hwy/ops/generic_ops-inl.h +2270 -399
- package/include/hwy/ops/ppc_vsx-inl.h +1786 -563
- package/include/hwy/ops/rvv-inl.h +1043 -311
- package/include/hwy/ops/scalar-inl.h +189 -159
- package/include/hwy/ops/set_macros-inl.h +66 -6
- package/include/hwy/ops/shared-inl.h +175 -56
- package/include/hwy/ops/wasm_128-inl.h +153 -136
- package/include/hwy/ops/x86_128-inl.h +1647 -646
- package/include/hwy/ops/x86_256-inl.h +1003 -370
- package/include/hwy/ops/x86_512-inl.h +948 -353
- package/include/hwy/per_target.h +4 -0
- package/include/hwy/profiler.h +648 -0
- package/include/hwy/robust_statistics.h +2 -2
- package/include/hwy/targets.h +18 -11
- package/include/hwy/timer.h +11 -0
- package/include/resvg.h +15 -3
- package/include/vips/connection.h +9 -3
- package/include/vips/util.h +0 -9
- package/include/vips/version.h +4 -4
- package/include/zconf.h +3 -0
- package/include/zlib.h +3 -3
- package/lib/glib-2.0/include/glibconfig.h +2 -1
- package/lib/libaom.a +0 -0
- package/lib/libexpat.a +0 -0
- package/lib/libexpat.la +3 -3
- package/lib/libffi.a +0 -0
- package/lib/libffi.la +2 -2
- package/lib/libgio-2.0.a +0 -0
- package/lib/libglib-2.0.a +0 -0
- package/lib/libgobject-2.0.a +0 -0
- package/lib/libhwy.a +0 -0
- package/lib/libjpeg.a +0 -0
- package/lib/libresvg.a +0 -0
- package/lib/libvips.a +0 -0
- package/lib/libz.a +0 -0
- package/lib/pkgconfig/aom.pc +2 -2
- package/lib/pkgconfig/expat.pc +2 -1
- package/lib/pkgconfig/gio-2.0.pc +1 -1
- package/lib/pkgconfig/glib-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
- package/lib/pkgconfig/gobject-2.0.pc +1 -1
- package/lib/pkgconfig/gthread-2.0.pc +1 -1
- package/lib/pkgconfig/libffi.pc +1 -1
- package/lib/pkgconfig/libhwy.pc +1 -1
- package/lib/pkgconfig/vips-cpp.pc +1 -1
- package/lib/pkgconfig/vips.pc +1 -1
- package/package.json +1 -1
- package/versions.json +8 -8
package/include/hwy/targets.h
CHANGED
|
@@ -127,6 +127,13 @@ static inline HWY_MAYBE_UNUSED const char* TargetName(int64_t target) {
|
|
|
127
127
|
return "PPC10";
|
|
128
128
|
#endif
|
|
129
129
|
|
|
130
|
+
#if HWY_ARCH_S390X
|
|
131
|
+
case HWY_Z14:
|
|
132
|
+
return "Z14";
|
|
133
|
+
case HWY_Z15:
|
|
134
|
+
return "Z15";
|
|
135
|
+
#endif
|
|
136
|
+
|
|
130
137
|
#if HWY_ARCH_WASM
|
|
131
138
|
case HWY_WASM:
|
|
132
139
|
return "WASM";
|
|
@@ -245,20 +252,20 @@ static inline HWY_MAYBE_UNUSED const char* TargetName(int64_t target) {
|
|
|
245
252
|
HWY_CHOOSE_RVV(func_name), /* RVV */ \
|
|
246
253
|
nullptr /* reserved */
|
|
247
254
|
|
|
248
|
-
#elif HWY_ARCH_PPC
|
|
255
|
+
#elif HWY_ARCH_PPC || HWY_ARCH_S390X
|
|
249
256
|
// See HWY_ARCH_X86 above for details.
|
|
250
257
|
#define HWY_MAX_DYNAMIC_TARGETS 9
|
|
251
258
|
#define HWY_HIGHEST_TARGET_BIT HWY_HIGHEST_TARGET_BIT_PPC
|
|
252
|
-
#define HWY_CHOOSE_TARGET_LIST(func_name)
|
|
253
|
-
nullptr, /* reserved */
|
|
254
|
-
nullptr, /* reserved */
|
|
255
|
-
nullptr, /* reserved */
|
|
256
|
-
nullptr, /* reserved */
|
|
257
|
-
HWY_CHOOSE_PPC10(func_name), /* PPC10 */
|
|
258
|
-
HWY_CHOOSE_PPC9(func_name), /* PPC9 */
|
|
259
|
-
HWY_CHOOSE_PPC8(func_name), /* PPC8 */
|
|
260
|
-
|
|
261
|
-
|
|
259
|
+
#define HWY_CHOOSE_TARGET_LIST(func_name) \
|
|
260
|
+
nullptr, /* reserved */ \
|
|
261
|
+
nullptr, /* reserved */ \
|
|
262
|
+
nullptr, /* reserved */ \
|
|
263
|
+
nullptr, /* reserved */ \
|
|
264
|
+
HWY_CHOOSE_PPC10(func_name), /* PPC10 */ \
|
|
265
|
+
HWY_CHOOSE_PPC9(func_name), /* PPC9 */ \
|
|
266
|
+
HWY_CHOOSE_PPC8(func_name), /* PPC8 */ \
|
|
267
|
+
HWY_CHOOSE_Z15(func_name), /* Z15 */ \
|
|
268
|
+
HWY_CHOOSE_Z14(func_name) /* Z14 */
|
|
262
269
|
|
|
263
270
|
#elif HWY_ARCH_WASM
|
|
264
271
|
// See HWY_ARCH_X86 above for details.
|
package/include/hwy/timer.h
CHANGED
|
@@ -50,6 +50,17 @@ HWY_DLLEXPORT double InvariantTicksPerSecond();
|
|
|
50
50
|
HWY_DLLEXPORT uint64_t TimerResolution();
|
|
51
51
|
|
|
52
52
|
} // namespace platform
|
|
53
|
+
|
|
54
|
+
struct Timestamp {
|
|
55
|
+
Timestamp() { t = platform::Now(); }
|
|
56
|
+
double t;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
static inline double SecondsSince(const Timestamp& t0) {
|
|
60
|
+
const Timestamp t1;
|
|
61
|
+
return t1.t - t0.t;
|
|
62
|
+
}
|
|
63
|
+
|
|
53
64
|
} // namespace hwy
|
|
54
65
|
|
|
55
66
|
#endif // HIGHWAY_HWY_TIMER_H_
|
package/include/resvg.h
CHANGED
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
#include <stdint.h>
|
|
18
18
|
|
|
19
19
|
#define RESVG_MAJOR_VERSION 0
|
|
20
|
-
#define RESVG_MINOR_VERSION
|
|
20
|
+
#define RESVG_MINOR_VERSION 40
|
|
21
21
|
#define RESVG_PATCH_VERSION 0
|
|
22
|
-
#define RESVG_VERSION "0.
|
|
22
|
+
#define RESVG_VERSION "0.40.0"
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* @brief List of possible errors.
|
|
@@ -431,7 +431,7 @@ bool resvg_get_node_transform(const resvg_render_tree *tree,
|
|
|
431
431
|
resvg_transform *transform);
|
|
432
432
|
|
|
433
433
|
/**
|
|
434
|
-
* @brief Returns node's bounding box by ID.
|
|
434
|
+
* @brief Returns node's bounding box in canvas coordinates by ID.
|
|
435
435
|
*
|
|
436
436
|
* @param tree Render tree.
|
|
437
437
|
* @param id Node's ID. Must not be NULL.
|
|
@@ -442,6 +442,18 @@ bool resvg_get_node_transform(const resvg_render_tree *tree,
|
|
|
442
442
|
*/
|
|
443
443
|
bool resvg_get_node_bbox(const resvg_render_tree *tree, const char *id, resvg_rect *bbox);
|
|
444
444
|
|
|
445
|
+
/**
|
|
446
|
+
* @brief Returns node's bounding box, including stroke, in canvas coordinates by ID.
|
|
447
|
+
*
|
|
448
|
+
* @param tree Render tree.
|
|
449
|
+
* @param id Node's ID. Must not be NULL.
|
|
450
|
+
* @param bbox Node's bounding box.
|
|
451
|
+
* @return `false` if a node with such an ID does not exist
|
|
452
|
+
* @return `false` if ID isn't a UTF-8 string.
|
|
453
|
+
* @return `false` if ID is an empty string
|
|
454
|
+
*/
|
|
455
|
+
bool resvg_get_node_stroke_bbox(const resvg_render_tree *tree, const char *id, resvg_rect *bbox);
|
|
456
|
+
|
|
445
457
|
/**
|
|
446
458
|
* @brief Destroys the #resvg_render_tree.
|
|
447
459
|
*/
|
|
@@ -428,8 +428,11 @@ struct _VipsTarget {
|
|
|
428
428
|
int write_point;
|
|
429
429
|
|
|
430
430
|
/* Write position in memory_buffer.
|
|
431
|
+
*
|
|
432
|
+
* off_t can be 32 bits on some platforms, so make sure we have a
|
|
433
|
+
* full 64.
|
|
431
434
|
*/
|
|
432
|
-
|
|
435
|
+
gint64 position;
|
|
433
436
|
|
|
434
437
|
/* Temp targets on the filesystem need deleting, sometimes.
|
|
435
438
|
*/
|
|
@@ -466,8 +469,11 @@ typedef struct _VipsTargetClass {
|
|
|
466
469
|
gint64 (*read)(VipsTarget *, void *, size_t);
|
|
467
470
|
|
|
468
471
|
/* Seek output. Args exactly as lseek(2).
|
|
472
|
+
*
|
|
473
|
+
* We have to use int64 rather than off_t, since we must work on
|
|
474
|
+
* Windows, where off_t can be 32-bits.
|
|
469
475
|
*/
|
|
470
|
-
|
|
476
|
+
gint64 (*seek)(VipsTarget *, gint64 offset, int whence);
|
|
471
477
|
|
|
472
478
|
/* Output has been generated, so do any clearing up,
|
|
473
479
|
* eg. copy the bytes we saved in memory to the target blob.
|
|
@@ -492,7 +498,7 @@ int vips_target_write(VipsTarget *target, const void *data, size_t length);
|
|
|
492
498
|
VIPS_API
|
|
493
499
|
gint64 vips_target_read(VipsTarget *target, void *buffer, size_t length);
|
|
494
500
|
VIPS_API
|
|
495
|
-
|
|
501
|
+
gint64 vips_target_seek(VipsTarget *target, gint64 offset, int whence);
|
|
496
502
|
VIPS_API
|
|
497
503
|
int vips_target_end(VipsTarget *target);
|
|
498
504
|
VIPS_DEPRECATED_FOR(vips_target_end)
|
package/include/vips/util.h
CHANGED
|
@@ -164,15 +164,6 @@ extern "C" {
|
|
|
164
164
|
} \
|
|
165
165
|
G_STMT_END
|
|
166
166
|
|
|
167
|
-
/* The g_info() macro was added in 2.40.
|
|
168
|
-
*/
|
|
169
|
-
#ifndef g_info
|
|
170
|
-
/* Hopefully we have varargs macros. Maybe revisit this.
|
|
171
|
-
*/
|
|
172
|
-
#define g_info(...) \
|
|
173
|
-
g_log(G_LOG_DOMAIN, G_LOG_LEVEL_INFO, __VA_ARGS__)
|
|
174
|
-
#endif
|
|
175
|
-
|
|
176
167
|
/* Various integer range clips. Record over/under flows.
|
|
177
168
|
*/
|
|
178
169
|
#define VIPS_CLIP_UCHAR(V, SEQ) \
|
package/include/vips/version.h
CHANGED
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
#ifndef VIPS_VERSION_H
|
|
5
5
|
#define VIPS_VERSION_H
|
|
6
6
|
|
|
7
|
-
#define VIPS_VERSION "8.15.
|
|
8
|
-
#define VIPS_VERSION_STRING "8.15.
|
|
7
|
+
#define VIPS_VERSION "8.15.2"
|
|
8
|
+
#define VIPS_VERSION_STRING "8.15.2"
|
|
9
9
|
#define VIPS_MAJOR_VERSION (8)
|
|
10
10
|
#define VIPS_MINOR_VERSION (15)
|
|
11
|
-
#define VIPS_MICRO_VERSION (
|
|
11
|
+
#define VIPS_MICRO_VERSION (2)
|
|
12
12
|
|
|
13
13
|
/* The ABI version, as used for library versioning.
|
|
14
14
|
*/
|
|
15
15
|
#define VIPS_LIBRARY_CURRENT (59)
|
|
16
|
-
#define VIPS_LIBRARY_REVISION (
|
|
16
|
+
#define VIPS_LIBRARY_REVISION (2)
|
|
17
17
|
#define VIPS_LIBRARY_AGE (17)
|
|
18
18
|
|
|
19
19
|
#define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable cplusplus: true\nenable RAD load/save: true\nenable Analyze7 load/save: true\nenable PPM load/save: true\nenable GIF load: true\nuse fftw for FFTs: false\nSIMD support with highway: true\nICC profile support with lcms: true\nzlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with libspng: true\nPNG load/save with libpng: false\nselected quantisation package: imagequant\nTIFF load/save with libtiff: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium: false\nPDF load with poppler-glib: false (dynamic module: false)\nSVG load with librsvg: false\nSVG load with resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nOpenSlide load: false (dynamic module: false)\nMatlab load with libmatio: false\nNIfTI load/save with niftiio: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nselected Magick package: none (dynamic module: false)\nMagick API version: none\nMagick load: false\nMagick save: false"
|
package/include/zconf.h
CHANGED
package/include/zlib.h
CHANGED
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
extern "C" {
|
|
50
50
|
#endif
|
|
51
51
|
|
|
52
|
-
#define ZLIBNG_VERSION "2.1.
|
|
53
|
-
#define ZLIBNG_VERNUM
|
|
52
|
+
#define ZLIBNG_VERSION "2.1.6"
|
|
53
|
+
#define ZLIBNG_VERNUM 0x020106F0L /* MMNNRRSM: major minor revision status modified */
|
|
54
54
|
#define ZLIBNG_VER_MAJOR 2
|
|
55
55
|
#define ZLIBNG_VER_MINOR 1
|
|
56
|
-
#define ZLIBNG_VER_REVISION
|
|
56
|
+
#define ZLIBNG_VER_REVISION 6
|
|
57
57
|
#define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
|
|
58
58
|
#define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-E=beta, F=Release */
|
|
59
59
|
#define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
#define GOBJECT_STATIC_COMPILATION 1
|
|
17
17
|
#define GIO_STATIC_COMPILATION 1
|
|
18
18
|
#define GMODULE_STATIC_COMPILATION 1
|
|
19
|
+
#define GI_STATIC_COMPILATION 1
|
|
19
20
|
#define G_INTL_STATIC_COMPILATION 1
|
|
20
21
|
#define FFI_STATIC_BUILD 1
|
|
21
22
|
|
|
@@ -113,7 +114,7 @@ typedef unsigned int guintptr;
|
|
|
113
114
|
#define G_GUINTPTR_FORMAT "u"
|
|
114
115
|
|
|
115
116
|
#define GLIB_MAJOR_VERSION 2
|
|
116
|
-
#define GLIB_MINOR_VERSION
|
|
117
|
+
#define GLIB_MINOR_VERSION 80
|
|
117
118
|
#define GLIB_MICRO_VERSION 0
|
|
118
119
|
|
|
119
120
|
#define G_OS_UNIX
|
package/lib/libaom.a
CHANGED
|
Binary file
|
package/lib/libexpat.a
CHANGED
|
Binary file
|
package/lib/libexpat.la
CHANGED
package/lib/libffi.a
CHANGED
|
Binary file
|
package/lib/libffi.la
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# libffi.la - a libtool library file
|
|
2
|
-
# Generated by libtool (GNU libtool) 2.4.
|
|
2
|
+
# Generated by libtool (GNU libtool) 2.4.7
|
|
3
3
|
#
|
|
4
4
|
# Please DO NOT delete this file!
|
|
5
5
|
# It is necessary for linking the library.
|
|
@@ -25,7 +25,7 @@ weak_library_names=''
|
|
|
25
25
|
# Version information for libffi.
|
|
26
26
|
current=9
|
|
27
27
|
age=1
|
|
28
|
-
revision=
|
|
28
|
+
revision=4
|
|
29
29
|
|
|
30
30
|
# Is this an already installed library?
|
|
31
31
|
installed=yes
|
package/lib/libgio-2.0.a
CHANGED
|
Binary file
|
package/lib/libglib-2.0.a
CHANGED
|
Binary file
|
package/lib/libgobject-2.0.a
CHANGED
|
Binary file
|
package/lib/libhwy.a
CHANGED
|
Binary file
|
package/lib/libjpeg.a
CHANGED
|
Binary file
|
package/lib/libresvg.a
CHANGED
|
Binary file
|
package/lib/libvips.a
CHANGED
|
Binary file
|
package/lib/libz.a
CHANGED
|
Binary file
|
package/lib/pkgconfig/aom.pc
CHANGED
|
@@ -5,8 +5,8 @@ includedir=${prefix}/include
|
|
|
5
5
|
libdir=${exec_prefix}/lib
|
|
6
6
|
|
|
7
7
|
Name: aom
|
|
8
|
-
Description: Alliance for Open Media AV1 codec library v3.8.
|
|
9
|
-
Version: 3.8.
|
|
8
|
+
Description: Alliance for Open Media AV1 codec library v3.8.2.
|
|
9
|
+
Version: 3.8.2
|
|
10
10
|
Requires:
|
|
11
11
|
Conflicts:
|
|
12
12
|
Libs: -L${libdir} -laom
|
package/lib/pkgconfig/expat.pc
CHANGED
|
@@ -4,9 +4,10 @@ libdir=${exec_prefix}/lib
|
|
|
4
4
|
includedir=${prefix}/include
|
|
5
5
|
|
|
6
6
|
Name: expat
|
|
7
|
-
Version: 2.
|
|
7
|
+
Version: 2.6.2
|
|
8
8
|
Description: expat XML parser
|
|
9
9
|
URL: https://libexpat.github.io/
|
|
10
10
|
Libs: -L${libdir} -lexpat
|
|
11
11
|
Libs.private: -lm
|
|
12
12
|
Cflags: -I${includedir}
|
|
13
|
+
Cflags.private: -DXML_STATIC
|
package/lib/pkgconfig/gio-2.0.pc
CHANGED
|
@@ -11,6 +11,6 @@ glib_valgrind_suppressions=${datadir}/glib-2.0/valgrind/glib.supp
|
|
|
11
11
|
|
|
12
12
|
Name: GLib
|
|
13
13
|
Description: C Utility Library
|
|
14
|
-
Version: 2.
|
|
14
|
+
Version: 2.80.0
|
|
15
15
|
Libs: -L${libdir} -lglib-2.0 -lm -pthread
|
|
16
16
|
Cflags: -I${includedir}/glib-2.0 -pthread -I${libdir}/glib-2.0/include
|
package/lib/pkgconfig/libffi.pc
CHANGED
package/lib/pkgconfig/libhwy.pc
CHANGED
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips-cpp
|
|
6
6
|
Description: C++ API for vips8 image processing library
|
|
7
|
-
Version: 8.15.
|
|
7
|
+
Version: 8.15.2
|
|
8
8
|
Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, spng >= 0.7, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.4.0
|
|
9
9
|
Libs: -L${libdir} -lvips-cpp -pthread -lm -lresvg
|
|
10
10
|
Cflags: -I${includedir} -pthread -DHAVE_CONFIG_H=1
|
package/lib/pkgconfig/vips.pc
CHANGED
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips
|
|
6
6
|
Description: Image processing library
|
|
7
|
-
Version: 8.15.
|
|
7
|
+
Version: 8.15.2
|
|
8
8
|
Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, spng >= 0.7, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.4.0
|
|
9
9
|
Libs: -L${libdir} -lvips -pthread -lm -lresvg
|
|
10
10
|
Cflags: -I${includedir} -pthread -DHAVE_CONFIG_H=1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev-wasm32",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Header files and static wasm32 libraries for libvips and dependencies to build sharp as wasm32",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|
package/versions.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
"aom": "3.8.
|
|
2
|
+
"aom": "3.8.2",
|
|
3
3
|
"cgif": "0.3.2",
|
|
4
4
|
"emscripten": "3.1.51",
|
|
5
5
|
"exif": "0.6.24",
|
|
6
|
-
"expat": "2.
|
|
7
|
-
"ffi": "3.4.
|
|
8
|
-
"glib": "2.
|
|
6
|
+
"expat": "2.6.2",
|
|
7
|
+
"ffi": "3.4.6",
|
|
8
|
+
"glib": "2.80.0",
|
|
9
9
|
"heif": "1.17.6",
|
|
10
|
-
"highway": "1.0
|
|
10
|
+
"highway": "1.1.0",
|
|
11
11
|
"imagequant": "2.4.1",
|
|
12
12
|
"lcms": "2.16",
|
|
13
13
|
"mozjpeg": "4.1.5",
|
|
14
|
-
"resvg": "0.
|
|
14
|
+
"resvg": "0.40.0",
|
|
15
15
|
"spng": "0.7.4",
|
|
16
16
|
"tiff": "4.6.0",
|
|
17
|
-
"vips": "8.15.
|
|
17
|
+
"vips": "8.15.2",
|
|
18
18
|
"webp": "1.3.2",
|
|
19
|
-
"zlib-ng": "2.1.
|
|
19
|
+
"zlib-ng": "2.1.6"
|
|
20
20
|
}
|