This commit is contained in:
Chris Tate
2026-01-11 03:23:39 -06:00
parent 924eb85e82
commit 6b3bae760b
198 changed files with 411 additions and 521 deletions
+9 -1
View File
@@ -3,7 +3,15 @@ node_modules/
# Build output # Build output
dist/ dist/
bin/
# Native binaries (keep the launcher scripts)
bin/agent-browser-*
!bin/agent-browser
!bin/agent-browser.cmd
# Rust build artifacts
cli/target/
cli/*.o
# Logs # Logs
*.log *.log
+47
View File
@@ -0,0 +1,47 @@
#!/bin/sh
# Cross-platform launcher for agent-browser
# Detects OS/arch and runs the appropriate native binary
# Get the directory where this script lives
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# Detect platform
OS="$(uname -s)"
ARCH="$(uname -m)"
case "$OS" in
Linux) PLATFORM="linux" ;;
Darwin) PLATFORM="darwin" ;;
MINGW*|MSYS*|CYGWIN*) PLATFORM="win32" ;;
*) PLATFORM="unknown" ;;
esac
case "$ARCH" in
x86_64|amd64) ARCH="x64" ;;
aarch64|arm64) ARCH="arm64" ;;
*) ARCH="unknown" ;;
esac
# Build binary name
if [ "$PLATFORM" = "win32" ]; then
BINARY="agent-browser-${PLATFORM}-${ARCH}.exe"
else
BINARY="agent-browser-${PLATFORM}-${ARCH}"
fi
BINARY_PATH="$SCRIPT_DIR/$BINARY"
# Try native binary first
if [ -x "$BINARY_PATH" ]; then
exec "$BINARY_PATH" "$@"
fi
# Fallback to Node.js implementation
NODE_CLI="$SCRIPT_DIR/../dist/cli-light.js"
if [ -f "$NODE_CLI" ]; then
exec node "$NODE_CLI" "$@"
fi
echo "Error: No binary found for $PLATFORM-$ARCH" >&2
echo "Run 'npm run build:native' or 'npm run build:all-platforms' to build" >&2
exit 1
+35
View File
@@ -0,0 +1,35 @@
@echo off
:: Cross-platform launcher for agent-browser (Windows)
:: Detects architecture and runs the appropriate native binary
setlocal
set "SCRIPT_DIR=%~dp0"
:: Detect architecture
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
set "ARCH=x64"
) else if "%PROCESSOR_ARCHITECTURE%"=="ARM64" (
set "ARCH=arm64"
) else (
set "ARCH=x64"
)
set "BINARY=%SCRIPT_DIR%agent-browser-win32-%ARCH%.exe"
:: Try native binary first
if exist "%BINARY%" (
"%BINARY%" %*
exit /b %errorlevel%
)
:: Fallback to Node.js implementation
set "NODE_CLI=%SCRIPT_DIR%..\dist\cli-light.js"
if exist "%NODE_CLI%" (
node "%NODE_CLI%" %*
exit /b %errorlevel%
)
echo Error: No binary found for win32-%ARCH% >&2
echo Run 'npm run build:native' or 'npm run build:all-platforms' to build >&2
exit /b 1
-1
View File
@@ -1 +0,0 @@
{"rustc_fingerprint":6311965348799869086,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.92.0 (ded5c06cf 2025-12-08)\nbinary: rustc\ncommit-hash: ded5c06cf21d2b93bffd5d884aa6e96934ee4234\ncommit-date: 2025-12-08\nhost: aarch64-apple-darwin\nrelease: 1.92.0\nLLVM version: 21.1.3\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/ctate/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""}},"successes":{}}
-3
View File
@@ -1,3 +0,0 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/
View File
@@ -1 +0,0 @@
6688ad51a4e95f7d
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[]","declared_features":"[]","target":337689355490728565,"profile":5200837052885743122,"path":4942398508502643691,"deps":[[203594543813181569,"libc",false,3626953805464230438],[13548984313718623784,"serde",false,10771651742739107466],[13795362694956882968,"serde_json",false,12645139653150135295]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/agent-browser-5894536b887e2ce7/dep-bin-agent-browser","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1,2 +0,0 @@
{"$message_type":"diagnostic","message":"struct `Request` is never constructed","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":310,"byte_end":317,"line_start":13,"line_end":13,"column_start":8,"column_end":15,"is_primary":true,"text":[{"text":"struct Request {","highlight_start":8,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: struct `Request` is never constructed\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:13:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m struct Request {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"}
{"$message_type":"diagnostic","message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
679159d09a3e2352
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":17665183640080672258,"path":4924545206005113226,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/itoa-653b9192107a1caa/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
1b3dc811a6a84610
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":4104031327198523981,"path":717295242675257595,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-0303d277881093f4/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[203594543813181569,"build_script_build",false,1172810184192965915]],"local":[{"RerunIfChanged":{"output":"release/build/libc-b8c0d8e35a1980d3/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
265a720745875532
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":9570665444227806274,"path":17393447057695460638,"deps":[[203594543813181569,"build_script_build",false,17217064405012471350]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/libc-d843359d3dd4757b/dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
c4b14c030f90f7e5
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":17665183640080672258,"path":10929854033688823645,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-dcaf8011940d18dd/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":17984201634715228204,"path":12997304344925603386,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-291b57751730d5b3/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
99492d125678f152
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":17984201634715228204,"path":13410823482762623739,"deps":[[1548027836057496652,"unicode_ident",false,17464007849574802152],[8265977775676642988,"build_script_build",false,12473910748324930327]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/proc-macro2-a753b344a6b4aa98/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8265977775676642988,"build_script_build",false,1796519922882430918]],"local":[{"RerunIfChanged":{"output":"release/build/proc-macro2-fc2999f6676f03db/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span_location.rs","src/probe/proc_macro_span_file.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8518574257822997924,"build_script_build",false,9121970376368641160]],"local":[{"RerunIfChanged":{"output":"release/build/quote-352ae41707d371c9/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
88d4161fbabf977e
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":5408242616063297496,"profile":17984201634715228204,"path":13790671566178113312,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-7d13be3cbe4f9de4/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
d003c00ee5e827e9
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":17984201634715228204,"path":7396022234697991165,"deps":[[8265977775676642988,"proc_macro2",false,5976690491564837273],[8518574257822997924,"build_script_build",false,1140729304499543147]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/quote-833e6725e0f7d298/dep-lib-quote","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,17697649354543484049]],"local":[{"RerunIfChanged":{"output":"release/build/serde-b8c046c16de48f41/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
914cfc6052ae9af5
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":17984201634715228204,"path":249724589192208054,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-d35d32ab52b82a81/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
8a8e2e7a30987c95
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":17665183640080672258,"path":12941406846979671253,"deps":[[3051629642231505422,"serde_derive",false,5641576809312684934],[11899261697793765154,"serde_core",false,9364995471257265378],[13548984313718623784,"build_script_build",false,16491525875660058229]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-d6fb44202dad3efd/dep-lib-serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
e2646e63c325f781
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":17665183640080672258,"path":2036747530678116908,"deps":[[11899261697793765154,"build_script_build",false,585977647959528904]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_core-0f7ba2581c8c0423/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11899261697793765154,"build_script_build",false,9484297894334122307]],"local":[{"RerunIfChanged":{"output":"release/build/serde_core-74db491143173930/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":17984201634715228204,"path":11726831142147958488,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_core-f043ae3f4b601577/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
860b2abc37e84a4e
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":17984201634715228204,"path":12987448913046961719,"deps":[[6490058671768129134,"syn",false,7558665053758965142],[8265977775676642988,"proc_macro2",false,5976690491564837273],[8518574257822997924,"quote",false,16800653005421544400]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_derive-a5d13e0e658ceae3/dep-lib-serde_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13795362694956882968,"build_script_build",false,3526728992091369372]],"local":[{"RerunIfChanged":{"output":"release/build/serde_json-a8467019a959068f/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":17984201634715228204,"path":2724011892659458430,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-bfa3f43b57842d41/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
ff533889848f7caf
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":17665183640080672258,"path":14035373585438498721,"deps":[[198136567835728122,"memchr",false,16570871748087296452],[329814948919240790,"zmij",false,14240623692779305710],[9938278000850417404,"itoa",false,5918643169936380263],[11899261697793765154,"serde_core",false,9364995471257265378],[13795362694956882968,"build_script_build",false,5671879291557596772]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-f61651a65bf0eb31/dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
964576a1d1c5e568
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[\"clone-impls\", \"derive\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":17984201634715228204,"path":783823479004358955,"deps":[[1548027836057496652,"unicode_ident",false,17464007849574802152],[8265977775676642988,"proc_macro2",false,5976690491564837273],[8518574257822997924,"quote",false,16800653005421544400]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-6f9a22f8c7f909b0/dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
e8228a649c9e5cf2
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[]","declared_features":"[]","target":5438535436255082082,"profile":17984201634715228204,"path":12877700945182944759,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/unicode-ident-60c57228d30a23d0/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[329814948919240790,"build_script_build",false,6095299370555714152]],"local":[{"RerunIfChanged":{"output":"release/build/zmij-60b0e0e9d7c08f71/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0}
@@ -1 +0,0 @@
This file has an mtime of when this was started.
@@ -1 +0,0 @@
ee3a1f6cccdba0c5
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":17665183640080672258,"path":13540680342508186486,"deps":[[329814948919240790,"build_script_build",false,16349286066829265974]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zmij-9501bcbd6d8b933c/dep-lib-zmij","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
@@ -1 +0,0 @@
68aaa2b57bda9654
@@ -1 +0,0 @@
{"rustc":18415816196306954164,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":17984201634715228204,"path":5279250487697270094,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zmij-aa602f885104061e/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}

Some files were not shown because too many files have changed in this diff Show More