unbrowse 9.4.2 → 9.4.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/package.json +1 -1
- package/runtime/cli.js +52 -13
- package/runtime/mcp.js +27 -11
- package/vendor/kuri/darwin-arm64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/darwin-x64/libkuri_ffi.dylib +0 -0
- package/vendor/kuri/linux-arm64/libkuri_ffi.so +0 -0
- package/vendor/kuri/linux-x64/kuri +0 -0
- package/vendor/kuri/linux-x64/libkuri_ffi.so +0 -0
- package/vendor/kuri/manifest.json +7 -7
- package/vendor/kuri/win-x64/kuri.exe +0 -0
package/package.json
CHANGED
package/runtime/cli.js
CHANGED
|
@@ -1805,7 +1805,7 @@ var init_cached_resolution2 = __esm(() => {
|
|
|
1805
1805
|
});
|
|
1806
1806
|
|
|
1807
1807
|
// .tmp-runtime-src/build-info.generated.ts
|
|
1808
|
-
var BUILD_RELEASE_VERSION = "9.4.
|
|
1808
|
+
var BUILD_RELEASE_VERSION = "9.4.3", BUILD_GIT_SHA = "036fbd2af7de", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS40LjMiLCJnaXRfc2hhIjoiMDM2ZmJkMmFmN2RlIiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUAwMzZmYmQyYWY3ZGUiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTE3VDAyOjM0OjM2LjQ4OFoifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "-0x0TRdxTXP9R-kRI2RZOW-nTUP44kpQP1cM2kCqa7k", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
1809
1809
|
|
|
1810
1810
|
// .tmp-runtime-src/version.ts
|
|
1811
1811
|
import { createHash as createHash4 } from "crypto";
|
|
@@ -146726,6 +146726,16 @@ var init_in_process_app2 = __esm(async () => {
|
|
|
146726
146726
|
|
|
146727
146727
|
// .tmp-runtime-src/cli-v7/_shared/cli-runtime.ts
|
|
146728
146728
|
import { spawn as spawn5 } from "node:child_process";
|
|
146729
|
+
function releaseAttestationHeaders() {
|
|
146730
|
+
const manifest = (RELEASE_MANIFEST_BASE64 ?? "").trim();
|
|
146731
|
+
const sig = (RELEASE_MANIFEST_SIGNATURE ?? "").trim();
|
|
146732
|
+
if (!manifest || !sig)
|
|
146733
|
+
return {};
|
|
146734
|
+
return {
|
|
146735
|
+
"X-Unbrowse-Release-Manifest": manifest,
|
|
146736
|
+
"X-Unbrowse-Release-Signature": sig
|
|
146737
|
+
};
|
|
146738
|
+
}
|
|
146729
146739
|
async function api4(method, path16, body, opts) {
|
|
146730
146740
|
let url = path16;
|
|
146731
146741
|
let payload = body;
|
|
@@ -146747,7 +146757,8 @@ async function api4(method, path16, body, opts) {
|
|
|
146747
146757
|
method,
|
|
146748
146758
|
headers: {
|
|
146749
146759
|
...payload !== undefined ? { "content-type": "application/json" } : {},
|
|
146750
|
-
"x-unbrowse-client-id": CLI_CLIENT_ID
|
|
146760
|
+
"x-unbrowse-client-id": CLI_CLIENT_ID,
|
|
146761
|
+
...releaseAttestationHeaders()
|
|
146751
146762
|
},
|
|
146752
146763
|
...payload !== undefined ? { body: JSON.stringify(payload) } : {}
|
|
146753
146764
|
};
|
|
@@ -146903,6 +146914,7 @@ function emitNextActionSummary(result) {
|
|
|
146903
146914
|
}
|
|
146904
146915
|
var import_dotenv, BASE_URL, CLI_CLIENT_ID, FRONTEND_URL;
|
|
146905
146916
|
var init_cli_runtime = __esm(async () => {
|
|
146917
|
+
init_version();
|
|
146906
146918
|
await init_in_process_app2();
|
|
146907
146919
|
import_dotenv = __toESM(require_main2(), 1);
|
|
146908
146920
|
import_dotenv.config({ quiet: true });
|
|
@@ -201410,6 +201422,29 @@ var init_snap = __esm(() => {
|
|
|
201410
201422
|
init__stateless();
|
|
201411
201423
|
});
|
|
201412
201424
|
|
|
201425
|
+
// .tmp-runtime-src/cli-v7/_shared/cli-runtime.ts
|
|
201426
|
+
function releaseAttestationHeaders2() {
|
|
201427
|
+
const manifest = (RELEASE_MANIFEST_BASE64 ?? "").trim();
|
|
201428
|
+
const sig = (RELEASE_MANIFEST_SIGNATURE ?? "").trim();
|
|
201429
|
+
if (!manifest || !sig)
|
|
201430
|
+
return {};
|
|
201431
|
+
return {
|
|
201432
|
+
"X-Unbrowse-Release-Manifest": manifest,
|
|
201433
|
+
"X-Unbrowse-Release-Signature": sig
|
|
201434
|
+
};
|
|
201435
|
+
}
|
|
201436
|
+
var import_dotenv2, BASE_URL2, CLI_CLIENT_ID2, FRONTEND_URL2;
|
|
201437
|
+
var init_cli_runtime2 = __esm(async () => {
|
|
201438
|
+
init_version();
|
|
201439
|
+
await init_in_process_app2();
|
|
201440
|
+
import_dotenv2 = __toESM(require_main2(), 1);
|
|
201441
|
+
import_dotenv2.config({ quiet: true });
|
|
201442
|
+
import_dotenv2.config({ path: ".env.runtime", quiet: true });
|
|
201443
|
+
BASE_URL2 = process.env.UNBROWSE_URL || "http://localhost:6969";
|
|
201444
|
+
CLI_CLIENT_ID2 = process.env.UNBROWSE_CLIENT_ID || `cli-${process.ppid || process.pid}`;
|
|
201445
|
+
FRONTEND_URL2 = (process.env.UNBROWSE_FRONTEND_URL || process.env.PUBLIC_FRONTEND_URL || "https://www.unbrowse.ai").replace(/\/+$/, "");
|
|
201446
|
+
});
|
|
201447
|
+
|
|
201413
201448
|
// .tmp-runtime-src/capture/zk-bound-hole.ts
|
|
201414
201449
|
var init_zk_bound_hole = __esm(() => {
|
|
201415
201450
|
init_zk_binding();
|
|
@@ -201499,7 +201534,8 @@ async function handler44(parsed, opts) {
|
|
|
201499
201534
|
const url = `${base.replace(/\/$/, "")}/v1/search/resolve`;
|
|
201500
201535
|
const headers = {
|
|
201501
201536
|
"content-type": "application/json",
|
|
201502
|
-
accept: "application/json"
|
|
201537
|
+
accept: "application/json",
|
|
201538
|
+
...releaseAttestationHeaders2()
|
|
201503
201539
|
};
|
|
201504
201540
|
if (fresh)
|
|
201505
201541
|
headers["cache-control"] = "no-cache";
|
|
@@ -201518,7 +201554,7 @@ async function handler44(parsed, opts) {
|
|
|
201518
201554
|
try {
|
|
201519
201555
|
const r = await fetch(`${base.replace(/\/$/, "")}/v1/search`, {
|
|
201520
201556
|
method: "POST",
|
|
201521
|
-
headers: { "content-type": "application/json", accept: "application/json" },
|
|
201557
|
+
headers: { "content-type": "application/json", accept: "application/json", ...releaseAttestationHeaders2() },
|
|
201522
201558
|
body: JSON.stringify({ intent, k: limit }),
|
|
201523
201559
|
signal: ctrl.signal
|
|
201524
201560
|
});
|
|
@@ -201667,13 +201703,14 @@ async function handler44(parsed, opts) {
|
|
|
201667
201703
|
process.exit(EX_GENERIC);
|
|
201668
201704
|
}
|
|
201669
201705
|
}
|
|
201670
|
-
var init_resolve = __esm(() => {
|
|
201706
|
+
var init_resolve = __esm(async () => {
|
|
201671
201707
|
init_kind_map();
|
|
201672
201708
|
init_version();
|
|
201673
201709
|
init_signer();
|
|
201674
201710
|
init_escalate_on_miss();
|
|
201675
201711
|
init__stateless();
|
|
201676
201712
|
init_client();
|
|
201713
|
+
await init_cli_runtime2();
|
|
201677
201714
|
});
|
|
201678
201715
|
|
|
201679
201716
|
// .tmp-runtime-src/cli-v7/eval/sessions.ts
|
|
@@ -203112,7 +203149,8 @@ async function handler55(parsed, opts) {
|
|
|
203112
203149
|
const url = `${base.replace(/\/$/, "")}/v1/skills/${encodeURIComponent(skillId)}`;
|
|
203113
203150
|
const headers = {
|
|
203114
203151
|
accept: "application/json",
|
|
203115
|
-
...signedHeaders
|
|
203152
|
+
...signedHeaders,
|
|
203153
|
+
...releaseAttestationHeaders2()
|
|
203116
203154
|
};
|
|
203117
203155
|
if (fresh)
|
|
203118
203156
|
headers["cache-control"] = "no-cache";
|
|
@@ -203200,11 +203238,12 @@ async function handler55(parsed, opts) {
|
|
|
203200
203238
|
process.exit(EX_GENERIC);
|
|
203201
203239
|
}
|
|
203202
203240
|
}
|
|
203203
|
-
var init_skill2 = __esm(() => {
|
|
203241
|
+
var init_skill2 = __esm(async () => {
|
|
203204
203242
|
init_kind_map();
|
|
203205
203243
|
init_version();
|
|
203206
203244
|
init_signer();
|
|
203207
203245
|
init__stateless();
|
|
203246
|
+
await init_cli_runtime2();
|
|
203208
203247
|
});
|
|
203209
203248
|
|
|
203210
203249
|
// .tmp-runtime-src/cli-v7/eval/earnings.ts
|
|
@@ -205595,7 +205634,6 @@ var TABLE3, router3;
|
|
|
205595
205634
|
var init_eval = __esm(async () => {
|
|
205596
205635
|
init_router();
|
|
205597
205636
|
init_snap();
|
|
205598
|
-
init_resolve();
|
|
205599
205637
|
init_status();
|
|
205600
205638
|
init_version2();
|
|
205601
205639
|
init_trace();
|
|
@@ -205605,7 +205643,6 @@ var init_eval = __esm(async () => {
|
|
|
205605
205643
|
init_cookies();
|
|
205606
205644
|
init_stats();
|
|
205607
205645
|
init_skills();
|
|
205608
|
-
init_skill2();
|
|
205609
205646
|
init_sessions();
|
|
205610
205647
|
init_earnings();
|
|
205611
205648
|
init_settings3();
|
|
@@ -205614,6 +205651,8 @@ var init_eval = __esm(async () => {
|
|
|
205614
205651
|
init_auth_inventory();
|
|
205615
205652
|
init_spec();
|
|
205616
205653
|
await __promiseAll([
|
|
205654
|
+
init_resolve(),
|
|
205655
|
+
init_skill2(),
|
|
205617
205656
|
init_explain(),
|
|
205618
205657
|
init_search(),
|
|
205619
205658
|
init_inspect(),
|
|
@@ -208766,7 +208805,7 @@ async function main() {
|
|
|
208766
208805
|
await runV72([process.argv[0], process.argv[1], "act", "get", ...process.argv.slice(2)]);
|
|
208767
208806
|
return;
|
|
208768
208807
|
}
|
|
208769
|
-
var
|
|
208808
|
+
var import_dotenv3, walletNudgeShown = false, SYNTHETIC_SKILL_IDS, CLI_REFERENCE;
|
|
208770
208809
|
var init_cli = __esm(async () => {
|
|
208771
208810
|
init_infer_write_method();
|
|
208772
208811
|
init_extract_auth_header();
|
|
@@ -208787,9 +208826,9 @@ var init_cli = __esm(async () => {
|
|
|
208787
208826
|
init_indexer_core2(),
|
|
208788
208827
|
init_cli_runtime()
|
|
208789
208828
|
]);
|
|
208790
|
-
|
|
208791
|
-
|
|
208792
|
-
|
|
208829
|
+
import_dotenv3 = __toESM(require_main(), 1);
|
|
208830
|
+
import_dotenv3.config({ quiet: true });
|
|
208831
|
+
import_dotenv3.config({ path: ".env.runtime", quiet: true });
|
|
208793
208832
|
(() => {
|
|
208794
208833
|
const outcome = bridgeKuriProxyEnv();
|
|
208795
208834
|
const trace = kuriProxyTraceEnabled();
|
package/runtime/mcp.js
CHANGED
|
@@ -36310,7 +36310,7 @@ var init_cached_resolution = __esm(() => {
|
|
|
36310
36310
|
});
|
|
36311
36311
|
|
|
36312
36312
|
// .tmp-runtime-src/build-info.generated.ts
|
|
36313
|
-
var BUILD_RELEASE_VERSION = "9.4.
|
|
36313
|
+
var BUILD_RELEASE_VERSION = "9.4.3", BUILD_GIT_SHA = "036fbd2af7de", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS40LjMiLCJnaXRfc2hhIjoiMDM2ZmJkMmFmN2RlIiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUAwMzZmYmQyYWY3ZGUiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTE3VDAyOjM0OjM2LjQ4OFoifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "-0x0TRdxTXP9R-kRI2RZOW-nTUP44kpQP1cM2kCqa7k", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
|
|
36314
36314
|
|
|
36315
36315
|
// .tmp-runtime-src/version.ts
|
|
36316
36316
|
import { createHash as createHash4 } from "crypto";
|
|
@@ -148305,6 +148305,16 @@ var init_cli_setup = __esm(() => {
|
|
|
148305
148305
|
|
|
148306
148306
|
// .tmp-runtime-src/cli-v7/_shared/cli-runtime.ts
|
|
148307
148307
|
import { spawn as spawn5 } from "node:child_process";
|
|
148308
|
+
function releaseAttestationHeaders() {
|
|
148309
|
+
const manifest = (RELEASE_MANIFEST_BASE64 ?? "").trim();
|
|
148310
|
+
const sig = (RELEASE_MANIFEST_SIGNATURE ?? "").trim();
|
|
148311
|
+
if (!manifest || !sig)
|
|
148312
|
+
return {};
|
|
148313
|
+
return {
|
|
148314
|
+
"X-Unbrowse-Release-Manifest": manifest,
|
|
148315
|
+
"X-Unbrowse-Release-Signature": sig
|
|
148316
|
+
};
|
|
148317
|
+
}
|
|
148308
148318
|
async function api4(method, path17, body, opts) {
|
|
148309
148319
|
let url = path17;
|
|
148310
148320
|
let payload = body;
|
|
@@ -148326,7 +148336,8 @@ async function api4(method, path17, body, opts) {
|
|
|
148326
148336
|
method,
|
|
148327
148337
|
headers: {
|
|
148328
148338
|
...payload !== undefined ? { "content-type": "application/json" } : {},
|
|
148329
|
-
"x-unbrowse-client-id": CLI_CLIENT_ID
|
|
148339
|
+
"x-unbrowse-client-id": CLI_CLIENT_ID,
|
|
148340
|
+
...releaseAttestationHeaders()
|
|
148330
148341
|
},
|
|
148331
148342
|
...payload !== undefined ? { body: JSON.stringify(payload) } : {}
|
|
148332
148343
|
};
|
|
@@ -148482,6 +148493,7 @@ function emitNextActionSummary(result) {
|
|
|
148482
148493
|
}
|
|
148483
148494
|
var import_dotenv, BASE_URL, CLI_CLIENT_ID, FRONTEND_URL;
|
|
148484
148495
|
var init_cli_runtime = __esm(async () => {
|
|
148496
|
+
init_version();
|
|
148485
148497
|
await init_in_process_app();
|
|
148486
148498
|
import_dotenv = __toESM(require_main2(), 1);
|
|
148487
148499
|
import_dotenv.config({ quiet: true });
|
|
@@ -194999,7 +195011,8 @@ async function handler44(parsed, opts) {
|
|
|
194999
195011
|
const url = `${base.replace(/\/$/, "")}/v1/search/resolve`;
|
|
195000
195012
|
const headers = {
|
|
195001
195013
|
"content-type": "application/json",
|
|
195002
|
-
accept: "application/json"
|
|
195014
|
+
accept: "application/json",
|
|
195015
|
+
...releaseAttestationHeaders()
|
|
195003
195016
|
};
|
|
195004
195017
|
if (fresh)
|
|
195005
195018
|
headers["cache-control"] = "no-cache";
|
|
@@ -195018,7 +195031,7 @@ async function handler44(parsed, opts) {
|
|
|
195018
195031
|
try {
|
|
195019
195032
|
const r = await fetch(`${base.replace(/\/$/, "")}/v1/search`, {
|
|
195020
195033
|
method: "POST",
|
|
195021
|
-
headers: { "content-type": "application/json", accept: "application/json" },
|
|
195034
|
+
headers: { "content-type": "application/json", accept: "application/json", ...releaseAttestationHeaders() },
|
|
195022
195035
|
body: JSON.stringify({ intent, k: limit }),
|
|
195023
195036
|
signal: ctrl.signal
|
|
195024
195037
|
});
|
|
@@ -195167,13 +195180,14 @@ async function handler44(parsed, opts) {
|
|
|
195167
195180
|
process.exit(EX_GENERIC);
|
|
195168
195181
|
}
|
|
195169
195182
|
}
|
|
195170
|
-
var init_resolve = __esm(() => {
|
|
195183
|
+
var init_resolve = __esm(async () => {
|
|
195171
195184
|
init_kind_map();
|
|
195172
195185
|
init_version();
|
|
195173
195186
|
init_signer();
|
|
195174
195187
|
init_escalate_on_miss();
|
|
195175
195188
|
init__stateless();
|
|
195176
195189
|
init_client2();
|
|
195190
|
+
await init_cli_runtime();
|
|
195177
195191
|
});
|
|
195178
195192
|
|
|
195179
195193
|
// .tmp-runtime-src/cli-v7/eval/sessions.ts
|
|
@@ -196699,7 +196713,8 @@ async function handler55(parsed, opts) {
|
|
|
196699
196713
|
const url = `${base.replace(/\/$/, "")}/v1/skills/${encodeURIComponent(skillId)}`;
|
|
196700
196714
|
const headers = {
|
|
196701
196715
|
accept: "application/json",
|
|
196702
|
-
...signedHeaders
|
|
196716
|
+
...signedHeaders,
|
|
196717
|
+
...releaseAttestationHeaders()
|
|
196703
196718
|
};
|
|
196704
196719
|
if (fresh)
|
|
196705
196720
|
headers["cache-control"] = "no-cache";
|
|
@@ -196787,11 +196802,12 @@ async function handler55(parsed, opts) {
|
|
|
196787
196802
|
process.exit(EX_GENERIC);
|
|
196788
196803
|
}
|
|
196789
196804
|
}
|
|
196790
|
-
var init_skill2 = __esm(() => {
|
|
196805
|
+
var init_skill2 = __esm(async () => {
|
|
196791
196806
|
init_kind_map();
|
|
196792
196807
|
init_version();
|
|
196793
196808
|
init_signer();
|
|
196794
196809
|
init__stateless();
|
|
196810
|
+
await init_cli_runtime();
|
|
196795
196811
|
});
|
|
196796
196812
|
|
|
196797
196813
|
// .tmp-runtime-src/cli-v7/eval/earnings.ts
|
|
@@ -199328,7 +199344,6 @@ var TABLE3, router3;
|
|
|
199328
199344
|
var init_eval = __esm(async () => {
|
|
199329
199345
|
init_router();
|
|
199330
199346
|
init_snap();
|
|
199331
|
-
init_resolve();
|
|
199332
199347
|
init_status();
|
|
199333
199348
|
init_version2();
|
|
199334
199349
|
init_trace();
|
|
@@ -199338,7 +199353,6 @@ var init_eval = __esm(async () => {
|
|
|
199338
199353
|
init_cookies();
|
|
199339
199354
|
init_stats();
|
|
199340
199355
|
init_skills();
|
|
199341
|
-
init_skill2();
|
|
199342
199356
|
init_sessions();
|
|
199343
199357
|
init_earnings();
|
|
199344
199358
|
init_settings2();
|
|
@@ -199347,6 +199361,8 @@ var init_eval = __esm(async () => {
|
|
|
199347
199361
|
init_auth_inventory();
|
|
199348
199362
|
init_spec();
|
|
199349
199363
|
await __promiseAll([
|
|
199364
|
+
init_resolve(),
|
|
199365
|
+
init_skill2(),
|
|
199350
199366
|
init_explain(),
|
|
199351
199367
|
init_search(),
|
|
199352
199368
|
init_inspect(),
|
|
@@ -211026,7 +211042,7 @@ async function loadVerb(verb) {
|
|
|
211026
211042
|
case "eval": {
|
|
211027
211043
|
const [snap, resolve13, status, version2, trace, markdown, screenshot2, text3, cookies, stats, skills, skill, sessions, earnings, settings, feedback, reflect, authInventory, spec, explain, search, inspect2] = await Promise.all([
|
|
211028
211044
|
Promise.resolve().then(() => (init_snap(), exports_snap)),
|
|
211029
|
-
|
|
211045
|
+
init_resolve().then(() => exports_resolve),
|
|
211030
211046
|
Promise.resolve().then(() => (init_status(), exports_status)),
|
|
211031
211047
|
Promise.resolve().then(() => (init_version2(), exports_version)),
|
|
211032
211048
|
Promise.resolve().then(() => (init_trace(), exports_trace)),
|
|
@@ -211036,7 +211052,7 @@ async function loadVerb(verb) {
|
|
|
211036
211052
|
Promise.resolve().then(() => (init_cookies(), exports_cookies2)),
|
|
211037
211053
|
Promise.resolve().then(() => (init_stats(), exports_stats)),
|
|
211038
211054
|
Promise.resolve().then(() => (init_skills(), exports_skills)),
|
|
211039
|
-
|
|
211055
|
+
init_skill2().then(() => exports_skill2),
|
|
211040
211056
|
Promise.resolve().then(() => (init_sessions(), exports_sessions)),
|
|
211041
211057
|
Promise.resolve().then(() => (init_earnings(), exports_earnings)),
|
|
211042
211058
|
Promise.resolve().then(() => (init_settings2(), exports_settings)),
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"repo_url": "https://github.com/justrach/kuri.git",
|
|
3
3
|
"branch": "adding-extensions",
|
|
4
4
|
"source_sha": "149881254046a20778f642b69f20f0c6468f6fb4",
|
|
5
|
-
"built_at": "2026-06-
|
|
5
|
+
"built_at": "2026-06-17T02:16:53.115Z",
|
|
6
6
|
"binaries": {
|
|
7
7
|
"darwin-arm64": {
|
|
8
8
|
"zig_target": "aarch64-macos",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
},
|
|
22
22
|
"linux-x64": {
|
|
23
23
|
"zig_target": "x86_64-linux",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "d00ed397ba1d7eaafc34a4d053c6f4b750e53441759c4eebb8f7481e6a7f5763"
|
|
25
25
|
},
|
|
26
26
|
"win-x64": {
|
|
27
27
|
"zig_target": "x86_64-windows-gnu",
|
|
28
|
-
"sha256": "
|
|
28
|
+
"sha256": "03cca86c9ce5b36f8439399a154b8fe358d2d0d9c939af936ec7e15ea3acbc1b",
|
|
29
29
|
"source": "pre-staged"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
@@ -33,22 +33,22 @@
|
|
|
33
33
|
"darwin-arm64": {
|
|
34
34
|
"zig_target": "aarch64-macos",
|
|
35
35
|
"lib": "libkuri_ffi.dylib",
|
|
36
|
-
"sha256": "
|
|
36
|
+
"sha256": "6de6fd93afa2b75f4dc369e8c339ac6f24715ba921cbc27c368b5f074ce573be"
|
|
37
37
|
},
|
|
38
38
|
"darwin-x64": {
|
|
39
39
|
"zig_target": "x86_64-macos",
|
|
40
40
|
"lib": "libkuri_ffi.dylib",
|
|
41
|
-
"sha256": "
|
|
41
|
+
"sha256": "3f70cc4a5b117e0dee5d568f111ce43af7a4b02c9423a4e92dfaef8dddaade17"
|
|
42
42
|
},
|
|
43
43
|
"linux-arm64": {
|
|
44
44
|
"zig_target": "aarch64-linux",
|
|
45
45
|
"lib": "libkuri_ffi.so",
|
|
46
|
-
"sha256": "
|
|
46
|
+
"sha256": "4ee1eba39a745d674e0fdc27a413a1070ccc51076e90d0b10202102b031a670b"
|
|
47
47
|
},
|
|
48
48
|
"linux-x64": {
|
|
49
49
|
"zig_target": "x86_64-linux",
|
|
50
50
|
"lib": "libkuri_ffi.so",
|
|
51
|
-
"sha256": "
|
|
51
|
+
"sha256": "603a9444f83dc41c07aba84aae270ed55e3849bdc33d951572c40513722e0be9"
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|
|
Binary file
|