ferrings 0.2.1 → 0.2.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 (3) hide show
  1. package/README.md +82 -117
  2. package/native.js +52 -52
  3. package/package.json +7 -7
package/README.md CHANGED
@@ -3,80 +3,40 @@
3
3
  [![CI](https://github.com/avifenesh/ferrings/actions/workflows/ci.yml/badge.svg)](https://github.com/avifenesh/ferrings/actions/workflows/ci.yml)
4
4
  [![Release](https://github.com/avifenesh/ferrings/actions/workflows/release.yml/badge.svg)](https://github.com/avifenesh/ferrings/actions/workflows/release.yml)
5
5
  [![npm](https://img.shields.io/npm/v/ferrings)](https://www.npmjs.com/package/ferrings)
6
- ![Node.js >=20](https://img.shields.io/badge/node-%3E%3D20-339933)
6
+ ![Node.js >=22](https://img.shields.io/badge/node-%3E%3D22-339933)
7
7
  ![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue)
8
8
 
9
- Linux `io_uring` TCP transport for Node.js, built with Rust and napi-rs for high-concurrency server outside libuv's networking loop.
9
+ Linux `io_uring` TCP transport for Node.js services, built with Rust and napi-rs.
10
10
 
11
- ferrings exposes Node-friendly TCP and fixed-response HTTP APIs backed by a native `io_uring` worker: multishot accept/recv, provided buffer rings, recv-bundle, zero-copy send, and an optional ZCRX path for capable NICs. It is published on npm as a root package plus target-specific optional native packages, so users install `ferrings` and npm resolves the matching Linux binding for their machine.
11
+ ferrings gives Node applications a native Linux TCP path outside libuv's networking loop: multishot accept/recv, provided buffer rings, recv-bundle, zero-copy send, registered-buffer send probes, and an optional ZCRX fast path for capable NICs. It installs as one npm package; npm resolves the matching native binding for your Linux target.
12
12
 
13
13
  ```bash
14
14
  npm install ferrings
15
15
  ```
16
16
 
17
- ```js
18
- const net = require('node:net');
19
- const { createTcpServer } = require('ferrings');
20
-
21
- const server = createTcpServer((connection) => {
22
- connection.on('data', (data) => connection.end(`ferrings:${data}`));
23
- });
24
-
25
- server.listen(0, '127.0.0.1', (info) => {
26
- const client = net.createConnection(info.port, info.host, () => client.write('ping'));
27
- client.on('data', (data) => {
28
- console.log(data.toString());
29
- server.close();
30
- });
31
- });
32
- ```
33
-
34
- Save the example as `quickstart.js` and run it with `node quickstart.js`; it prints `ferrings:ping`.
17
+ ## Benchmark Snapshot
35
18
 
36
- ## Quick proof signals
37
-
38
- - Published on npm as [`ferrings`](https://www.npmjs.com/package/ferrings) for Node.js `>=20` on Linux.
39
- - CI builds and tests Node 20, 22, and 24 on Linux.
40
- - Uses the napi-rs root-package + optional-native-package pattern: one JS API package for users, matrix-built native packages underneath.
41
- - `npm run check:release-ready -- --full --strict` verifies the local release gates; ZCRX hardware proof is optional unless `--require-zcrx` is set.
42
- - Package install smoke tests pack the tarball, install it in a temporary app, start a TCP server through `require('ferrings')`, and run the installed CLI.
43
-
44
- ## Why this project
45
-
46
- - Use this when you want to compare Node's `net` / `http` servers with a modern Linux `io_uring` TCP path.
47
- - Use this when you need a Node API over a Rust-native networking worker for high-concurrency Linux experiments.
48
- - Use this when you want runtime visibility into kernel features such as multishot recv, provided buffer rings, recv-bundle, zero-copy send, and ZCRX readiness.
49
- - Use this when you want to benchmark syscall counts, tail latency, and queue behavior without building a native addon from scratch.
50
- - Use this when you are exploring ZCRX, but want the broadly usable core to work on machines without ZCRX-capable NIC hardware.
19
+ Measured on 2026-06-28 on an Intel Core Ultra 9 275HX laptop, Linux `7.0.0-22-generic`, Node `v25.9.0`, npm `11.12.1`, Rust `1.96.0`, with the default 8 MiB locked-memory limit. This is loopback under `strace -f -c`, not a NIC or ZCRX benchmark, so use the ratios more than the absolute numbers.
51
20
 
52
- ## Installation
21
+ | Case | req/s | p99 ms | server syscalls/conn | Fast path |
22
+ | --- | ---: | ---: | ---: | --- |
23
+ | Node `http` | 2,689 | 75.987 | 11.620 | libuv/epoll |
24
+ | ferrings HTTP | 5,547 | 33.123 | 5.645 | multishot accept/recv + provided buffer ring |
25
+ | Node `net` TCP echo | 4,086 | 26.649 | 10.987 | libuv/epoll |
26
+ | ferrings native TCP echo | 8,128 | 20.422 | 5.842 | native echo worker + provided buffer ring |
27
+ | ferrings TCP facade batch send | 8,451 | 28.451 | 7.143 | JS facade + batched native events/sends |
53
28
 
54
- Install the published package:
29
+ In this snapshot, ferrings roughly halves server syscalls per completed connection and about doubles throughput versus stock Node `http` / `net` servers on the same machine. The Node-style TCP facade still crosses into JavaScript, but batching keeps it ahead of the baseline in this workload.
55
30
 
56
- ```bash
57
- npm install ferrings
58
- ```
31
+ ## Quick Start
59
32
 
60
- The base package is Linux-only. It depends on target-specific optional native packages, but a normal install picks the one package that matches the current machine. The release build still produces all supported targets through CI matrix jobs. For source development:
61
-
62
- ```bash
63
- git clone https://github.com/avifenesh/ferrings.git
64
- cd ferrings
65
- npm install
66
- npm test
67
- ```
68
-
69
- ## Quick start
70
-
71
- After `npm install ferrings`, create `quickstart.js`:
33
+ Create `quickstart.js`:
72
34
 
73
35
  ```js
74
36
  'use strict';
75
37
 
76
38
  const net = require('node:net');
77
- const { createTcpServer, capabilities } = require('ferrings');
78
-
79
- console.log(capabilities());
39
+ const { createTcpServer } = require('ferrings');
80
40
 
81
41
  const server = createTcpServer((connection) => {
82
42
  connection.on('data', (data) => {
@@ -93,8 +53,6 @@ server.listen(
93
53
  useZeroCopySend: true
94
54
  },
95
55
  (info) => {
96
- console.log(`listening on tcp://${info.host}:${info.port}`);
97
-
98
56
  const client = net.createConnection({ host: info.host, port: info.port }, () => {
99
57
  client.write('hello');
100
58
  });
@@ -117,43 +75,40 @@ Run it:
117
75
  node quickstart.js
118
76
  ```
119
77
 
120
- What happened:
78
+ It prints `echo:hello`. `createTcpServer()` exposes a familiar Node-style TCP server while the accept, receive, send, and shutdown work run on a Rust `io_uring` worker.
79
+
80
+ ## Quick Proof Signals
121
81
 
122
- - `createTcpServer()` created a Node-style TCP server backed by a native `io_uring` worker.
123
- - `capabilities()` printed the active kernel probes for this host.
124
- - `useRecvBundle` and `useZeroCopySend` were requested, but remain capability-gated by the native addon.
125
- - The client received `echo:hello` and the server shut down.
82
+ - Published on npm as [`ferrings`](https://www.npmjs.com/package/ferrings) for Linux Node.js `>=22`.
83
+ - CI builds and tests Node 22, 24, and 26 on Linux.
84
+ - Release CI builds four native packages: `linux-x64-gnu`, `linux-x64-musl`, `linux-arm64-gnu`, and `linux-arm64-musl`.
85
+ - Package install smoke tests install the packed tarball in a temporary app, start a TCP server through `require('ferrings')`, and run the installed CLI.
86
+ - `npm run check:release-ready -- --full --strict` verifies package metadata, npm version availability, install smoke tests, dry-run publish checks, GitHub repository metadata, and the `NPM_TOKEN` secret.
126
87
 
127
- ## Core concepts
88
+ ## When To Use It
128
89
 
129
- ferrings is not a wrapper around Node's libuv TCP implementation. It creates the listening socket directly with `socket`, `bind`, and `listen`, then drives accepts, receives, sends, and shutdown from a Rust worker thread with `io_uring`.
90
+ - Use ferrings when you want a real Node TCP server API backed by Linux `io_uring` instead of libuv's epoll networking path.
91
+ - Use ferrings when syscall count, tail latency, and connection concurrency matter enough to justify a Linux-only native dependency.
92
+ - Use ferrings when you want runtime visibility into multishot recv, provided buffer rings, recv-bundle, zero-copy send, registered-buffer send, and ZCRX readiness.
93
+ - Use ferrings when you need a Rust-native networking worker but still want application code, callbacks, and deployment to stay in Node.js.
94
+ - Use ferrings when you are preparing for ZCRX-capable NICs but need the broadly useful multishot/provided-buffer core to work on ordinary recent kernels.
130
95
 
131
- JavaScript stays in control of the application API:
96
+ ## Mental Model
132
97
 
133
- - Native to JS events are delivered through NAPI thread-safe callbacks.
134
- - JS to native writes go through a bounded command queue and an `eventfd` wakeup.
135
- - Server counters are exposed through `info()` and the initial `ServerInfo` returned by `start()` / `listen()`.
136
- - Kernel-specific features are probed at runtime instead of assumed.
98
+ ferrings is not a wrapper around Node's `net.Server`. It creates the listening socket directly with `socket`, `bind`, and `listen`, then drives accepts, receives, sends, and shutdown from a Rust worker thread with `io_uring`.
137
99
 
138
- The broad core path is multishot accept + multishot recv + provided buffers. ZCRX is intentionally separate: it requires kernel support, NIC header/data split, flow steering/RSS isolation, permissions, and a capable RX queue.
100
+ JavaScript still owns the application surface:
139
101
 
140
- ## Features
102
+ - Native-to-JS events are delivered through NAPI thread-safe callbacks.
103
+ - JS-to-native writes go through a bounded command queue and an `eventfd` wakeup.
104
+ - The Node-style facade exposes `connection`, `data`, `close`, `write()`, `end()`, `destroy()`, `address()`, and `getConnections()`.
105
+ - Lower-level APIs expose connection IDs, batched events, batched sends, server counters, and active capability probes.
141
106
 
142
- - Node-style TCP server facade with `connection`, `data`, `close`, `write()`, `end()`, `destroy()`, `address()`, and `getConnections()`.
143
- - Raw `UringTcpServer` for lower-level event handling, batched event delivery, and batched sends.
144
- - `UringTcpEchoServer` for native TCP echo benchmarks without per-connection JS callbacks.
145
- - `UringHttpServer` for fixed-response HTTP benchmarks on the cleanest `io_uring` path.
146
- - Multishot accept and recv for fewer per-operation submissions on supported kernels.
147
- - Provided buffer rings first, with `IORING_OP_PROVIDE_BUFFERS` fallback when registration is rejected.
148
- - Optional recv-bundle mode using `IORING_FEAT_RECVSEND_BUNDLE` when the kernel advertises it.
149
- - Optional zero-copy send using `IORING_OP_SEND_ZC`, with counters for requests, notifications, copied fallback, and errors.
150
- - Optional registered-buffer send path, guarded by an active startup probe.
151
- - Optional ZCRX path with `zcrxProbe()`, CLI diagnostics, active IFQ registration probe, and hardware smoke tests.
152
- - Bounded command, event, and per-connection send queues so overload is reported instead of growing memory without bound.
107
+ The core receive path is multishot accept + multishot recv + provided buffers. ZCRX is separate and explicitly gated because it requires kernel support, NIC header/data split, RX queue setup, flow steering or RSS isolation, and permissions.
153
108
 
154
- ## API and usage patterns
109
+ ## APIs
155
110
 
156
- ### Node-style TCP
111
+ ### Node-Style TCP
157
112
 
158
113
  ```js
159
114
  const { createTcpServer } = require('ferrings');
@@ -167,9 +122,9 @@ server.listen(0, '127.0.0.1', (info) => {
167
122
  });
168
123
  ```
169
124
 
170
- Use this path when you want a familiar Node server shape over the native transport.
125
+ Use this when you want a familiar server shape over the native transport.
171
126
 
172
- ### Raw TCP events
127
+ ### Raw TCP Events
173
128
 
174
129
  ```js
175
130
  const { UringTcpServer } = require('ferrings');
@@ -190,9 +145,9 @@ const info = server.start((event) => {
190
145
  console.log(`tcp://${info.host}:${info.port}`);
191
146
  ```
192
147
 
193
- Use this path when you want direct event objects and explicit connection IDs.
148
+ Use this when you want direct event objects and explicit connection IDs.
194
149
 
195
- ### Batched TCP events and sends
150
+ ### Batched TCP Events And Sends
196
151
 
197
152
  ```js
198
153
  const { UringTcpServer } = require('ferrings');
@@ -214,9 +169,9 @@ const info = server.startBatch((events) => {
214
169
  console.log(`tcp://${info.host}:${info.port}`);
215
170
  ```
216
171
 
217
- Use this path when JS callback overhead matters and events can be processed in batches.
172
+ Use this when JS callback overhead matters and events can be processed in batches.
218
173
 
219
- ### Fixed-response HTTP
174
+ ### Fixed-Response HTTP
220
175
 
221
176
  ```js
222
177
  const { UringHttpServer } = require('ferrings');
@@ -232,9 +187,9 @@ const info = server.start();
232
187
  console.log(`http://${info.host}:${info.port}`);
233
188
  ```
234
189
 
235
- `UringHttpServer` is a benchmark server, not a general HTTP framework.
190
+ `UringHttpServer` is useful for fixed-response servers and transport benchmarking. It is not a general HTTP framework.
236
191
 
237
- ### Native echo benchmark server
192
+ ### Native TCP Echo
238
193
 
239
194
  ```js
240
195
  const { UringTcpEchoServer } = require('ferrings');
@@ -249,9 +204,9 @@ const info = server.start();
249
204
  console.log(`tcp://${info.host}:${info.port}`);
250
205
  ```
251
206
 
252
- Use this to isolate the native TCP echo path from JavaScript event delivery.
207
+ Use this to isolate the native TCP path from JavaScript event delivery.
253
208
 
254
- ### Capability and ZCRX probes
209
+ ### Capability And ZCRX Probes
255
210
 
256
211
  ```js
257
212
  const { capabilities, zcrxProbe } = require('ferrings');
@@ -310,11 +265,9 @@ TCP-only queue options:
310
265
 
311
266
  All servers expose live counters through `ServerInfo`, including accepted/closed/rejected connections, bytes sent/received, queue drops, receive buffer starvations, recv-bundle counters, zero-copy send counters, fixed-send misses, and ZCRX packet counters.
312
267
 
313
- ## Performance and benchmarks
268
+ ## Full Benchmark Details
314
269
 
315
- ### Snapshot: loopback syscall benchmark
316
-
317
- Measured on 2026-06-28 on an Intel Core Ultra 9 275HX laptop, Linux `7.0.0-22-generic`, Node `v25.9.0`, npm `11.12.1`, Rust `1.96.0`, with the default 8 MiB locked-memory limit. This is loopback under `strace -f -c`, not a NIC or ZCRX benchmark, so use the ratios more than the absolute numbers.
270
+ Run the README snapshot:
318
271
 
319
272
  ```bash
320
273
  REQUESTS=1000 CONCURRENCY=64 QUEUE_DEPTH=64 BUFFER_COUNT=512 BUFFER_SIZE=2048 \
@@ -323,6 +276,8 @@ REPORT_PATH=artifacts/benchmark-readme-2026-06-28.json \
323
276
  npm run bench:syscalls
324
277
  ```
325
278
 
279
+ Full result table:
280
+
326
281
  | Case | req/s | p50 ms | p95 ms | p99 ms | server syscalls/conn | Fast path |
327
282
  | --- | ---: | ---: | ---: | ---: | ---: | --- |
328
283
  | Node `http` | 2,689 | 19.536 | 63.368 | 75.987 | 11.620 | libuv/epoll |
@@ -332,9 +287,7 @@ npm run bench:syscalls
332
287
  | ferrings TCP facade | 7,001 | 7.199 | 30.371 | 33.890 | 8.149 | JS facade + batched native events |
333
288
  | ferrings TCP facade batch send | 8,451 | 6.188 | 24.787 | 28.451 | 7.143 | JS facade + batched native events/sends |
334
289
 
335
- In this shape, ferrings HTTP uses about half the server syscalls per completed connection and roughly doubles request throughput versus Node `http`. The native TCP echo path does the same against Node `net`; the JS facade still crosses into JavaScript, but batching keeps syscall count and throughput ahead in this benchmark.
336
-
337
- ### Running benchmarks
290
+ Other benchmark commands:
338
291
 
339
292
  ```bash
340
293
  npm run bench
@@ -350,7 +303,7 @@ Benchmark scripts:
350
303
  - `benchmark/tcp-echo.js` compares Node TCP, the ferrings TCP facade, raw TCP, native echo, recv-bundle, and zero-copy-send variants when available.
351
304
  - `benchmark/high-concurrency.js` runs HTTP and TCP cases with higher concurrency defaults.
352
305
  - `benchmark/syscalls.js` uses `strace -f -c` when installed to report server-side syscalls per completed connection.
353
- - `benchmark/first-slice.js` writes one compact validation report for the first useful slice across capabilities, HTTP, TCP, and syscall cases.
306
+ - `benchmark/first-slice.js` writes one compact validation report across capabilities, HTTP, TCP, and syscall cases.
354
307
 
355
308
  Set `REPORT_PATH=artifacts/<name>.json` to keep machine-readable reports. Useful knobs include `DURATION_MS`, `REQUESTS`, `CONCURRENCY`, `QUEUE_DEPTH`, `BUFFER_COUNT`, `BUFFER_SIZE`, `CASES`, and `SYSCALL_CASES`. If you raise `BUFFER_COUNT`, `QUEUE_DEPTH`, or fixed send-buffer counts, raise `ulimit -l` / `RLIMIT_MEMLOCK` too.
356
309
 
@@ -367,18 +320,30 @@ ZCRX_INTERFACE=eth0 ZCRX_CONNECT_HOST=<nic-routed-host> npm run test:zcrx
367
320
 
368
321
  For a real NIC receive proof, avoid `127.0.0.1`; route packets through the selected NIC queue, usually from a second host or a network namespace.
369
322
 
370
- ## Release and package layout
323
+ ## Installation And Supported Targets
324
+
325
+ The base package is Linux-only and depends on target-specific optional native packages. A normal install picks the one package that matches the current machine.
326
+
327
+ Published packages:
371
328
 
372
- The release flow follows napi-rs native package conventions, the same shape used by projects such as Glide: CI builds every supported target in a matrix, publishes one small native package per target, and keeps `ferrings` as the single package users install.
329
+ - `ferrings`
330
+ - `ferrings-linux-x64-gnu`
331
+ - `ferrings-linux-x64-musl`
332
+ - `ferrings-linux-arm64-gnu`
333
+ - `ferrings-linux-arm64-musl`
334
+
335
+ Source development:
336
+
337
+ ```bash
338
+ git clone https://github.com/avifenesh/ferrings.git
339
+ cd ferrings
340
+ npm install
341
+ npm test
342
+ ```
373
343
 
374
- - Root package: `ferrings`
375
- - Published native packages:
376
- - `ferrings-linux-x64-gnu`
377
- - `ferrings-linux-x64-musl`
378
- - `ferrings-linux-arm64-gnu`
379
- - `ferrings-linux-arm64-musl`
344
+ ## Release Checks
380
345
 
381
- Useful release checks:
346
+ Useful checks before cutting a release:
382
347
 
383
348
  ```bash
384
349
  npm run check:native-packages
@@ -390,19 +355,19 @@ npm run check:release-ready -- --full --require-zcrx
390
355
 
391
356
  Tag pushes that match the package version build all native artifacts, run package checks, and publish to npm with the repository `NPM_TOKEN` secret. Manual `workflow_dispatch` runs can also publish when `publish=true`. For a new release, bump the package version first; npm versions are immutable after publication.
392
357
 
393
- ## Limitations and tradeoffs
358
+ ## Limitations And Tradeoffs
394
359
 
395
360
  - Linux only; there is no macOS or Windows transport.
396
- - Node.js `>=20` is required.
361
+ - Node.js `>=22` is required.
397
362
  - This is a native addon, so kernel support and process limits affect which fast paths are active.
398
- - The TCP facade is intentionally similar to Node's server shape, but it is not a drop-in replacement for every `net.Server` behavior.
399
- - `UringHttpServer` is a fixed-response benchmark server, not an HTTP application framework.
363
+ - The TCP facade intentionally follows the common Node server shape, but it is not a drop-in replacement for every `net.Server` behavior.
364
+ - `UringHttpServer` is a fixed-response server, not an HTTP application framework.
400
365
  - TLS is not implemented.
401
366
  - ZCRX requires specific NIC hardware, kernel support, queue setup, permissions, and routed traffic through the selected RX queue.
402
367
  - Registered-buffer send can be unavailable even when the kernel supports other modern `io_uring` networking features; ferrings reports that through `capabilities().registeredSendBuffer`.
403
368
  - APIs are still early and may change between 0.x releases.
404
369
 
405
- ## Docs, examples, and project health
370
+ ## Project Health
406
371
 
407
372
  - Examples: [`examples/http-fixed.js`](examples/http-fixed.js), [`examples/tcp-echo.js`](examples/tcp-echo.js)
408
373
  - Benchmarks: [`benchmark/`](benchmark/)
package/native.js CHANGED
@@ -77,8 +77,8 @@ function requireNative() {
77
77
  try {
78
78
  const binding = require('ferrings-android-arm64')
79
79
  const bindingPackageVersion = require('ferrings-android-arm64/package.json').version
80
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
81
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
80
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
81
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
82
82
  }
83
83
  return binding
84
84
  } catch (e) {
@@ -93,8 +93,8 @@ function requireNative() {
93
93
  try {
94
94
  const binding = require('ferrings-android-arm-eabi')
95
95
  const bindingPackageVersion = require('ferrings-android-arm-eabi/package.json').version
96
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
97
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
96
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
97
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
98
98
  }
99
99
  return binding
100
100
  } catch (e) {
@@ -114,8 +114,8 @@ function requireNative() {
114
114
  try {
115
115
  const binding = require('ferrings-win32-x64-gnu')
116
116
  const bindingPackageVersion = require('ferrings-win32-x64-gnu/package.json').version
117
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
118
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
117
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
118
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
119
119
  }
120
120
  return binding
121
121
  } catch (e) {
@@ -130,8 +130,8 @@ function requireNative() {
130
130
  try {
131
131
  const binding = require('ferrings-win32-x64-msvc')
132
132
  const bindingPackageVersion = require('ferrings-win32-x64-msvc/package.json').version
133
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
134
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
133
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
134
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
135
135
  }
136
136
  return binding
137
137
  } catch (e) {
@@ -147,8 +147,8 @@ function requireNative() {
147
147
  try {
148
148
  const binding = require('ferrings-win32-ia32-msvc')
149
149
  const bindingPackageVersion = require('ferrings-win32-ia32-msvc/package.json').version
150
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
151
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
150
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
151
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
152
152
  }
153
153
  return binding
154
154
  } catch (e) {
@@ -163,8 +163,8 @@ function requireNative() {
163
163
  try {
164
164
  const binding = require('ferrings-win32-arm64-msvc')
165
165
  const bindingPackageVersion = require('ferrings-win32-arm64-msvc/package.json').version
166
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
167
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
166
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
167
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
168
168
  }
169
169
  return binding
170
170
  } catch (e) {
@@ -182,8 +182,8 @@ function requireNative() {
182
182
  try {
183
183
  const binding = require('ferrings-darwin-universal')
184
184
  const bindingPackageVersion = require('ferrings-darwin-universal/package.json').version
185
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
186
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
185
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
186
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
187
187
  }
188
188
  return binding
189
189
  } catch (e) {
@@ -198,8 +198,8 @@ function requireNative() {
198
198
  try {
199
199
  const binding = require('ferrings-darwin-x64')
200
200
  const bindingPackageVersion = require('ferrings-darwin-x64/package.json').version
201
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
202
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
201
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
202
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
203
203
  }
204
204
  return binding
205
205
  } catch (e) {
@@ -214,8 +214,8 @@ function requireNative() {
214
214
  try {
215
215
  const binding = require('ferrings-darwin-arm64')
216
216
  const bindingPackageVersion = require('ferrings-darwin-arm64/package.json').version
217
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
218
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
217
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
218
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
219
219
  }
220
220
  return binding
221
221
  } catch (e) {
@@ -234,8 +234,8 @@ function requireNative() {
234
234
  try {
235
235
  const binding = require('ferrings-freebsd-x64')
236
236
  const bindingPackageVersion = require('ferrings-freebsd-x64/package.json').version
237
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
238
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
237
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
238
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
239
239
  }
240
240
  return binding
241
241
  } catch (e) {
@@ -250,8 +250,8 @@ function requireNative() {
250
250
  try {
251
251
  const binding = require('ferrings-freebsd-arm64')
252
252
  const bindingPackageVersion = require('ferrings-freebsd-arm64/package.json').version
253
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
254
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
253
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
254
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
255
255
  }
256
256
  return binding
257
257
  } catch (e) {
@@ -271,8 +271,8 @@ function requireNative() {
271
271
  try {
272
272
  const binding = require('ferrings-linux-x64-musl')
273
273
  const bindingPackageVersion = require('ferrings-linux-x64-musl/package.json').version
274
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
275
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
274
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
275
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
276
276
  }
277
277
  return binding
278
278
  } catch (e) {
@@ -287,8 +287,8 @@ function requireNative() {
287
287
  try {
288
288
  const binding = require('ferrings-linux-x64-gnu')
289
289
  const bindingPackageVersion = require('ferrings-linux-x64-gnu/package.json').version
290
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
291
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
290
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
291
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
292
292
  }
293
293
  return binding
294
294
  } catch (e) {
@@ -305,8 +305,8 @@ function requireNative() {
305
305
  try {
306
306
  const binding = require('ferrings-linux-arm64-musl')
307
307
  const bindingPackageVersion = require('ferrings-linux-arm64-musl/package.json').version
308
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
309
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
308
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
309
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
310
310
  }
311
311
  return binding
312
312
  } catch (e) {
@@ -321,8 +321,8 @@ function requireNative() {
321
321
  try {
322
322
  const binding = require('ferrings-linux-arm64-gnu')
323
323
  const bindingPackageVersion = require('ferrings-linux-arm64-gnu/package.json').version
324
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
325
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
324
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
325
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
326
326
  }
327
327
  return binding
328
328
  } catch (e) {
@@ -339,8 +339,8 @@ function requireNative() {
339
339
  try {
340
340
  const binding = require('ferrings-linux-arm-musleabihf')
341
341
  const bindingPackageVersion = require('ferrings-linux-arm-musleabihf/package.json').version
342
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
343
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
342
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
343
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
344
344
  }
345
345
  return binding
346
346
  } catch (e) {
@@ -355,8 +355,8 @@ function requireNative() {
355
355
  try {
356
356
  const binding = require('ferrings-linux-arm-gnueabihf')
357
357
  const bindingPackageVersion = require('ferrings-linux-arm-gnueabihf/package.json').version
358
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
359
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
358
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
359
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
360
360
  }
361
361
  return binding
362
362
  } catch (e) {
@@ -373,8 +373,8 @@ function requireNative() {
373
373
  try {
374
374
  const binding = require('ferrings-linux-loong64-musl')
375
375
  const bindingPackageVersion = require('ferrings-linux-loong64-musl/package.json').version
376
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
377
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
376
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
377
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
378
378
  }
379
379
  return binding
380
380
  } catch (e) {
@@ -389,8 +389,8 @@ function requireNative() {
389
389
  try {
390
390
  const binding = require('ferrings-linux-loong64-gnu')
391
391
  const bindingPackageVersion = require('ferrings-linux-loong64-gnu/package.json').version
392
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
393
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
392
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
393
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
394
394
  }
395
395
  return binding
396
396
  } catch (e) {
@@ -407,8 +407,8 @@ function requireNative() {
407
407
  try {
408
408
  const binding = require('ferrings-linux-riscv64-musl')
409
409
  const bindingPackageVersion = require('ferrings-linux-riscv64-musl/package.json').version
410
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
411
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
410
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
411
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
412
412
  }
413
413
  return binding
414
414
  } catch (e) {
@@ -423,8 +423,8 @@ function requireNative() {
423
423
  try {
424
424
  const binding = require('ferrings-linux-riscv64-gnu')
425
425
  const bindingPackageVersion = require('ferrings-linux-riscv64-gnu/package.json').version
426
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
427
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
426
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
427
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
428
428
  }
429
429
  return binding
430
430
  } catch (e) {
@@ -440,8 +440,8 @@ function requireNative() {
440
440
  try {
441
441
  const binding = require('ferrings-linux-ppc64-gnu')
442
442
  const bindingPackageVersion = require('ferrings-linux-ppc64-gnu/package.json').version
443
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
444
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
443
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
444
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
445
445
  }
446
446
  return binding
447
447
  } catch (e) {
@@ -456,8 +456,8 @@ function requireNative() {
456
456
  try {
457
457
  const binding = require('ferrings-linux-s390x-gnu')
458
458
  const bindingPackageVersion = require('ferrings-linux-s390x-gnu/package.json').version
459
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
460
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
459
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
460
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
461
461
  }
462
462
  return binding
463
463
  } catch (e) {
@@ -476,8 +476,8 @@ function requireNative() {
476
476
  try {
477
477
  const binding = require('ferrings-openharmony-arm64')
478
478
  const bindingPackageVersion = require('ferrings-openharmony-arm64/package.json').version
479
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
480
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
479
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
480
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
481
481
  }
482
482
  return binding
483
483
  } catch (e) {
@@ -492,8 +492,8 @@ function requireNative() {
492
492
  try {
493
493
  const binding = require('ferrings-openharmony-x64')
494
494
  const bindingPackageVersion = require('ferrings-openharmony-x64/package.json').version
495
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
496
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
495
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
496
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
497
497
  }
498
498
  return binding
499
499
  } catch (e) {
@@ -508,8 +508,8 @@ function requireNative() {
508
508
  try {
509
509
  const binding = require('ferrings-openharmony-arm')
510
510
  const bindingPackageVersion = require('ferrings-openharmony-arm/package.json').version
511
- if (bindingPackageVersion !== '0.2.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
512
- throw new Error(`Native binding package version mismatch, expected 0.2.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
511
+ if (bindingPackageVersion !== '0.2.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
512
+ throw new Error(`Native binding package version mismatch, expected 0.2.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
513
513
  }
514
514
  return binding
515
515
  } catch (e) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ferrings",
3
- "version": "0.2.1",
4
- "description": "Linux io_uring TCP transport experiments for Node.js",
3
+ "version": "0.2.2",
4
+ "description": "Linux io_uring TCP transport for Node.js services",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "bin": {
@@ -68,10 +68,10 @@
68
68
  "@napi-rs/cli": "^3.7.2"
69
69
  },
70
70
  "optionalDependencies": {
71
- "ferrings-linux-arm64-gnu": "0.2.1",
72
- "ferrings-linux-arm64-musl": "0.2.1",
73
- "ferrings-linux-x64-gnu": "0.2.1",
74
- "ferrings-linux-x64-musl": "0.2.1"
71
+ "ferrings-linux-arm64-gnu": "0.2.2",
72
+ "ferrings-linux-arm64-musl": "0.2.2",
73
+ "ferrings-linux-x64-gnu": "0.2.2",
74
+ "ferrings-linux-x64-musl": "0.2.2"
75
75
  },
76
76
  "napi": {
77
77
  "binaryName": "ferrings",
@@ -83,7 +83,7 @@
83
83
  ]
84
84
  },
85
85
  "engines": {
86
- "node": ">=20"
86
+ "node": ">=22"
87
87
  },
88
88
  "os": [
89
89
  "linux"