@ganglion/xacpx-rmux-bridge-linux-arm64 0.6.0

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 ADDED
@@ -0,0 +1,11 @@
1
+ # @ganglion/xacpx-rmux-bridge-linux-arm64
2
+
3
+ Optional platform package for the process-owned RMUX sidecar used by
4
+ `@ganglion/xacpx-channel-relay`.
5
+
6
+ Do not depend on this package directly from application code. Install
7
+ `@ganglion/xacpx-channel-relay` and let npm/bun select the matching optional
8
+ dependency for the current OS/CPU.
9
+
10
+ Built from `packages/channel-relay/native/rmux-bridge` against crates.io
11
+ `rmux-sdk = "=0.10.0"` (no `../rmux` path dependency).
Binary file
package/checksums.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "package": "@ganglion/xacpx-rmux-bridge-linux-arm64",
3
+ "version": "0.6.0",
4
+ "bridgeVersion": "0.1.0",
5
+ "rmuxSdk": "0.10.0",
6
+ "platform": "linux-arm64",
7
+ "artifact": "bin/xacpx-rmux-bridge",
8
+ "sha256": "32d83b48f6cd7dd20b67dcb6eb799f335fd8504fffe43537cdc5e1d9c5b69ff3",
9
+ "packedAt": "2026-08-13T09:30:47.899Z"
10
+ }
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@ganglion/xacpx-rmux-bridge-linux-arm64",
3
+ "version": "0.6.0",
4
+ "description": "Process-owned xacpx RMUX bridge binary for linux-arm64.",
5
+ "license": "MIT",
6
+ "os": [
7
+ "linux"
8
+ ],
9
+ "cpu": [
10
+ "arm64"
11
+ ],
12
+ "files": [
13
+ "bin",
14
+ "README.md",
15
+ "checksums.json"
16
+ ],
17
+ "bin": {
18
+ "xacpx-rmux-bridge": "./bin/xacpx-rmux-bridge"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/gadzan/xacpx.git",
26
+ "directory": "platform-packages/xacpx-rmux-bridge-linux-arm64"
27
+ }
28
+ }