@gtkx/native 1.0.0-rc.1 → 1.0.0-rc.3

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/index.d.ts CHANGED
@@ -9,9 +9,10 @@ export declare class ExternalObject<T> {
9
9
  }
10
10
  /**
11
11
  * Allocates a zero-filled native memory block of `size` bytes and returns an opaque handle to it.
12
- * The optional `typeName` tags the boxed allocation with a GType name.
12
+ * The optional `gtype` must be a registered boxed `GType` and selects `g_boxed_free` as the
13
+ * handle's destructor instead of `g_free`.
13
14
  */
14
- export declare function alloc(size: number, typeName?: string | undefined | null): ExternalObject<Handle>
15
+ export declare function alloc(size: number, gtype?: bigint | undefined | null): ExternalObject<Handle>
15
16
 
16
17
  /**
17
18
  * Container layout used to marshal an array: a plain C `array`, a `glist`, `gslist`, `gptrarray`,
@@ -27,8 +28,9 @@ export type ArrayKind = 'array'|
27
28
  'fixed';
28
29
 
29
30
  /**
30
- * Resolves `symbolName` in `sharedLibrary` and precompiles its argument and return marshalling
31
- * into a reusable call descriptor that `call` can invoke.
31
+ * Precompiles the argument and return marshalling of `symbolName` in `sharedLibrary` into a
32
+ * reusable call descriptor that `call` can invoke. The symbol itself is resolved on the first
33
+ * call, so binding a symbol the installed library does not export fails only when it is called.
32
34
  */
33
35
  export declare function bind(sharedLibrary: string, symbolName: string, argDescriptors: Array<Descriptor>, returnDescriptor: Descriptor): ExternalObject<CallDescriptor>
34
36
 
@@ -75,30 +77,36 @@ export type Descriptor =
75
77
  | { kind: 'unichar' }
76
78
  | { kind: 'void' }
77
79
  | { kind: 'buffer' }
78
- | { kind: 'boxed', ownership: Ownership, typeName: string, sharedLibrary?: string, getTypeFnName?: string, freeFnName?: string, callerAllocated?: boolean, size?: number }
79
- | { kind: 'struct', ownership: Ownership, size?: number, callerAllocated?: boolean }
80
- | { kind: 'fundamental', ownership: Ownership, sharedLibrary: string, refFnName: string, unrefFnName: string, typeName?: string }
80
+ | { kind: 'boxed', ownership: Ownership, typeName: string, sharedLibrary?: string, getTypeFnName?: string, freeFnName?: string, callerAllocated?: boolean, size?: number, inline?: boolean }
81
+ | { kind: 'struct', ownership: Ownership, size?: number, callerAllocated?: boolean, inline?: boolean }
82
+ | { kind: 'fundamental', ownership: Ownership, sharedLibrary: string, refFnName: string, unrefFnName: string, typeName?: string, inline?: boolean }
81
83
  | { kind: 'array', itemDescriptor: Descriptor, arrayKind: ArrayKind, ownership: Ownership, sizeParamIndex?: number, fixedSize?: number, elementSize?: number }
82
84
  | { kind: 'hashtable', keyDescriptor: Descriptor, valueDescriptor: Descriptor, ownership: Ownership }
83
85
  | { kind: 'callback', argDescriptors: Array<Descriptor>, returnDescriptor: Descriptor, hasDestroy?: boolean, userDataIndex?: number, scope?: CallbackScope }
84
86
  | { kind: 'ref', innerDescriptor: Descriptor, inout?: boolean }
85
87
 
86
- /** Returns the GType of the GObject referenced by `handle`, or 0 when the pointer is null. */
88
+ /**
89
+ * Returns the `GType` of the `GObject` referenced by `handle`, or 0 when the handle does not
90
+ * reference a `GObject`.
91
+ */
87
92
  export declare function getType(handle: ExternalObject<Handle>): bigint
88
93
 
89
94
  /**
90
- * Returns the JavaScript wrapper object previously attached to the handle's GObject,
95
+ * Returns the JavaScript wrapper object previously attached to the handle's `GObject`,
91
96
  * or null when no wrapper is set.
92
97
  */
93
98
  export declare function getWrapper(handle: ExternalObject<Handle>): object | null
94
99
 
95
100
  /**
96
- * Installs the Node environment bridge and the GLib main loop integration into the current thread.
101
+ * Installs the Node environment and the `GLib` main-loop integration on the current thread.
97
102
  * Call once before any other native function.
98
103
  */
99
104
  export declare function init(): void
100
105
 
101
- /** Enables or disables keeping the Node event loop alive while the GLib run loop is otherwise idle. */
106
+ /**
107
+ * Enables or disables keeping the Node event loop alive while the `GLib` run loop is otherwise
108
+ * idle.
109
+ */
102
110
  export declare function keepAlive(enable: boolean): void
103
111
 
104
112
  /**
@@ -108,7 +116,7 @@ export declare function keepAlive(enable: boolean): void
108
116
  export type Ownership = 'borrowed'|
109
117
  'full';
110
118
 
111
- /** Tears down the GLib main loop integration installed by `init`. */
119
+ /** Tears down the `GLib` main loop integration installed by `init`. */
112
120
  export declare function quit(): void
113
121
 
114
122
  /**
@@ -118,25 +126,41 @@ export declare function quit(): void
118
126
  export declare function read(handle: ExternalObject<Handle>, fieldDescriptor: Descriptor, offset: number): unknown
119
127
 
120
128
  /**
121
- * Registers a new GObject subtype named `name` deriving from `parentType`, wiring up any vfunc
122
- * overrides and implemented interfaces, and returns the new GType.
129
+ * Registers a new `GObject` subtype named `name` deriving from `parentType`, wiring up any vfunc
130
+ * overrides and implemented interfaces, and returns the new `GType`.
123
131
  */
124
132
  export declare function registerClass(name: string, parentType: bigint, options?: RegisterClassOptions | undefined | null): bigint
125
133
 
126
134
  /** An interface a registered class implements, together with the interface vfuncs it provides. */
127
135
  export interface RegisterClassInterface {
128
- /** GType of the interface to implement. */
136
+ /** `GType` of the interface to implement. */
129
137
  type: bigint
138
+ /**
139
+ * Byte size of the interface's vtable struct, used to bounds-check each vfunc's `byteOffset`.
140
+ * `g_type_query` reports nothing for an interface type, so the size has to come from the same
141
+ * generated metadata the offsets do; when it is omitted the offsets are only alignment-checked.
142
+ */
143
+ vtableSize?: number
130
144
  /** Interface vfunc implementations to install. */
131
145
  vfuncs: Array<RegisterClassVfunc>
132
146
  }
133
147
 
134
- /** Optional configuration for `registerClass`: vfunc overrides and implemented interfaces. */
148
+ /** Optional configuration for `registerClass`: vfunc overrides, implemented interfaces and properties. */
135
149
  export interface RegisterClassOptions {
136
150
  /** Virtual function overrides for the class itself. */
137
151
  vfuncs?: Array<RegisterClassVfunc>
138
152
  /** Interfaces the class implements, each with its own vfuncs. */
139
153
  interfaces?: Array<RegisterClassInterface>
154
+ /** Properties to install on the class. */
155
+ properties?: Array<RegisterClassProperty>
156
+ }
157
+
158
+ /** A property the registered class installs on its class structure. */
159
+ export interface RegisterClassProperty {
160
+ /** Property id the class's `get_property`/`set_property` vfuncs dispatch on. Must be non-zero. */
161
+ id: number
162
+ /** Handle to the `GParamSpec` describing the property. Ownership transfers to the class. */
163
+ pspec: ExternalObject<Handle>
140
164
  }
141
165
 
142
166
  /**
@@ -156,12 +180,12 @@ export interface RegisterClassVfunc {
156
180
 
157
181
  /**
158
182
  * Calls the `getTypeFnName` registration function in `sharedLibrary` and returns the resulting
159
- * GType, or 0 when the symbol is absent.
183
+ * `GType`, or 0 when the symbol is absent.
160
184
  */
161
185
  export declare function resolveType(sharedLibrary: string, getTypeFnName: string): bigint
162
186
 
163
187
  /**
164
- * Attaches the JavaScript `wrapper` object to the handle's GObject and registers a finalizer
188
+ * Attaches the JavaScript `wrapper` object to the handle's `GObject` and registers a finalizer
165
189
  * that releases it when the wrapper is garbage collected.
166
190
  */
167
191
  export declare function setWrapper(handle: ExternalObject<Handle>, wrapper: object): void
package/index.js CHANGED
@@ -81,8 +81,8 @@ function requireNative() {
81
81
  try {
82
82
  const binding = require('@gtkx/native-android-arm64')
83
83
  const bindingPackageVersion = require('@gtkx/native-android-arm64/package.json').version
84
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
85
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
84
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
85
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
86
86
  }
87
87
  return binding
88
88
  } catch (e) {
@@ -97,8 +97,8 @@ function requireNative() {
97
97
  try {
98
98
  const binding = require('@gtkx/native-android-arm-eabi')
99
99
  const bindingPackageVersion = require('@gtkx/native-android-arm-eabi/package.json').version
100
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
101
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
100
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
101
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
102
102
  }
103
103
  return binding
104
104
  } catch (e) {
@@ -118,8 +118,8 @@ function requireNative() {
118
118
  try {
119
119
  const binding = require('@gtkx/native-win32-x64-gnu')
120
120
  const bindingPackageVersion = require('@gtkx/native-win32-x64-gnu/package.json').version
121
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
122
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
121
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
122
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
123
123
  }
124
124
  return binding
125
125
  } catch (e) {
@@ -134,8 +134,8 @@ function requireNative() {
134
134
  try {
135
135
  const binding = require('@gtkx/native-win32-x64-msvc')
136
136
  const bindingPackageVersion = require('@gtkx/native-win32-x64-msvc/package.json').version
137
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
138
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
137
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
138
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
139
139
  }
140
140
  return binding
141
141
  } catch (e) {
@@ -151,8 +151,8 @@ function requireNative() {
151
151
  try {
152
152
  const binding = require('@gtkx/native-win32-ia32-msvc')
153
153
  const bindingPackageVersion = require('@gtkx/native-win32-ia32-msvc/package.json').version
154
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
155
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
154
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
155
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
156
156
  }
157
157
  return binding
158
158
  } catch (e) {
@@ -167,8 +167,8 @@ function requireNative() {
167
167
  try {
168
168
  const binding = require('@gtkx/native-win32-arm64-msvc')
169
169
  const bindingPackageVersion = require('@gtkx/native-win32-arm64-msvc/package.json').version
170
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
170
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
171
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
172
172
  }
173
173
  return binding
174
174
  } catch (e) {
@@ -186,8 +186,8 @@ function requireNative() {
186
186
  try {
187
187
  const binding = require('@gtkx/native-darwin-universal')
188
188
  const bindingPackageVersion = require('@gtkx/native-darwin-universal/package.json').version
189
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
190
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
189
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
190
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
191
191
  }
192
192
  return binding
193
193
  } catch (e) {
@@ -202,8 +202,8 @@ function requireNative() {
202
202
  try {
203
203
  const binding = require('@gtkx/native-darwin-x64')
204
204
  const bindingPackageVersion = require('@gtkx/native-darwin-x64/package.json').version
205
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
206
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
205
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
206
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
207
207
  }
208
208
  return binding
209
209
  } catch (e) {
@@ -218,8 +218,8 @@ function requireNative() {
218
218
  try {
219
219
  const binding = require('@gtkx/native-darwin-arm64')
220
220
  const bindingPackageVersion = require('@gtkx/native-darwin-arm64/package.json').version
221
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
222
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
221
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
222
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
223
223
  }
224
224
  return binding
225
225
  } catch (e) {
@@ -238,8 +238,8 @@ function requireNative() {
238
238
  try {
239
239
  const binding = require('@gtkx/native-freebsd-x64')
240
240
  const bindingPackageVersion = require('@gtkx/native-freebsd-x64/package.json').version
241
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
242
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
241
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
242
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
243
243
  }
244
244
  return binding
245
245
  } catch (e) {
@@ -254,8 +254,8 @@ function requireNative() {
254
254
  try {
255
255
  const binding = require('@gtkx/native-freebsd-arm64')
256
256
  const bindingPackageVersion = require('@gtkx/native-freebsd-arm64/package.json').version
257
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
258
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
257
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
258
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
259
259
  }
260
260
  return binding
261
261
  } catch (e) {
@@ -275,8 +275,8 @@ function requireNative() {
275
275
  try {
276
276
  const binding = require('@gtkx/native-linux-x64-musl')
277
277
  const bindingPackageVersion = require('@gtkx/native-linux-x64-musl/package.json').version
278
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
279
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
278
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
279
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
280
280
  }
281
281
  return binding
282
282
  } catch (e) {
@@ -291,8 +291,8 @@ function requireNative() {
291
291
  try {
292
292
  const binding = require('@gtkx/native-linux-x64-gnu')
293
293
  const bindingPackageVersion = require('@gtkx/native-linux-x64-gnu/package.json').version
294
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
295
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
294
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
295
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
296
296
  }
297
297
  return binding
298
298
  } catch (e) {
@@ -309,8 +309,8 @@ function requireNative() {
309
309
  try {
310
310
  const binding = require('@gtkx/native-linux-arm64-musl')
311
311
  const bindingPackageVersion = require('@gtkx/native-linux-arm64-musl/package.json').version
312
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
313
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
312
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
313
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
314
314
  }
315
315
  return binding
316
316
  } catch (e) {
@@ -325,8 +325,8 @@ function requireNative() {
325
325
  try {
326
326
  const binding = require('@gtkx/native-linux-arm64-gnu')
327
327
  const bindingPackageVersion = require('@gtkx/native-linux-arm64-gnu/package.json').version
328
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
329
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
328
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
329
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
330
330
  }
331
331
  return binding
332
332
  } catch (e) {
@@ -343,8 +343,8 @@ function requireNative() {
343
343
  try {
344
344
  const binding = require('@gtkx/native-linux-arm-musleabihf')
345
345
  const bindingPackageVersion = require('@gtkx/native-linux-arm-musleabihf/package.json').version
346
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
347
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
346
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
347
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
348
348
  }
349
349
  return binding
350
350
  } catch (e) {
@@ -359,8 +359,8 @@ function requireNative() {
359
359
  try {
360
360
  const binding = require('@gtkx/native-linux-arm-gnueabihf')
361
361
  const bindingPackageVersion = require('@gtkx/native-linux-arm-gnueabihf/package.json').version
362
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
363
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
362
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
363
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
364
364
  }
365
365
  return binding
366
366
  } catch (e) {
@@ -377,8 +377,8 @@ function requireNative() {
377
377
  try {
378
378
  const binding = require('@gtkx/native-linux-loong64-musl')
379
379
  const bindingPackageVersion = require('@gtkx/native-linux-loong64-musl/package.json').version
380
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
381
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
380
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
381
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
382
382
  }
383
383
  return binding
384
384
  } catch (e) {
@@ -393,8 +393,8 @@ function requireNative() {
393
393
  try {
394
394
  const binding = require('@gtkx/native-linux-loong64-gnu')
395
395
  const bindingPackageVersion = require('@gtkx/native-linux-loong64-gnu/package.json').version
396
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
397
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
396
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
397
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
398
398
  }
399
399
  return binding
400
400
  } catch (e) {
@@ -411,8 +411,8 @@ function requireNative() {
411
411
  try {
412
412
  const binding = require('@gtkx/native-linux-riscv64-musl')
413
413
  const bindingPackageVersion = require('@gtkx/native-linux-riscv64-musl/package.json').version
414
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
415
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
414
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
415
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
416
416
  }
417
417
  return binding
418
418
  } catch (e) {
@@ -427,8 +427,8 @@ function requireNative() {
427
427
  try {
428
428
  const binding = require('@gtkx/native-linux-riscv64-gnu')
429
429
  const bindingPackageVersion = require('@gtkx/native-linux-riscv64-gnu/package.json').version
430
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
431
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
430
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
431
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
432
432
  }
433
433
  return binding
434
434
  } catch (e) {
@@ -444,8 +444,8 @@ function requireNative() {
444
444
  try {
445
445
  const binding = require('@gtkx/native-linux-ppc64-gnu')
446
446
  const bindingPackageVersion = require('@gtkx/native-linux-ppc64-gnu/package.json').version
447
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
448
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
447
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
448
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
449
449
  }
450
450
  return binding
451
451
  } catch (e) {
@@ -460,8 +460,8 @@ function requireNative() {
460
460
  try {
461
461
  const binding = require('@gtkx/native-linux-s390x-gnu')
462
462
  const bindingPackageVersion = require('@gtkx/native-linux-s390x-gnu/package.json').version
463
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
464
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
463
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
464
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
465
465
  }
466
466
  return binding
467
467
  } catch (e) {
@@ -480,8 +480,8 @@ function requireNative() {
480
480
  try {
481
481
  const binding = require('@gtkx/native-openharmony-arm64')
482
482
  const bindingPackageVersion = require('@gtkx/native-openharmony-arm64/package.json').version
483
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
484
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
483
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
484
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
485
485
  }
486
486
  return binding
487
487
  } catch (e) {
@@ -496,8 +496,8 @@ function requireNative() {
496
496
  try {
497
497
  const binding = require('@gtkx/native-openharmony-x64')
498
498
  const bindingPackageVersion = require('@gtkx/native-openharmony-x64/package.json').version
499
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
500
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
499
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
500
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
501
501
  }
502
502
  return binding
503
503
  } catch (e) {
@@ -512,8 +512,8 @@ function requireNative() {
512
512
  try {
513
513
  const binding = require('@gtkx/native-openharmony-arm')
514
514
  const bindingPackageVersion = require('@gtkx/native-openharmony-arm/package.json').version
515
- if (bindingPackageVersion !== '1.0.0-rc.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
516
- throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
515
+ if (bindingPackageVersion !== '1.0.0-rc.3' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
516
+ throw new Error(`Native binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
517
517
  }
518
518
  return binding
519
519
  } catch (e) {
@@ -527,47 +527,163 @@ function requireNative() {
527
527
  }
528
528
  }
529
529
 
530
- nativeBinding = requireNative()
530
+ function createLoadErrorChain(errors) {
531
+ return errors.reduce((previous, current) => {
532
+ let message
533
+ try {
534
+ message =
535
+ current && typeof current.message === 'string'
536
+ ? current.message
537
+ : String(current)
538
+ } catch {
539
+ message = 'Unknown error'
540
+ }
541
+ const error = new Error(message)
542
+ error.cause = previous
543
+ return error
544
+ }, null)
545
+ }
531
546
 
532
547
  // NAPI_RS_FORCE_WASI is a tri-state flag:
533
548
  // unset / any other value → native binding preferred, WASI is only a fallback
534
- // 'true' → force WASI fallback even if native loaded
535
- // 'error' → force WASI and throw if no WASI binding is found
549
+ // 'true' → prefer WASI, but retain native as a lazy fallback
550
+ // 'error' → require WASI without initializing a native fallback
536
551
  // Treating any non-empty string as truthy (the historical behavior) meant
537
552
  // NAPI_RS_FORCE_WASI=false, NAPI_RS_FORCE_WASI=0, etc. inadvertently triggered
538
553
  // the WASI path, causing ENOENT for packages shipped without a .wasi.cjs file.
554
+ //
555
+ // NAPI_RS_WASI_FLAVOR selects one exact generated flavor and implies strict
556
+ // WASI loading. It never crosses into another flavor or falls back to native.
557
+ const __napiWasiFlavors = ["wasm32-wasi"]
558
+ const __napiWasiFlavor = process.env.NAPI_RS_WASI_FLAVOR
559
+ const __napiWasiFlavorRequested =
560
+ typeof __napiWasiFlavor === 'string' && __napiWasiFlavor.length > 0
561
+ if (
562
+ __napiWasiFlavorRequested &&
563
+ __napiWasiFlavors.indexOf(__napiWasiFlavor) === -1
564
+ ) {
565
+ throw new Error(
566
+ 'Unsupported WASI flavor "' +
567
+ __napiWasiFlavor +
568
+ '". Available flavors: ' +
569
+ __napiWasiFlavors.join(', '),
570
+ )
571
+ }
572
+ const forceWasiError = process.env.NAPI_RS_FORCE_WASI === 'error'
539
573
  const forceWasi =
540
- process.env.NAPI_RS_FORCE_WASI === 'true' || process.env.NAPI_RS_FORCE_WASI === 'error'
574
+ process.env.NAPI_RS_FORCE_WASI === 'true' ||
575
+ forceWasiError ||
576
+ __napiWasiFlavorRequested
577
+
578
+ if (!forceWasi) {
579
+ nativeBinding = requireNative()
580
+ }
541
581
 
542
582
  if (!nativeBinding || forceWasi) {
543
583
  let wasiBinding = null
544
- let wasiBindingError = null
545
- try {
546
- wasiBinding = require('./native.wasi.cjs')
547
- nativeBinding = wasiBinding
548
- } catch (err) {
549
- if (forceWasi) {
550
- wasiBindingError = err
584
+ let wasiBindingLoaded = false
585
+ const wasiBindingErrors = []
586
+ const __napiWasiResolveCandidate = (specifier, isPackage, localArtifacts) => {
587
+ try {
588
+ require.resolve(specifier)
589
+ } catch (resolveError) {
590
+ if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') {
591
+ throw resolveError
592
+ }
593
+ if (isPackage) {
594
+ try {
595
+ require.resolve(specifier + '/package.json')
596
+ } catch (packageError) {
597
+ if (packageError && packageError.code === 'MODULE_NOT_FOUND') {
598
+ return resolveError
599
+ }
600
+ // An exports restriction proves the package exists even when its
601
+ // package.json is not public. Preserve the root resolution failure.
602
+ throw resolveError
603
+ }
604
+ // The package exists but its main/export target is broken.
605
+ throw resolveError
606
+ }
607
+ return resolveError
608
+ }
609
+ if (localArtifacts) {
610
+ let artifactError = null
611
+ for (let i = 0; i < localArtifacts.length; i++) {
612
+ try {
613
+ require.resolve(localArtifacts[i])
614
+ return null
615
+ } catch (resolveError) {
616
+ if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') {
617
+ throw resolveError
618
+ }
619
+ artifactError = resolveError
620
+ }
621
+ }
622
+ return artifactError
551
623
  }
624
+ return null
552
625
  }
553
- if (!nativeBinding || forceWasi) {
626
+ if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === "wasm32-wasi")) {
627
+ let candidateError = null
628
+ let candidateFailed = false
554
629
  try {
555
- wasiBinding = require('@gtkx/native-wasm32-wasi')
556
- nativeBinding = wasiBinding
630
+ candidateError = __napiWasiResolveCandidate('./native.wasi.cjs', false, ["./native.wasm32-wasi.debug.wasm","./native.wasm32-wasi.wasm"])
631
+ candidateFailed = candidateError !== null
632
+ if (!candidateFailed) {
633
+ wasiBinding = require('./native.wasi.cjs')
634
+ nativeBinding = wasiBinding
635
+ wasiBindingLoaded = true
636
+ }
557
637
  } catch (err) {
558
- if (forceWasi) {
559
- if (!wasiBindingError) {
560
- wasiBindingError = err
561
- } else {
562
- wasiBindingError.cause = err
638
+ candidateError = err
639
+ candidateFailed = true
640
+ }
641
+ if (candidateFailed) {
642
+ wasiBindingErrors.push(candidateError)
643
+ loadErrors.push(candidateError)
644
+ }
645
+ }
646
+ if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === "wasm32-wasi")) {
647
+ let candidateError = null
648
+ let candidateFailed = false
649
+ try {
650
+ candidateError = __napiWasiResolveCandidate('@gtkx/native-wasm32-wasi', true, undefined)
651
+ candidateFailed = candidateError !== null
652
+ if (!candidateFailed) {
653
+ if (process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
654
+ const bindingPackageVersion = require('@gtkx/native-wasm32-wasi/package.json').version
655
+ if (bindingPackageVersion !== '1.0.0-rc.3') {
656
+ throw new Error(`WASI binding package version mismatch, expected 1.0.0-rc.3 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
657
+ }
563
658
  }
564
- loadErrors.push(err)
659
+ wasiBinding = require('@gtkx/native-wasm32-wasi')
660
+ nativeBinding = wasiBinding
661
+ wasiBindingLoaded = true
565
662
  }
663
+ } catch (err) {
664
+ candidateError = err
665
+ candidateFailed = true
666
+ }
667
+ if (candidateFailed) {
668
+ wasiBindingErrors.push(candidateError)
669
+ loadErrors.push(candidateError)
566
670
  }
567
671
  }
568
- if (process.env.NAPI_RS_FORCE_WASI === 'error' && !wasiBinding) {
569
- const error = new Error('WASI binding not found and NAPI_RS_FORCE_WASI is set to error')
570
- error.cause = wasiBindingError
672
+ if (
673
+ !wasiBindingLoaded &&
674
+ forceWasi &&
675
+ !forceWasiError &&
676
+ !__napiWasiFlavorRequested
677
+ ) {
678
+ nativeBinding = requireNative()
679
+ }
680
+ if ((forceWasiError || __napiWasiFlavorRequested) && !wasiBindingLoaded) {
681
+ const error = new Error(
682
+ __napiWasiFlavorRequested
683
+ ? 'WASI binding for flavor "' + __napiWasiFlavor + '" not found'
684
+ : 'WASI binding not found and NAPI_RS_FORCE_WASI is set to error',
685
+ )
686
+ error.cause = createLoadErrorChain(wasiBindingErrors)
571
687
  throw error
572
688
  }
573
689
  }
@@ -581,10 +697,7 @@ if (!nativeBinding) {
581
697
  )
582
698
  // assign instead of the `new Error(message, { cause })` options form,
583
699
  // which Node < 16.9 silently ignores
584
- error.cause = loadErrors.reduce((err, cur) => {
585
- cur.cause = err
586
- return cur
587
- })
700
+ error.cause = createLoadErrorChain(loadErrors)
588
701
  throw error
589
702
  }
590
703
  throw new Error(`Failed to load native binding`)
package/init.js ADDED
@@ -0,0 +1,3 @@
1
+ import { init } from "./index.js";
2
+
3
+ init();
package/main.d.ts CHANGED
@@ -6,12 +6,12 @@ declare module "./index.js" {
6
6
  * Produced by `alloc` and consumed by the memory and wrapper functions (`read`, `write`,
7
7
  * `copy`, `getType`, `getWrapper`, `setWrapper`). Its bytes are not accessible from JavaScript.
8
8
  */
9
- export type Handle = { __opaque: "Handle" };
9
+ export type Handle = { _opaque: "Handle" };
10
10
  /**
11
11
  * An opaque, precompiled binding of a native function, produced by `bind` and passed to `call`.
12
12
  * It captures the resolved symbol and the marshalling of its arguments and return value.
13
13
  */
14
- export type CallDescriptor = { __opaque: "CallDescriptor" };
14
+ export type CallDescriptor = { _opaque: "CallDescriptor" };
15
15
  /**
16
16
  * A mutable box for an out or inout ('ref' descriptor) parameter. Pass an object with a `value`
17
17
  * property; after `call` returns, its `value` holds the decoded native result.
package/main.js CHANGED
@@ -1,5 +1,3 @@
1
- import { init } from "./index.js";
1
+ import "./init.js";
2
2
 
3
3
  export * from "./index.js";
4
-
5
- init();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/native",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0-rc.3",
4
4
  "description": "Rust addon under GTKX that loads shared libraries, marshals values, and tracks GObject handles",
5
5
  "keywords": [
6
6
  "gtkx",
@@ -33,11 +33,13 @@
33
33
  }
34
34
  },
35
35
  "sideEffects": [
36
+ "./init.js",
36
37
  "./main.js"
37
38
  ],
38
39
  "files": [
39
40
  "index.js",
40
41
  "index.d.ts",
42
+ "init.js",
41
43
  "main.js",
42
44
  "main.d.ts"
43
45
  ],
@@ -48,23 +50,137 @@
48
50
  "aarch64-unknown-linux-gnu"
49
51
  ]
50
52
  },
53
+ "nx": {
54
+ "namedInputs": {
55
+ "crate": [
56
+ "{projectRoot}/src/**/*",
57
+ "{projectRoot}/build.rs",
58
+ "{projectRoot}/Cargo.toml",
59
+ "{projectRoot}/Cargo.lock",
60
+ "{projectRoot}/package.json",
61
+ "{workspaceRoot}/rust-toolchain.toml",
62
+ {
63
+ "runtime": "uname -m"
64
+ }
65
+ ],
66
+ "crateTests": [
67
+ "crate",
68
+ "sharedGlobals",
69
+ "{projectRoot}/tests/**/*",
70
+ "{projectRoot}/test-support/**/*",
71
+ "{workspaceRoot}/scripts/run-headless.ts",
72
+ "{workspaceRoot}/packages/utils/src/**/*"
73
+ ]
74
+ },
75
+ "targets": {
76
+ "build": {
77
+ "dependsOn": [],
78
+ "cache": true,
79
+ "inputs": [
80
+ "crate"
81
+ ],
82
+ "outputs": [
83
+ "{projectRoot}/index.d.ts",
84
+ "{projectRoot}/index.js",
85
+ "{projectRoot}/native.*.node"
86
+ ]
87
+ },
88
+ "test": {
89
+ "dependsOn": [
90
+ "build",
91
+ "test:asan",
92
+ "test:miri"
93
+ ],
94
+ "cache": true,
95
+ "inputs": [
96
+ "crateTests"
97
+ ],
98
+ "outputs": []
99
+ },
100
+ "test:asan": {
101
+ "dependsOn": [
102
+ "build"
103
+ ],
104
+ "cache": true,
105
+ "inputs": [
106
+ "crateTests"
107
+ ],
108
+ "outputs": []
109
+ },
110
+ "test:miri": {
111
+ "dependsOn": [
112
+ "build"
113
+ ],
114
+ "cache": true,
115
+ "inputs": [
116
+ "crateTests"
117
+ ],
118
+ "outputs": []
119
+ },
120
+ "coverage": {
121
+ "dependsOn": [
122
+ "build"
123
+ ],
124
+ "cache": true,
125
+ "inputs": [
126
+ "crateTests"
127
+ ],
128
+ "outputs": [
129
+ "{projectRoot}/coverage/**"
130
+ ]
131
+ },
132
+ "lint:rust": {
133
+ "cache": true,
134
+ "inputs": [
135
+ "crateTests"
136
+ ],
137
+ "outputs": []
138
+ },
139
+ "create-npm-dirs": {
140
+ "dependsOn": [
141
+ "build"
142
+ ],
143
+ "cache": true,
144
+ "inputs": [
145
+ "crate"
146
+ ],
147
+ "outputs": [
148
+ "{projectRoot}/npm/**"
149
+ ]
150
+ },
151
+ "artifacts": {
152
+ "dependsOn": [
153
+ "build",
154
+ "create-npm-dirs"
155
+ ],
156
+ "cache": false
157
+ },
158
+ "release": {
159
+ "dependsOn": [
160
+ "artifacts",
161
+ "create-npm-dirs"
162
+ ],
163
+ "cache": false
164
+ }
165
+ }
166
+ },
51
167
  "engines": {
52
168
  "node": ">=24"
53
169
  },
54
170
  "devDependencies": {
55
- "@napi-rs/cli": "^3.7.3"
171
+ "@napi-rs/cli": "^3.8.0"
56
172
  },
57
173
  "optionalDependencies": {
58
- "@gtkx/native-linux-arm64-gnu": "1.0.0-rc.1",
59
- "@gtkx/native-linux-x64-gnu": "1.0.0-rc.1"
174
+ "@gtkx/native-linux-arm64-gnu": "1.0.0-rc.3",
175
+ "@gtkx/native-linux-x64-gnu": "1.0.0-rc.3"
60
176
  },
61
177
  "scripts": {
62
178
  "artifacts": "napi artifacts",
63
179
  "build": "napi build --platform --release --esm --no-dts-cache --no-const-enum",
64
180
  "coverage": "mkdir -p coverage && tsx ../../scripts/run-headless.ts cargo +nightly llvm-cov --lcov --output-path coverage/native.lcov.info --fail-under-lines 70 -- --test-threads=1",
65
181
  "create-npm-dirs": "napi create-npm-dirs",
66
- "lint": "cargo fmt --check && cargo clippy --all-targets -- -D warnings",
67
- "test:asan": "RUSTFLAGS=\"-Zsanitizer=address\" ASAN_OPTIONS=\"detect_leaks=0:abort_on_error=1:detect_stack_use_after_return=1\" tsx ../../scripts/run-headless.ts cargo +nightly test --target x86_64-unknown-linux-gnu -- --test-threads=1",
182
+ "lint:rust": "tsx ../../scripts/cargo-nightly.ts fmt --check && cargo clippy --all-targets -- -D warnings",
183
+ "test:asan": "RUSTFLAGS=\"-Zsanitizer=address\" ASAN_OPTIONS=\"detect_leaks=1:abort_on_error=1:detect_stack_use_after_return=1\" tsx ../../scripts/run-headless.ts cargo +nightly test --target x86_64-unknown-linux-gnu -- --test-threads=1",
68
184
  "test:miri": "tsx ../../scripts/run-headless.ts cargo +nightly miri test --test integer_codec --test descriptor_into_codec",
69
185
  "test": "tsx ../../scripts/run-headless.ts cargo test -- --test-threads=1",
70
186
  "release": "tsx ../../scripts/prepublish-native.ts && tsx ../../scripts/release-package.ts"