@img/sharp-libvips-dev 0.0.1 → 0.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.
Files changed (103) hide show
  1. package/README.md +2 -2
  2. package/cplusplus/VConnection.cpp +54 -54
  3. package/cplusplus/VError.cpp +20 -18
  4. package/cplusplus/VImage.cpp +636 -589
  5. package/cplusplus/VInterpolate.cpp +22 -22
  6. package/cplusplus/VRegion.cpp +4 -4
  7. package/cplusplus/vips-operators.cpp +2326 -2301
  8. package/include/aom/aom_codec.h +10 -6
  9. package/include/aom/aom_decoder.h +1 -1
  10. package/include/aom/aom_encoder.h +9 -2
  11. package/include/aom/aomcx.h +72 -3
  12. package/include/cairo/cairo-ft.h +1 -1
  13. package/include/cairo/cairo-gobject.h +8 -0
  14. package/include/cairo/cairo-svg.h +3 -3
  15. package/include/cairo/cairo-version.h +2 -2
  16. package/include/cairo/cairo.h +91 -24
  17. package/include/harfbuzz/hb-version.h +2 -2
  18. package/include/hwy/aligned_allocator.h +211 -0
  19. package/include/hwy/base.h +1517 -0
  20. package/include/hwy/cache_control.h +108 -0
  21. package/include/hwy/detect_compiler_arch.h +281 -0
  22. package/include/hwy/detect_targets.h +644 -0
  23. package/include/hwy/foreach_target.h +340 -0
  24. package/include/hwy/highway.h +435 -0
  25. package/include/hwy/highway_export.h +74 -0
  26. package/include/hwy/nanobenchmark.h +171 -0
  27. package/include/hwy/ops/arm_neon-inl.h +8913 -0
  28. package/include/hwy/ops/arm_sve-inl.h +5105 -0
  29. package/include/hwy/ops/emu128-inl.h +2811 -0
  30. package/include/hwy/ops/generic_ops-inl.h +4745 -0
  31. package/include/hwy/ops/ppc_vsx-inl.h +5716 -0
  32. package/include/hwy/ops/rvv-inl.h +5070 -0
  33. package/include/hwy/ops/scalar-inl.h +1995 -0
  34. package/include/hwy/ops/set_macros-inl.h +578 -0
  35. package/include/hwy/ops/shared-inl.h +539 -0
  36. package/include/hwy/ops/tuple-inl.h +125 -0
  37. package/include/hwy/ops/wasm_128-inl.h +5917 -0
  38. package/include/hwy/ops/x86_128-inl.h +11173 -0
  39. package/include/hwy/ops/x86_256-inl.h +7529 -0
  40. package/include/hwy/ops/x86_512-inl.h +6849 -0
  41. package/include/hwy/per_target.h +44 -0
  42. package/include/hwy/print-inl.h +62 -0
  43. package/include/hwy/print.h +75 -0
  44. package/include/hwy/robust_statistics.h +148 -0
  45. package/include/hwy/targets.h +338 -0
  46. package/include/hwy/timer-inl.h +200 -0
  47. package/include/hwy/timer.h +55 -0
  48. package/include/jconfig.h +2 -2
  49. package/include/jpeglib.h +3 -2
  50. package/include/libheif/heif.h +443 -377
  51. package/include/libheif/heif_cxx.h +4 -1
  52. package/include/libheif/heif_plugin.h +1 -1
  53. package/include/libheif/heif_properties.h +138 -0
  54. package/include/libheif/heif_regions.h +866 -0
  55. package/include/libheif/heif_version.h +3 -3
  56. package/include/vips/VConnection8.h +43 -49
  57. package/include/vips/VError8.h +27 -24
  58. package/include/vips/VImage8.h +4861 -4597
  59. package/include/vips/VInterpolate8.h +24 -27
  60. package/include/vips/VRegion8.h +32 -33
  61. package/include/vips/arithmetic.h +169 -169
  62. package/include/vips/basic.h +33 -33
  63. package/include/vips/buf.h +56 -54
  64. package/include/vips/colour.h +95 -95
  65. package/include/vips/connection.h +190 -193
  66. package/include/vips/conversion.h +91 -91
  67. package/include/vips/convolution.h +36 -30
  68. package/include/vips/create.h +63 -63
  69. package/include/vips/dbuf.h +35 -37
  70. package/include/vips/debug.h +65 -33
  71. package/include/vips/draw.h +41 -41
  72. package/include/vips/enumtypes.h +54 -51
  73. package/include/vips/error.h +63 -63
  74. package/include/vips/foreign.h +263 -223
  75. package/include/vips/format.h +48 -48
  76. package/include/vips/freqfilt.h +22 -22
  77. package/include/vips/gate.h +55 -47
  78. package/include/vips/generate.h +34 -34
  79. package/include/vips/header.h +111 -101
  80. package/include/vips/histogram.h +28 -28
  81. package/include/vips/image.h +213 -213
  82. package/include/vips/interpolate.h +40 -41
  83. package/include/vips/memory.h +61 -52
  84. package/include/vips/morphology.h +24 -24
  85. package/include/vips/mosaicing.h +32 -33
  86. package/include/vips/object.h +371 -357
  87. package/include/vips/operation.h +68 -67
  88. package/include/vips/private.h +76 -76
  89. package/include/vips/rect.h +26 -26
  90. package/include/vips/region.h +92 -92
  91. package/include/vips/resample.h +38 -38
  92. package/include/vips/sbuf.h +53 -54
  93. package/include/vips/semaphore.h +24 -24
  94. package/include/vips/thread.h +30 -27
  95. package/include/vips/threadpool.h +48 -49
  96. package/include/vips/transform.h +39 -39
  97. package/include/vips/type.h +90 -85
  98. package/include/vips/util.h +274 -229
  99. package/include/vips/vector.h +24 -144
  100. package/include/vips/version.h +9 -9
  101. package/include/vips/vips.h +41 -40
  102. package/package.json +1 -1
  103. package/versions.json +7 -7
@@ -1,180 +1,60 @@
1
- /* helper stuff for Orc
1
+ /* helper stuff for Highway
2
2
  *
3
- * 29/10/10
4
- * - from im_dilate hackery
3
+ * 16/03/21 kleisauke
4
+ * - from vector.h
5
5
  */
6
6
 
7
7
  /*
8
8
 
9
- This file is part of VIPS.
10
-
11
- VIPS is free software; you can redistribute it and/or modify
12
- it under the terms of the GNU Lesser General Public License as published by
13
- the Free Software Foundation; either version 2 of the License, or
14
- (at your option) any later version.
9
+ This file is part of VIPS.
15
10
 
16
- This program is distributed in the hope that it will be useful,
17
- but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- GNU Lesser General Public License for more details.
11
+ VIPS is free software; you can redistribute it and/or modify
12
+ it under the terms of the GNU Lesser General Public License as published by
13
+ the Free Software Foundation; either version 2 of the License, or
14
+ (at your option) any later version.
20
15
 
21
- You should have received a copy of the GNU Lesser General Public License
22
- along with this program; if not, write to the Free Software
23
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24
- 02110-1301 USA
16
+ This program is distributed in the hope that it will be useful,
17
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ GNU Lesser General Public License for more details.
20
+
21
+ You should have received a copy of the GNU Lesser General Public License
22
+ along with this program; if not, write to the Free Software
23
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24
+ 02110-1301 USA
25
25
 
26
26
  */
27
27
 
28
28
  /*
29
29
 
30
- These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
30
+ These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
31
31
 
32
32
  */
33
33
 
34
34
  #ifndef VIPS_VECTOR_H
35
35
  #define VIPS_VECTOR_H
36
36
 
37
- /* If we are building with -fcf-protection (run-time checking of
38
- * indirect jumps) then Orc won't work. Make sure it's off.
39
- *
40
- * https://gcc.gnu.org/onlinedocs/gcc/\
41
- * Instrumentation-Options.html#index-fcf-protection
42
- * https://gitlab.freedesktop.org/gstreamer/orc/issues/17
43
- *
44
- * orc 0.4.30 and later work with cf-protection.
45
- */
46
- #ifdef __CET__
47
- #ifndef HAVE_ORC_CF_PROTECTION
48
- #undef HAVE_ORC
49
- #endif
50
- #endif
51
-
52
- #ifdef HAVE_ORC
53
- #include <orc/orc.h>
54
- #endif /*HAVE_ORC*/
55
-
56
37
  #ifdef __cplusplus
57
38
  extern "C" {
58
39
  #endif /*__cplusplus*/
59
40
 
60
- #define VIPS_VECTOR_SOURCE_MAX (10)
61
-
62
- /* An Orc program.
63
- */
64
- typedef struct {
65
- /* Handy for debugging.
66
- */
67
- const char *name;
68
- char *unique_name;
69
-
70
- /* How many resources we've used so far in this codegen.
71
- */
72
- int n_temp;
73
- int n_scanline;
74
- int n_source;
75
- int n_destination;
76
- int n_constant;
77
- int n_parameter;
78
- int n_instruction;
79
-
80
- /* The scanline sources, and for each variable, the associated line.
81
- * "sl0" onwards.
82
- */
83
- int sl[VIPS_VECTOR_SOURCE_MAX];
84
- int line[VIPS_VECTOR_SOURCE_MAX];
85
-
86
- /* Non-scanline sources, "s1" etc. s[0] is the var for "s1".
87
- */
88
- int s[VIPS_VECTOR_SOURCE_MAX];
89
-
90
- /* The destination var.
91
- */
92
- int d1;
93
-
94
- #ifdef HAVE_ORC
95
- /* The code we have generated.
96
- */
97
- OrcProgram *program;
98
- #endif /*HAVE_ORC*/
99
-
100
- /* Compiled successfully.
101
- */
102
- gboolean compiled;
103
- } VipsVector;
104
-
105
- /* An executor.
106
- */
107
- typedef struct {
108
- #ifdef HAVE_ORC
109
- OrcExecutor executor;
110
- #endif /*HAVE_ORC*/
111
-
112
- VipsVector *vector;
113
- } VipsExecutor;
114
-
115
41
  /* Set from the command-line.
116
42
  */
117
43
  extern gboolean vips__vector_enabled;
118
44
 
119
45
  VIPS_API
120
- void vips_vector_init( void );
121
- VIPS_API
122
- gboolean vips_vector_isenabled( void );
123
- VIPS_API
124
- void vips_vector_set_enabled( gboolean enabled );
125
-
126
- VIPS_API
127
- void vips_vector_free( VipsVector *vector );
128
- VIPS_API
129
- VipsVector *vips_vector_new( const char *name, int dsize );
130
-
131
- VIPS_API
132
- void vips_vector_constant( VipsVector *vector,
133
- char *name, int value, int size );
134
- VIPS_API
135
- void vips_vector_source_scanline( VipsVector *vector,
136
- char *name, int line, int size );
137
- VIPS_API
138
- int vips_vector_source_name( VipsVector *vector, const char *name, int size );
139
- VIPS_API
140
- void vips_vector_temporary( VipsVector *vector, const char *name, int size );
141
- VIPS_API
142
- int vips_vector_parameter( VipsVector *vector, const char *name, int size );
46
+ gboolean vips_vector_isenabled(void);
143
47
  VIPS_API
144
- int vips_vector_destination( VipsVector *vector, const char *name, int size );
145
- VIPS_API
146
- void vips_vector_asm2( VipsVector *vector,
147
- const char *op, const char *a, const char *b );
148
- VIPS_API
149
- void vips_vector_asm3( VipsVector *vector,
150
- const char *op, const char *a, const char *b, const char *c );
151
- VIPS_API
152
- gboolean vips_vector_full( VipsVector *vector );
48
+ void vips_vector_set_enabled(gboolean enabled);
153
49
 
154
50
  VIPS_API
155
- gboolean vips_vector_compile( VipsVector *vector );
156
-
51
+ gint64 vips_vector_get_builtin_targets(void);
157
52
  VIPS_API
158
- void vips_vector_print( VipsVector *vector );
159
-
160
- VIPS_API
161
- void vips_executor_set_program( VipsExecutor *executor,
162
- VipsVector *vector, int n );
163
- VIPS_API
164
- void vips_executor_set_scanline( VipsExecutor *executor,
165
- VipsRegion *ir, int x, int y );
166
- VIPS_API
167
- void vips_executor_set_destination( VipsExecutor *executor, void *value );
53
+ gint64 vips_vector_get_supported_targets(void);
168
54
  VIPS_API
169
- void vips_executor_set_parameter( VipsExecutor *executor, int var, int value );
170
- VIPS_API
171
- void vips_executor_set_array( VipsExecutor *executor, int var, void *value );
172
-
173
- VIPS_API
174
- void vips_executor_run( VipsExecutor *executor );
175
-
55
+ const char *vips_vector_target_name(gint64 target);
176
56
  VIPS_API
177
- void vips_vector_to_fixed_point( double *in, int *out, int n, int scale );
57
+ void vips_vector_disable_targets(gint64 disabled_targets);
178
58
 
179
59
  #ifdef __cplusplus
180
60
  }
@@ -4,19 +4,19 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.14.5"
8
- #define VIPS_VERSION_STRING "8.14.5"
9
- #define VIPS_MAJOR_VERSION (8)
10
- #define VIPS_MINOR_VERSION (14)
11
- #define VIPS_MICRO_VERSION (5)
7
+ #define VIPS_VERSION "8.15.0"
8
+ #define VIPS_VERSION_STRING "8.15.0"
9
+ #define VIPS_MAJOR_VERSION (8)
10
+ #define VIPS_MINOR_VERSION (15)
11
+ #define VIPS_MICRO_VERSION (0)
12
12
 
13
13
  /* The ABI version, as used for library versioning.
14
14
  */
15
- #define VIPS_LIBRARY_CURRENT (58)
16
- #define VIPS_LIBRARY_REVISION (5)
17
- #define VIPS_LIBRARY_AGE (16)
15
+ #define VIPS_LIBRARY_CURRENT (59)
16
+ #define VIPS_LIBRARY_REVISION (0)
17
+ #define VIPS_LIBRARY_AGE (17)
18
18
 
19
- #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable cplusplus: true\nenable RAD load/save: false\nenable Analyze7 load/save: false\nenable PPM load/save: false\nenable GIF load: true\nuse fftw for FFTs: false\naccelerate loops with ORC: true\nICC profile support with lcms: true\nzlib: true\ntext rendering with pangocairo: true\nfont file support with fontconfig: true\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: true\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: true\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"
19
+ #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable cplusplus: true\nenable RAD load/save: false\nenable Analyze7 load/save: false\nenable PPM load/save: false\nenable GIF load: true\nuse fftw for FFTs: false\nSIMD support with highway: false\naccelerate loops with ORC: false\nICC profile support with lcms: true\nzlib: true\ntext rendering with pangocairo: true\nfont file support with fontconfig: true\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: true\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: true\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"
20
20
 
21
21
  /* Not really anything to do with versions, but this is a handy place to put
22
22
  * it.
@@ -52,28 +52,28 @@
52
52
 
53
53
  /*
54
54
 
55
- This file is part of VIPS.
56
-
57
- VIPS is free software; you can redistribute it and/or modify
58
- it under the terms of the GNU Lesser General Public License as published by
59
- the Free Software Foundation; either version 2 of the License, or
60
- (at your option) any later version.
61
-
62
- This program is distributed in the hope that it will be useful,
63
- but WITHOUT ANY WARRANTY; without even the implied warranty of
64
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
65
- GNU Lesser General Public License for more details.
66
-
67
- You should have received a copy of the GNU Lesser General Public License
68
- along with this program; if not, write to the Free Software
69
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
70
- 02110-1301 USA
55
+ This file is part of VIPS.
56
+
57
+ VIPS is free software; you can redistribute it and/or modify
58
+ it under the terms of the GNU Lesser General Public License as published by
59
+ the Free Software Foundation; either version 2 of the License, or
60
+ (at your option) any later version.
61
+
62
+ This program is distributed in the hope that it will be useful,
63
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
64
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
65
+ GNU Lesser General Public License for more details.
66
+
67
+ You should have received a copy of the GNU Lesser General Public License
68
+ along with this program; if not, write to the Free Software
69
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
70
+ 02110-1301 USA
71
71
 
72
72
  */
73
73
 
74
74
  /*
75
75
 
76
- These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
76
+ These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
77
77
 
78
78
  */
79
79
 
@@ -145,47 +145,48 @@ extern "C" {
145
145
  /* We can't use _ here since this will be compiled by our clients and they may
146
146
  * not have _().
147
147
  */
148
- #define VIPS_INIT( ARGV0 ) \
149
- (vips_version( 3 ) - vips_version( 5 ) != \
150
- VIPS_LIBRARY_CURRENT - VIPS_LIBRARY_AGE ? ( \
151
- g_warning( "ABI mismatch" ), \
152
- g_warning( "library has ABI version %d", \
153
- vips_version( 3 ) - vips_version( 5 ) ), \
154
- g_warning( "application needs ABI version %d", \
155
- VIPS_LIBRARY_CURRENT - VIPS_LIBRARY_AGE ), \
156
- vips_error( "vips_init", "ABI mismatch" ), \
157
- -1 ) : \
158
- vips_init( ARGV0 ))
148
+ #define VIPS_INIT(ARGV0) \
149
+ (vips_version(3) - vips_version(5) != \
150
+ VIPS_LIBRARY_CURRENT - VIPS_LIBRARY_AGE \
151
+ ? ( \
152
+ g_warning("ABI mismatch"), \
153
+ g_warning("library has ABI version %d", \
154
+ vips_version(3) - vips_version(5)), \
155
+ g_warning("application needs ABI version %d", \
156
+ VIPS_LIBRARY_CURRENT - VIPS_LIBRARY_AGE), \
157
+ vips_error("vips_init", "ABI mismatch"), \
158
+ -1) \
159
+ : vips_init(ARGV0))
159
160
 
160
161
  VIPS_API
161
- int vips_init( const char *argv0 );
162
+ int vips_init(const char *argv0);
162
163
  VIPS_API
163
- const char *vips_get_argv0( void );
164
+ const char *vips_get_argv0(void);
164
165
  VIPS_API
165
- const char *vips_get_prgname( void );
166
+ const char *vips_get_prgname(void);
166
167
  VIPS_API
167
- void vips_shutdown( void );
168
+ void vips_shutdown(void);
168
169
  VIPS_API
169
- void vips_thread_shutdown( void );
170
+ void vips_thread_shutdown(void);
170
171
 
171
172
  VIPS_API
172
- void vips_add_option_entries( GOptionGroup *option_group );
173
+ void vips_add_option_entries(GOptionGroup *option_group);
173
174
 
174
175
  VIPS_API
175
- void vips_leak_set( gboolean leak );
176
+ void vips_leak_set(gboolean leak);
176
177
 
177
178
  VIPS_API
178
- void vips_block_untrusted_set( gboolean state );
179
+ void vips_block_untrusted_set(gboolean state);
179
180
 
180
181
  VIPS_API
181
- const char *vips_version_string( void );
182
+ const char *vips_version_string(void);
182
183
  VIPS_API
183
- int vips_version( int flag );
184
+ int vips_version(int flag);
184
185
 
185
186
  VIPS_API
186
- const char *vips_guess_prefix( const char *argv0, const char *env_name );
187
+ const char *vips_guess_prefix(const char *argv0, const char *env_name);
187
188
  VIPS_API
188
- const char *vips_guess_libdir( const char *argv0, const char *env_name );
189
+ const char *vips_guess_libdir(const char *argv0, const char *env_name);
189
190
 
190
191
  #ifdef __cplusplus
191
192
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Header files and C++ sources for libvips and dependencies required when compiling sharp from source",
5
5
  "author": "Lovell Fuller <npm@lovell.info>",
6
6
  "homepage": "https://sharp.pixelplumbing.com",
package/versions.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
- "aom": "3.6.1",
2
+ "aom": "3.7.0",
3
3
  "archive": "3.7.2",
4
- "cairo": "1.17.8",
4
+ "cairo": "1.18.0",
5
5
  "cgif": "0.3.2",
6
6
  "exif": "0.6.24",
7
7
  "expat": "2.5.0",
@@ -11,12 +11,12 @@
11
11
  "fribidi": "1.0.13",
12
12
  "gdkpixbuf": "2.42.10",
13
13
  "glib": "2.78.0",
14
- "harfbuzz": "8.2.0",
15
- "heif": "1.16.2",
14
+ "harfbuzz": "8.2.2",
15
+ "heif": "1.17.1",
16
+ "highway": "1.0.7",
16
17
  "imagequant": "2.4.1",
17
18
  "lcms": "2.15",
18
- "mozjpeg": "4.1.4",
19
- "orc": "0.4.34",
19
+ "mozjpeg": "4.1.5",
20
20
  "pango": "1.51.0",
21
21
  "pixman": "0.42.2",
22
22
  "png": "1.6.40",
@@ -24,7 +24,7 @@
24
24
  "rsvg": "2.57.0",
25
25
  "spng": "0.7.4",
26
26
  "tiff": "4.6.0",
27
- "vips": "8.14.5",
27
+ "vips": "8.15.0-rc1",
28
28
  "webp": "1.3.2",
29
29
  "xml": "2.11.5",
30
30
  "zlib-ng": "2.1.3"