@utexo/rgb-lib-linux-arm64 0.3.0-beta.8 → 0.3.0-beta.9

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/README.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # RGB Lib Node.js bindings for linux arm64
2
2
 
3
- [![npm version](https://badge.fury.io/js/rgb-lib.svg)](https://badge.fury.io/js/rgb-lib)
3
+ [![npm version](https://img.shields.io/npm/v/@utexo/rgb-lib-linux-arm64.svg)](https://www.npmjs.com/package/@utexo/rgb-lib-linux-arm64)
4
4
 
5
5
  This project builds a platform-specific Node.js package for the [rgb-lib] Rust
6
6
  library and is intended to be installed as a dependency.
7
7
 
8
8
  See the [main package] for details.
9
9
 
10
- [main package]: https://www.npmjs.com/package/rgb-lib
10
+ [rgb-lib]: https://github.com/UTEXO-Protocol/rgb-lib
11
+ [main package]: https://www.npmjs.com/package/@utexo/rgb-lib
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utexo/rgb-lib-linux-arm64",
3
- "version": "0.3.0-beta.8",
3
+ "version": "0.3.0-beta.9",
4
4
  "description": "Node.js bindings for rgb-lib on linux-arm64",
5
5
  "main": "wrapper.js",
6
6
  "os": [
package/swig_wrap.cxx CHANGED
@@ -1,13 +1,13 @@
1
1
  /* ----------------------------------------------------------------------------
2
2
  * This file was automatically generated by SWIG (https://www.swig.org).
3
- * Version 4.2.0
3
+ * Version 4.2.1
4
4
  *
5
5
  * Do not make changes to this file unless you know what you are doing - modify
6
6
  * the SWIG interface file instead.
7
7
  * ----------------------------------------------------------------------------- */
8
8
 
9
9
 
10
- #define SWIG_VERSION 0x040200
10
+ #define SWIG_VERSION 0x040201
11
11
  #define SWIGJAVASCRIPT
12
12
  /* -----------------------------------------------------------------------------
13
13
  * This section contains generic SWIG labels for method/variable
@@ -133,12 +133,36 @@
133
133
  # pragma warning disable 592
134
134
  #endif
135
135
 
136
- #if __cplusplus >=201103L
136
+ #if defined(__cplusplus) && __cplusplus >=201103L
137
137
  # define SWIG_NULLPTR nullptr
138
138
  #else
139
139
  # define SWIG_NULLPTR NULL
140
140
  #endif
141
141
 
142
+ /* -----------------------------------------------------------------------------
143
+ * swigcompat.swg
144
+ *
145
+ * Macros to provide support compatibility with older C and C++ standards.
146
+ * ----------------------------------------------------------------------------- */
147
+
148
+ /* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
149
+ * if you're missing it.
150
+ */
151
+ #if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
152
+ (defined __cplusplus && __cplusplus >= 201103L) || \
153
+ defined SWIG_HAVE_SNPRINTF) && \
154
+ !defined SWIG_NO_SNPRINTF
155
+ # define SWIG_snprintf(O,S,F,A) snprintf(O,S,F,A)
156
+ # define SWIG_snprintf2(O,S,F,A,B) snprintf(O,S,F,A,B)
157
+ #else
158
+ /* Fallback versions ignore the buffer size, but most of our uses either have a
159
+ * fixed maximum possible size or dynamically allocate a buffer that's large
160
+ * enough.
161
+ */
162
+ # define SWIG_snprintf(O,S,F,A) sprintf(O,F,A)
163
+ # define SWIG_snprintf2(O,S,F,A,B) sprintf(O,F,A,B)
164
+ #endif
165
+
142
166
 
143
167
 
144
168
  #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
@@ -348,23 +372,6 @@ SWIGINTERNINLINE int SWIG_CheckState(int r) {
348
372
  # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
349
373
  #endif
350
374
 
351
- /* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
352
- * if you're missing it.
353
- */
354
- #if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
355
- (defined __cplusplus && __cplusplus >= 201103L) || \
356
- defined SWIG_HAVE_SNPRINTF) && \
357
- !defined SWIG_NO_SNPRINTF
358
- # define SWIG_snprintf(O,S,F,A) snprintf(O,S,F,A)
359
- # define SWIG_snprintf2(O,S,F,A,B) snprintf(O,S,F,A,B)
360
- #else
361
- /* Fallback versions ignore the buffer size, but most of our uses either have a
362
- * fixed maximum possible size or dynamically allocate a buffer that's large
363
- * enough.
364
- */
365
- # define SWIG_snprintf(O,S,F,A) sprintf(O,F,A)
366
- # define SWIG_snprintf2(O,S,F,A,B) sprintf(O,F,A,B)
367
- #endif
368
375
 
369
376
  #include <string.h>
370
377