diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index ae76be3..0efe209 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -28,6 +28,13 @@ on: - 'src/**' - 'tests/**' - 'web/**' + workflow_dispatch: + inputs: + deploy_pages: + description: 'Deploy the built app to GitHub Pages' + required: true + default: false + type: boolean concurrency: group: wasm-${{ github.workflow }}-${{ github.ref }} @@ -90,7 +97,10 @@ jobs: deploy: name: Deploy GitHub Pages - if: github.event_name == 'push' && github.ref == 'refs/heads/main' + if: | + github.event_name == 'workflow_dispatch' && + github.ref == 'refs/heads/main' && + inputs.deploy_pages needs: test runs-on: ubuntu-latest permissions: diff --git a/docs/case-studies/issue-69/README.md b/docs/case-studies/issue-69/README.md new file mode 100644 index 0000000..49e00c7 --- /dev/null +++ b/docs/case-studies/issue-69/README.md @@ -0,0 +1,84 @@ +# Issue 69: GitHub Pages CI/CD Failure + +## Summary + +The failed WebAssembly CI run was caused by the `Deploy GitHub Pages` job calling +`actions/configure-pages@v5` on every push to `main` before GitHub Pages had been +enabled for the repository and configured to use GitHub Actions. + +The build and tests passed. The failure happened only when the workflow tried to +read repository Pages configuration: + +```text +Get Pages site failed. Please verify that the repository has Pages enabled and +configured to build using GitHub Actions +``` + +## Evidence + +- Workflow run: +- Run metadata: `docs/case-studies/issue-69/evidence/run-25245349330.json` +- Full log: `docs/case-studies/issue-69/evidence/run-25245349330.log` +- Recent runs for `issue-69-43fc7f1a4ec3`: `docs/case-studies/issue-69/evidence/recent-runs-issue-branch.json` +- Fixed push run metadata: `docs/case-studies/issue-69/evidence/run-25249954218.json` +- Fixed pull request run metadata: `docs/case-studies/issue-69/evidence/run-25249954818.json` + +## Timeline + +- 2026-05-02 06:01:29 UTC: WebAssembly CI started on `main` after merge commit + `26050750382b801a4d9f33d1445627e2db2b7867`. +- 2026-05-02 06:04:27 UTC: `Test` job completed successfully after Rust tests, + WebAssembly tests, React build, and artifact upload. +- 2026-05-02 06:04:29 UTC: `Deploy GitHub Pages` job started. +- 2026-05-02 06:06:28 UTC: Pages build completed successfully. +- 2026-05-02 06:06:29 UTC: `Configure Pages` failed because the Pages site API + returned `404 Not Found`. + +## Root Cause + +`wasm.yml` deployed to Pages automatically on every push to `main`: + +```yaml +if: github.event_name == 'push' && github.ref == 'refs/heads/main' +``` + +That assumes repository Pages configuration already exists. For this repository, +the Pages site was not enabled/configured for GitHub Actions at the time of the +run, so `actions/configure-pages@v5` failed before artifact upload or deployment. + +## Requirements + +- Preserve the CI logs and metadata under `docs/case-studies/issue-69`. +- Keep WebAssembly tests and production app builds running automatically. +- Prevent unconfigured Pages deployment from failing normal `main` pushes. +- Preserve a way to deploy Pages once the repository owner enables Pages. +- Compare with CI/CD template practices and document the applicable findings. + +## Template Comparison + +The referenced JS, Rust, and C# templates consistently keep CI validation +separate from release/deploy operations and use explicit conditions for jobs +with side effects. The Rust template case-study data also shows a documentation +Pages deployment guarded separately from package release work. + +No referenced template required `actions/configure-pages` on every normal push +for a repository that may not have Pages enabled. The applicable best practice is +to keep normal CI deterministic and make environment-dependent deployment an +explicitly gated action. + +## Fix + +The WebAssembly workflow now keeps the test/build/artifact job on push and pull +request events, but gates the `Deploy GitHub Pages` job behind manual +`workflow_dispatch` with `deploy_pages: true` on `main`. + +This removes the failing Pages API call from normal `main` pushes while keeping +the existing GitHub Pages deployment steps available after repository Pages is +enabled and configured. + +## Verification + +- `node experiments/validate-wasm-workflow.mjs` +- `npm run build` +- Push WebAssembly CI run `25249954218`: `Test` succeeded and `Deploy GitHub Pages` skipped. +- Pull request WebAssembly CI run `25249954818`: `Test` succeeded and `Deploy GitHub Pages` skipped. diff --git a/docs/case-studies/issue-69/evidence/npm-build-after-ci.log b/docs/case-studies/issue-69/evidence/npm-build-after-ci.log new file mode 100644 index 0000000..ad611a9 --- /dev/null +++ b/docs/case-studies/issue-69/evidence/npm-build-after-ci.log @@ -0,0 +1,1201 @@ + +> link-cli-web@2.3.0 build +> npm run build:wasm && npm run build:web + + +> link-cli-web@2.3.0 build:wasm +> wasm-pack build --target web --out-dir web/pkg + +[INFO wasm_pack::command] Running build command... +[INFO wasm_pack::command::build] Checking rustc version... +[INFO wasm_pack::command::build] rustc version is 94. +[INFO wasm_pack::command::build] Checking crate configuration... +[INFO wasm_pack::command::build] Crate is correctly configured. +[INFO wasm_pack::command::build] Checking for wasm-target... +[INFO]: 🎯 Checking for the Wasm target... +[INFO wasm_pack::build::wasm_target] Found wasm32-unknown-unknown in "/home/box/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/wasm32-unknown-unknown/lib" +[INFO wasm_pack::command::build] Checking for wasm-target was successful. +[INFO wasm_pack::command::build] Building wasm... +[INFO]: 🌀 Compiling to Wasm... + Finished `release` profile [optimized] target(s) in 0.07s +[INFO wasm_pack::command::build] wasm built at "/tmp/gh-issue-solver-1777717653183/target/wasm32-unknown-unknown/release/clink_wasm.wasm". +[INFO wasm_pack::command::build] Creating a pkg directory... +[INFO wasm_pack::command::build] Created a pkg directory at "/tmp/gh-issue-solver-1777717653183". +[INFO wasm_pack::command::build] Identifying wasm-bindgen dependency... +[INFO wasm_pack::command::build] Installing wasm-bindgen-cli... +[INFO]: ⬇️ Installing wasm-bindgen... +[INFO wasm_pack::command::build] Installing wasm-bindgen-cli was successful. +[INFO wasm_pack::command::build] Building the wasm bindings... +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen" "--version" +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen" "--version" +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen" "/tmp/gh-issue-solver-1777717653183/target/wasm32-unknown-unknown/release/clink_wasm.wasm" "--out-dir" "/tmp/gh-issue-solver-1777717653183/web/pkg" "--typescript" "--target" "web" +[2026-05-02T10:31:20Z DEBUG walrus::module::types] parsing type section +[2026-05-02T10:31:20Z DEBUG walrus::module::imports] parse import section +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] parse function section +[2026-05-02T10:31:20Z DEBUG walrus::module::tables] parse table section +[2026-05-02T10:31:20Z DEBUG walrus::module::memories] parse memory section +[2026-05-02T10:31:20Z DEBUG walrus::module::globals] parse global section +[2026-05-02T10:31:20Z DEBUG walrus::module::exports] parse export section +[2026-05-02T10:31:20Z DEBUG walrus::module::elements] parse element section +[2026-05-02T10:31:20Z DEBUG walrus::module::data] parse data section +[2026-05-02T10:31:20Z DEBUG walrus::module] parsing custom section `__wasm_bindgen_unstable` +[2026-05-02T10:31:20Z DEBUG walrus::module] parse name section +[2026-05-02T10:31:20Z DEBUG walrus::module::producers] parse producers section +[2026-05-02T10:31:20Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] parse code section +[2026-05-02T10:31:20Z DEBUG walrus::module] parse complete +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] custom section '__wasm_bindgen_unstable' looks like a Wasm bindgen section +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 55 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 37 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 74 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 60 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 63 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 64 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 66 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 67 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 302 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5603 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 490 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 186 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 89 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 97 +[2026-05-02T10:31:20Z DEBUG wasm_bindgen_cli_support] Exception handling version: None +[2026-05-02T10:31:20Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-02T10:31:20Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-02T10:31:20Z DEBUG walrus::module] start emit +[2026-05-02T10:31:20Z DEBUG walrus::module::types] emitting type section +[2026-05-02T10:31:20Z DEBUG walrus::module::imports] emit import section +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function section +[2026-05-02T10:31:20Z DEBUG walrus::module::tables] emit table section +[2026-05-02T10:31:20Z DEBUG walrus::module::memories] emit memory section +[2026-05-02T10:31:20Z DEBUG walrus::module::tags] emit tag section +[2026-05-02T10:31:20Z DEBUG walrus::module::globals] emit global section +[2026-05-02T10:31:20Z DEBUG walrus::module::exports] emit export section +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit code section +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 694 } Some(">::process::h9566f5fb3d63e25a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 681 } Some(">::process::hb34f32d3a0ac949f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 49 } Some("core::slice::sort::stable::drift::create_run::hddb30f57e97ba099") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1050 } Some("core::num::flt2dec::strategy::dragon::format_shortest::h4c66a46b964fa2fa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 791 } Some(" as core::ops::drop::Drop>::drop::h7e9cd6124a68dca1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 296 } Some("serde_json::de::Deserializer::parse_decimal_overflow::h559903ea78d31774") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 75 } Some("clink_wasm::BrowserStorage::new::he2698b705d1d5022") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 704 } Some("links_notation::flatten_links::ha9ac8c58a7b858ab") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 141 } Some("alloc::vec::Vec::extend_desugared::hb787b7ca9d4c9cdb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 526 } Some("link_cli::query_processor::QueryProcessor::simplify_changes_list::h0b68706924bc5102") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 973 } Some("core::str::pattern::TwoWaySearcher::next::h241d95cfea0204ee") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 561 } Some(" as core::iter::traits::iterator::Iterator>::next::h19a39a70e8d4176b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 194 } Some("core::slice::sort::stable::driftsort_main::h180ed0a3870bd7e6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 765 } Some("::write_char::h32949ed49a1ffdbf[3]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 690 } Some(">::process::h864b0efed5c69b2a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 811 } Some(" as core::fmt::Write>::write_str::hd4187599da4a2b82") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 523 } Some("link_cli::query_processor::QueryProcessor::patterns_from_lino::h9c01111735a28b95") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 800 } Some("::write_char::h32949ed49a1ffdbf[4]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 714 } Some("core::str::::trim_matches::h770678104609bef9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 135 } Some("alloc::vec::Vec::extend_desugared::hb1348984711335b0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 235 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_implicit_definitions::h62d760e6a6633f23") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 641 } Some("core::hash::BuildHasher::hash_one::hf1ff28e997ff1669") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 831 } Some("::write_char::h32949ed49a1ffdbf[5]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 150 } Some("alloc::vec::Vec::extend_trusted::h1b570b865b2bd882") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 13 } Some("link_cli::query_processor::QueryProcessor::match_pattern::h217e956913cc5bf4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1046 } Some("core::num::flt2dec::strategy::dragon::format_exact::h73bd3f6ba050fa16") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 591 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_explicit_definitions::h2944507a049dbab6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 916 } Some("::write_char::h32949ed49a1ffdbf[6]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 287 } Some("serde_json::de::Deserializer::end::h6c84eb1ef89f3460") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 151 } Some("alloc::vec::Vec::extend_trusted::h5985caae3ba365cf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 740 } Some(" as core::iter::traits::iterator::Iterator>::fold::hc03c35306e0d4fcf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 439 } Some("hashbrown::raw::RawTable::remove_entry::hc9babc72f28da566") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 152 } Some("alloc::vec::Vec::extend_trusted::h8b1d1d4463dd5ea7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1017 } Some("core::fmt::Formatter::pad_integral::h79733d96345228a4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 576 } Some("core::slice::sort::unstable::quicksort::partition::hc97d0fe3faa7fcd1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1015 } Some("core::fmt::num::::fmt::h5231b83b7d9a2a57") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 330 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::haf4c3a0e4502961c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 577 } Some("core::slice::sort::unstable::quicksort::partition::hd3cb47e43d565b14") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 639 } Some("core::hash::BuildHasher::hash_one::h022906d92dda6eb2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 998 } Some("::write_char::h32949ed49a1ffdbf[7]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 615 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h6faedf380008cbd7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 598 } Some("core::str::::contains::h94123b610c6c98dd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 323 } Some("serde_json::read::SliceRead::position_of_index::hf4f3506f2c8a9dee") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 332 } Some("alloc::raw_vec::RawVecInner::finish_grow::hca61264eb911118d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 645 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h6bc639954436e013") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 803 } Some(" as core::ops::drop::Drop>::drop::hcf2998383c4f0724") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1048 } Some("core::fmt::float::float_to_decimal_common_shortest::h8a36f199b489b4f9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 19 } Some("link_cli::query_processor::QueryProcessor::process_query::h388092759f9d7c7a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 651 } Some("alloc::vec::Vec::extend_desugared::h04b451478abdd76d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 404 } Some("::fmt::hf14fe3430873be8b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 889 } Some("std::panicking::panic_handler::{{closure}}::hf36efc37fdd11196") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 396 } Some("alloc::raw_vec::RawVecInner::finish_grow::h9532f7052dfc8c73") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 664 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h8a4f037368013314") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 644 } Some("alloc::raw_vec::RawVecInner::finish_grow::hcb0a78049f5c48f7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 901 } Some("std::panicking::set_hook::h9454de0bb90a00ee") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 700 } Some(">::process::hd98ae66002261c08") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 226 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::ha9ac6ddedfb7c3e9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 861 } Some("dlmalloc::dlmalloc::Dlmalloc::free::ha98daa4c6dd8ad86") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 769 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h54c6222727848a73") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 488 } Some("alloc::vec::Vec::extend_trusted::h4e43392f39b7d388") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 733 } Some("alloc::raw_vec::RawVecInner::finish_grow::h61bf4835e564f138") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 742 } Some("alloc::vec::Vec::extend_trusted::h13b5897954d388e7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 782 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h09a24d35b2c98304") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 864 } Some("dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h0e84f108fd9f7b7c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 744 } Some("alloc::vec::Vec::extend_trusted::ha5f36f14d4d7a5da") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 781 } Some("alloc::raw_vec::RawVecInner::finish_grow::h5be0c528d4db91cb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 174 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h886f3df6aa34796a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 858 } Some("dlmalloc::dlmalloc::Dlmalloc::malloc::he97e96981fab807e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 506 } Some("core::slice::sort::shared::smallsort::sort9_optimal::hcb93006180600293") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 911 } Some("core::ptr::drop_in_place<::fmt::{{closure}}>::had59466dec420215") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 294 } Some("serde_json::de::Deserializer::parse_exponent::h8830d6bd244688e9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 814 } Some(" as core::ops::drop::Drop>::drop::h0cf85938397e0a1f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1064 } Some("core::fmt::Formatter::debug_struct_field1_finish::h8807212d123ee5d2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 920 } Some("::fmt::{{closure}}::hc9bee22c0d8eb035") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 501 } Some("core::hash::BuildHasher::hash_one::hedfc18b9223b2110") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 85 } Some("link_cli::named_type_links::NamedTypeLinks::lino_lines::hd71baf7aaf15d918") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 568 } Some("core::slice::sort::stable::merge::MergeState::merge_down::h9e979e0a9157c292") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1039 } Some("core::fmt::num::::fmt::ha87e2aa4a9842c5b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 513 } Some(" as core::iter::traits::iterator::Iterator>::fold::h32ec4a48622aa068") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1025 } Some("core::str::converts::from_utf8::h98d2c0a7c1a2b83e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 60 } Some("core::slice::sort::shared::smallsort::sort4_stable::h5201efdade325acf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 142 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::hd1e9fee8572ee805") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 18 } Some("link_cli::query_processor::QueryProcessor::links_matching_definition::h418501a4d5dc7465") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 502 } Some("link_cli::changes_simplifier::simplify_changes::h6c72c97f6808acb9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 371 } Some("__externref_table_alloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 168 } Some("alloc::vec::in_place_collect::from_iter_in_place::h7e801105aff29ae9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 903 } Some("::fmt::hb9235427d3962ebc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 169 } Some("alloc::vec::in_place_collect::from_iter_in_place::h95fe5c14d79c08fd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 968 } Some("rustc_demangle::v0::Printer::print_sep_list::h3d577f1ff5506d67") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 601 } Some("::fmt::hb4070840645f9fbd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 209 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h2b6c5e1ddc81f1b4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 310 } Some(" as serde_core::de::MapAccess>::next_key_seed::has_next_key::h1a248d14a515b909") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 177 } Some(" as core::iter::traits::iterator::Iterator>::next::hba1061b807d59a00") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 802 } Some("alloc::string::String::replace_range::he1928a18fa3c38f5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 474 } Some("hashbrown::map::HashMap::insert::hbf5536bb1a3231b6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 217 } Some(" as core::fmt::Debug>::fmt::h1fdc89f52c20252c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 133 } Some("alloc::vec::Vec::extend_desugared::hde6833048a608596") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 114 } Some("link_cli::named_type_links::NamedTypeLinks::format_reference::h4a48a93349e0ccfd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 484 } Some("alloc::vec::Vec::extend_desugared::h5a6cec719230a5a7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 218 } Some(" as core::fmt::Debug>::fmt::h3c86a178f667b71f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 59 } Some("core::slice::sort::shared::smallsort::sort4_stable::h1922f2eab3cd5b91") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 896 } Some("std::backtrace::Backtrace::capture::ha711890724136613") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 990 } Some("::fmt::h423cb56e2b8b3553") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 31 } Some("core::slice::sort::stable::quicksort::stable_partition::h06c8ec657f6253bc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 886 } Some("std::sys::sync::once::no_threads::Once::call::h10f744fc18e0cb4c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 130 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h6566c4a80d07daea") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 71 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::hcd0eb54917971337") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 145 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::ha8d433026630dab9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 943 } Some("rustc_demangle::v0::Parser::hex_nibbles::h39190a2835f26b0f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 183 } Some("serde_core::ser::SerializeMap::serialize_entry::h6052c7453ceb465c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 679 } Some("links_notation::parser::multi_line_any_link::hb720f438e348617f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 203 } Some("core::fmt::builders::DebugSet::entries::hd8dc7eb5a733ffa5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 22 } Some("link_cli::query_processor::QueryProcessor::solution_is_no_operation::h4ec4f5c01cf46f5e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 739 } Some(" as core::iter::traits::iterator::Iterator>::fold::h5b3febedfe02fcb2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 90 } Some("clink_wasm::Clink::version::h111015b63b54a5fd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 204 } Some("core::fmt::builders::DebugSet::entries::hfc7a5550333d6afe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 123 } Some("clink_new") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 39 } Some("core::slice::sort::stable::quicksort::quicksort::h5bfd6acfaa1db9e6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 525 } Some("link_cli::query_processor::QueryProcessor::determine_operations::hee044d33aceb3e23") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 103 } Some("::get_by_name::h61ef188a4a9b009f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 144 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::h76b1502b3be0adfd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 220 } Some("hashbrown::raw::RawTableInner::drop_elements::h5e9224de673a2d6f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 33 } Some("core::slice::sort::stable::quicksort::stable_partition::h302ded59c2ab57c3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 499 } Some("core::hash::BuildHasher::hash_one::ha9695c8dca793eb6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 282 } Some("::fmt::h11debc89b4a1d4c8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 468 } Some("hashbrown::map::HashMap::contains_key::h32d1001aeaa37b24") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 430 } Some("hashbrown::raw::RawTableInner::drop_elements::h0bfe61ac3de44135") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 283 } Some("::invalid_type::h45717496a8a08199") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 459 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::h8d67e19f165e4e27") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 470 } Some("hashbrown::map::HashMap::contains_key::hb7729926d8ed8a1d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 961 } Some("core::str::iter::SplitInternal

::next::h5ceed02bb4d023a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4236 } Some("core::result::Result::unwrap_or_default::h0ffe0264646aeb35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4257 } Some(" as core::ops::try_trait::Try>::branch::hc30bfda06927c012") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 77 } Some("::next_match::h480fed31f520af1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6581 } Some("hashbrown::map::HashMap::remove_entry::h1f7b5b4c355ad497") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1682 } Some("<&str as core::str::pattern::Pattern>::is_contained_in::h9d040e7b1e1238e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6582 } Some("hashbrown::map::HashMap::remove_entry::h4d0f65018c84ff35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1683 } Some("::next_match::h50b753b1676571ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4258 } Some(" as core::ops::try_trait::Try>::branch::hca0a3ccf1881e79e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4801 } Some("serde_json::ser::Formatter::write_u32::h0a3976a8c5070591") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4277 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_implicit_definitions::hb820d0120a66e024") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 639 } Some("alloc::collections::btree::node::NodeRef::correct_childrens_parent_links::hf2438b8ba4128631") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4810 } Some(" as serde_core::ser::SerializeSeq>::end::h73c474de7a794bb0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1325 } Some("alloc::rc::data_offset::h9f76ba1ce90583ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4838 } Some(" as serde_core::ser::SerializeMap>::end::h28a67d7e6c764785") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1445 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h68196a2cdf16b7f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6583 } Some("hashbrown::map::HashMap::remove_entry::h8c61d6c8ec06e3ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1446 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h6d3cb976d33b3c52") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6806 } Some(" as core::ops::index::Index>::index::h18f09eee0f9c891d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7248 } Some("core::hash::BuildHasher::hash_one::h46b0b120106c329f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1447 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h74fb915f62406f9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7269 } Some(" as core::hash::Hasher>::write_str::h6c8a4226488bd4ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7347 } Some("core::hash::BuildHasher::hash_one::h150abc5749cec8a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1448 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::hb0a5098d73ec02b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5001 } Some(" as serde_core::de::MapAccess>::next_value_seed::h9a8224a20b3bca0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7378 } Some(" as core::hash::Hasher>::write_str::h321292c4a963ede2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1449 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::he68acc56e7b3da7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5489 } Some("::next_match_back::h1c4181ea521a35dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7725 } Some(" as core::ops::index::Index>::index::hbd701cf572000acc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3713 } Some("alloc::rc::data_offset::h6e2b7b89f1180f0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8085 } Some("core::option::Option::unwrap_or::h8f2b5dae23832de8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4649 } Some(" as core::iter::traits::iterator::Iterator>::next::h67d5ae91fcff1dbd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 353 } Some("core::ptr::drop_in_place::hc4d50b257c77af05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4873 } Some("hashbrown::raw::RawIter::drop_elements::hc76b7b824c2673a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 751 } Some(" as core::ops::try_trait::Try>::branch::h991b6ab725b05812") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4917 } Some("alloc::rc::data_offset::h6bdcc754cc957a52") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5426 } Some("alloc::collections::btree::node::NodeRef::correct_childrens_parent_links::h58f851d8aac5fb57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1411 } Some("core::str::traits::::eq::h83b77a271766d51f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8451 } Some("core::result::Result::unwrap_unchecked::hf7d1e5f2103afa99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6258 } Some(" as core::iter::traits::iterator::Iterator>::next::h136615f9ce98611b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8795 } Some("anyhow::chain::::new::h50e5c11255714f35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6888 } Some("hashbrown::raw::RawIter::drop_elements::hd0990c7494fc1483") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8948 } Some("::write_str::he0f136bfd437b8d6[1]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7872 } Some(" as core::iter::adapters::zip::ZipImpl>::new::h78a45ea4438e8006") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7973 } Some("core::str::::find::h35909163ec5c1d94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9184 } Some("memcmp") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7974 } Some("core::str::::find::h3f87ae4743c41548") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 163 } Some("core::panicking::assert_failed::h70addafc92dfb76e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7975 } Some("core::str::::find::h63a0a1d3a1633e86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3536 } Some(" as core::ops::function::FnOnce<()>>::call_once::h7f4dc78a976af6b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 164 } Some("core::panicking::assert_failed::hf37a7739db2ef67f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7976 } Some("core::str::::find::h69a39f8a3e92167a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 805 } Some("core::ptr::drop_in_place,serde_json::error::Error>>::h1d4610f5e6f1d310") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7983 } Some("core::iter::traits::iterator::Iterator::position::he987f3500cadaacd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 892 } Some("core::ptr::drop_in_place>::h3d2bce096538a507") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8505 } Some(" as core::iter::traits::iterator::Iterator>::next::hb5af530dde9c2fba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1166 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::hcacb07dd94d561d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4243 } Some(" as core::ops::try_trait::Try>::branch::h0693372410843924") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 270 } Some("core::slice::sort::stable::driftsort_main::h771bc38ac0120aba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4803 } Some("serde_json::ser::Formatter::write_bool::ha93b6f26516094cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 641 } Some("alloc::collections::btree::node::NodeRef::new_internal::h10bb403240d32876") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4952 } Some("core::str::traits::::eq::hd979a69c515d93e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6232 } Some("<&str as core::str::pattern::Pattern>::is_contained_in::h033db45aedb7eb3a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5373 } Some("core::array:: for [T; N]>::index_mut::h16966138054d0ee4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5832 } Some(">::shl::h74c89d04de302656") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6234 } Some("::next_match::h2449b5a06bb36027") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6098 } Some("alloc::vec::Vec::try_reserve_exact::h6ad3f4106ea835e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6931 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::h1aece4948626f524") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6144 } Some("core::str::traits::::eq::h3a1942f7d8189c29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1171 } Some(">>::from::ha7904c726952177e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7474 } Some("<&str as core::str::pattern::Pattern>::is_contained_in::h6a36e56314218725") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1362 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_unit_variant::h16562fb0282f2d4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7475 } Some("::next_match::h492c60fcfb497523") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 244 } Some(" as test::formatters::OutputFormatter>::write_run_finish::hd75a40c64ac80dcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1478 } Some("core::iter::traits::iterator::Iterator::chain::hcc6855bd540442a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7985 } Some("core::result::Result::map_err::h0e192518caa8adf8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3547 } Some(" as core::ops::function::FnOnce<()>>::call_once::hbf64ac0e1b29efc7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5282 } Some("wasm_bindgen::convert::slices::::into_abi::{{closure}}::h6eaa087db53c01b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7987 } Some("core::result::Result::map_err::h1eea57bb39e31c8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3634 } Some("js_sys::futures::queue::Queue::new::{{closure}}::h1c74962e0ce84c85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7988 } Some("core::result::Result::map_err::h1fc063b84b0502df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4011 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h7fd3bf4ae5653628") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5547 } Some("::fmt::h37b1ca6adb7291d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 714 } Some("core::result::Result::ok::h5886cb837f270924") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6694 } Some(" as core::iter::traits::collect::Extend>::extend::h003844b6a338af8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6695 } Some(" as core::iter::traits::collect::Extend>::extend::h17d00f50cf5ede6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7070 } Some(" as core::ops::try_trait::Try>::branch::h1582544e89920ea7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7303 } Some("core::str::traits::::eq::h74110119d73e0705") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7337 } Some("std::fs::metadata::he81d0e3ceb475354") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7345 } Some("core::str::traits::::eq::h5caf23cccd0e28e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7556 } Some("core::str::traits::::eq::h566615c55801c0f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7637 } Some("links_notation::parser::any_link::hc1ea027111ba0ec7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8228 } Some(" as core::fmt::Debug>::fmt::h9fab0c661708ea54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8823 } Some("__rustc[16f1505adc47261a]::__rdl_dealloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8902 } Some("core::ptr::drop_in_place>::h34ebbcaf05107b1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9159 } Some("core::result::unwrap_failed::h8a0dea2fe721e8ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 988 } Some("core::option::Option::map::h8bf10df6a2c2310c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1224 } Some("wasm_bindgen_test::__rt::Context::filtered_count::_::__wasm_bindgen_generated_WasmBindgenTestContext_filtered_count::{{closure}}::h1f2ee3dab87e5141") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1531 } Some("wasm_bindgen::convert::slices::::into_abi::h17a50901d8b89614") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4087 } Some("wasm_bindgen::convert::impls::>::into_abi::he2672499e84b9a62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4686 } Some("alloc::vec::Vec::dedup_by_key::{{closure}}::h6db8ae7131c9f5ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4687 } Some("alloc::vec::Vec::dedup_by_key::{{closure}}::h6fae15ddc39dc3d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5138 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h5e6692b94beb0cdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5140 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h73e7b77d94a9e17f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5142 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::had15083fe6a7b30c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5694 } Some("itoa::::write::h3939d5a8156d6d5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5695 } Some("itoa::::write::h76b8ca11f5c09999") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5748 } Some("memchr::memchr::count_raw::he5f38c2dd5a5601f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5876 } Some("wasm_bindgen::convert::slices::::into_abi::hba19793957d3e5d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6091 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::ha0f9a50ebe8293fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6093 } Some("alloc::vec::Vec::from_raw_parts_in::hb5a7f1e4902ef6c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6095 } Some("alloc::vec::Vec::from_raw_parts_in::h7f8d46dfab2fd761") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6244 } Some("link_cli::query_processor::QueryProcessor::is_variable::h5508d646419e8d06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6354 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h71943d4e8e134274") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6356 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::ha1f6beafae450d29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6358 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::hce68484d7b28678e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7190 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::hf17baeee2c074ead") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7596 } Some("links_notation::parser::is_whitespace_char::hadceeb137af88b41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7608 } Some("links_notation::parser::single_line_any_link::h45ae0ad98265fadd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7626 } Some("alloc::str::::repeat::h8b56e7c52bec4245") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8034 } Some(" as nom::internal::Parser>::process::{{closure}}::hbe2ecf2330bcbda8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8217 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h545f0e4d9cc0cabd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8218 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h5ecb3e6dea04089a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8274 } Some(" as nom::internal::Parser>::process::{{closure}}::h6bfcdcd04885632e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8303 } Some(" as nom::internal::Parser>::process::{{closure}}::he99311e733f89b50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8307 } Some(" as nom::internal::Parser>::process::{{closure}}::h0d0bc664b888ca12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8311 } Some(" as nom::internal::Parser>::process::{{closure}}::hd83da6e60c54272a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8314 } Some(" as nom::internal::Parser>::process::{{closure}}::h612909eba07116ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8317 } Some(" as nom::internal::Parser>::process::{{closure}}::h69fadae650d65241") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8332 } Some("core::str::traits:: for core::ops::range::RangeTo>::get_unchecked::h15bbcacd3caac8c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8471 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h74f10da54b00c0cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8472 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::h9e90732d107b8842") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9081 } Some("core::fmt::num::imp::::fmt::h09880411cb7be385") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 272 } Some("<&T as core::fmt::Display>::fmt::h1de125e5579734a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 287 } Some("<&T as core::fmt::Display>::fmt::hca74b7d3401addae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 815 } Some("core::ptr::drop_in_place::h090c08bbbd63a3c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 911 } Some("core::cell::RefCell::new::hccd86136debd0d36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 912 } Some("core::cell::RefCell::new::he1d332d30f7f2c01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1635 } Some("__wbgbench_import") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1661 } Some("::allocate::h00267102d95a1696") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1755 } Some("::allocate::h99830397111bbe7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1759 } Some("::allocate_zeroed::h5a24a4afe19a6794") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3372 } Some("core::cell::RefCell::new::h1f2d2424ca8599f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3417 } Some("js_sys::futures::task::singlethread::Task::wake::h2b1a1428734d6d5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3628 } Some("core::ops::function::FnOnce::call_once::habb8fabbe532f2bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4177 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h4f04a3602d5f6c4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4946 } Some("wasm_bindgen::__rt::WasmRefCell::new::h7fe49f5b939d8ce5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4986 } Some("::search::{{closure}}::hb118729ea8f2444e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5032 } Some("core::cmp::Ord::max::h22a7ced464f3fd50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5057 } Some("::get_by_name::h348c99f842a634d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5071 } Some("__wbg_clink_free") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5353 } Some("alloc::vec::Vec::clear::hc709e076bebe5aa7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5522 } Some("core::num::::unchecked_neg::precondition_check::h9f67ecc104f12992") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5773 } Some("::allocate_zeroed::hf4d94ce4ef6a7041") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5776 } Some("::allocate::h7af12482a55f9f7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5798 } Some(" as core::ops::range::RangeBounds>::end_bound::he043b11c1a7b456f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5810 } Some("::mul::h0f65bd9aed5ab77d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5992 } Some("core::cmp::Ord::max::hb26a5fa7929017c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6135 } Some("::allocate::h88b316f677970186") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6139 } Some("::allocate_zeroed::h6c2c7020be91e35b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6162 } Some("::allocate::h6f6f2b5104825f5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6166 } Some("::allocate_zeroed::h94cafa4c98caa046") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6692 } Some("link_cli::lino_link::LinoLink::new::h503bd0bbb395f09d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6727 } Some("alloc::slice::::sort_by::{{closure}}::h35339a605ae11c2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7140 } Some("core::slice::::swap_unchecked::h5519db730adcecdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7149 } Some("core::iter::traits::iterator::Iterator::all::check::{{closure}}::hcbb63b64fae1e7d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7222 } Some("core::num::::unchecked_neg::precondition_check::ha28938a9077bb509") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7279 } Some("core::result::Result::map_err::h2625da86876aff04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7315 } Some("::allocate_zeroed::h4bb6b5fecdffffd2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7317 } Some("::allocate::hf41bfb8a9c497f05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7362 } Some("core::option::Option::and_then::h2e87bfeb607a57d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5730 } Some("::index_into::hddae128fa55bb18b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7989 } Some("core::result::Result::map_err::h258be7910ad91063") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5741 } Some("memchr::arch::all::memchr::Two::find_raw::{{closure}}::h2b0832f646e1b492") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7994 } Some("core::result::Result::map_err::h3df9e86945959681") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5849 } Some("zmij::count_trailing_nonzeros::h77ce312bf8d2639c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5895 } Some("wasm_bindgen::convert::slices::::vector_from_abi::h19e1381df9dad981") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7999 } Some("core::result::Result::map_err::h6b2a7c6a1ae3dd64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5987 } Some("wasm_bindgen::convert::slices::::vector_from_abi::hb745ae8e1f475303") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4092 } Some("core::option::Option::as_mut::h499eb564b77af78f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 774 } Some("serde_core::ser::iterator_len_hint::h7a8961b32710e193") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4179 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h6b4866e34b192aa1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8012 } Some("core::result::Result::map_err::hc1e8b774cf157654") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4204 } Some("::into_iter::h733d162482f61c35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4208 } Some("serde_core::de::Visitor::visit_f64::h68de1d533b7cfbb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8015 } Some("core::result::Result::map_err::hd45f378b15698550") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4287 } Some("core::iter::traits::iterator::Iterator::map::h4c1fb5fab170e6a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8019 } Some("core::result::Result::map_err::hfd01058a303105c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4490 } Some("core::iter::traits::iterator::Iterator::copied::hd82592e19ed0a311") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4556 } Some("core::iter::traits::iterator::Iterator::map::hc024ed9b606ff306") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9099 } Some("core::num::flt2dec::strategy::dragon::format_exact::h73bd3f6ba050fa16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 775 } Some("serde_core::ser::iterator_len_hint::hfe44b40102048575") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1248 } Some("alloc::raw_vec::RawVec::grow_one::h89c67af8094171e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1509 } Some("core::f64::::classify::h8e83cc170f100a11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4652 } Some("::into_iter::h9af87dbf96f04dd1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3385 } Some("alloc::raw_vec::RawVec::grow_one::hee77b0a729ce37b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4895 } Some("::into_iter::h3c6452d996c98022") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4896 } Some("::into_iter::hb365a8b7994c6912") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4461 } Some("core::slice::::split_at_mut::h110718a223b87b8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5169 } Some("core::ptr::drop_in_place,anyhow::Error>>::h004ce5237f7f8f5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4784 } Some("core::slice::::split_at_mut::hd7d91aa8476170d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5360 } Some("serde_json::value::partial_eq::eq_bool::h68bb37499e2912a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8090 } Some("<&str as core::str::pattern::Pattern>::is_contained_in::h26c3ffbdfd09c5fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4848 } Some("serde_core::ser::iterator_len_hint::h1253cf6bcadf6377") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5412 } Some(">::index::h85e78ca8de2d2ec9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5487 } Some(">::get::h7f3c6255d56d612a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8091 } Some("::next_match::hcaa4e8765b7ee748") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5676 } Some("core::ptr::drop_in_place::ha9fdb6045a7e1324") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5932 } Some(">::get_mut::h3468a4e944d94bc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4978 } Some("core::slice::::split_at_mut::h3186ec1cb58ce822") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7371 } Some("::allocate_zeroed::h611d5126f8f956ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5120 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h00f7d08f98b09089") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7373 } Some("::allocate::hcca05205d9e98e89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5121 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h663a5df158bf32eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7550 } Some("::allocate_zeroed::h00656efceb6c1d2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5122 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h716f62cf624acd2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7552 } Some("::allocate::hb55113e24a82744c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5123 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h728ab692bf82af46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6171 } Some("<::fmt::LookForDecimalPoint as core::fmt::Write>::write_char::ha18b0a375b0d33d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5124 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::hc4929acf7ece1e9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5125 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::he6b300af2e1e5c5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5126 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::he811fad560d94439") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5243 } Some(" as core::ops::drop::Drop>::drop::h4c05c88e8a182546") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5245 } Some(" as core::ops::drop::Drop>::drop::hd39ffd51b1643306") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1609 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::hc960edad7e27ad48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5248 } Some(" as core::ops::drop::Drop>::drop::hb3b3abbb8082686c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5428 } Some("alloc::collections::btree::node::NodeRef::new_internal::h71504aec8492b2ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6349 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::he22511ceec1987a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5533 } Some("core::str::traits:: for core::ops::range::RangeFrom>::index::h1894397556dc71b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6477 } Some("core::ptr::drop_in_place::hdb412662de093925") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5941 } Some("alloc::raw_vec::RawVec::grow_one::h971dfab7dbfb6579") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6493 } Some(" as core::ops::drop::Drop>::drop::h946ec766fba3b720") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6448 } Some(" as core::ops::drop::Drop>::drop::h25457ddab93dfd19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6690 } Some("link_cli::lino_link::LinoLink::with_values::h7715dac5890853f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6533 } Some("core::slice::::split_at_mut::h6ae0de8ebe7a5f00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7073 } Some(" as core::ops::try_trait::Try>::branch::h71b89febceb640fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7103 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h85973e81eda25f31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7115 } Some(">::eq::ha8e04923788800e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7105 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h68b4a47bc6f383e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7187 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h153a4e3df9b59dd4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7137 } Some("core::slice::::split_at_mut::h52db3e397e47d904") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6629 } Some("core::option::Option::unwrap_or_default::h3e2289c16802a90b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7736 } Some(" as core::convert::From>::from::{{closure}}::hce365acdfa65f22c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6681 } Some("::into_iter::hc0852762bcbe9d75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7970 } Some("core::str::::split_at_unchecked::h1265dcf76fdcefe8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6983 } Some("core::hash::BuildHasher::hash_one::h0bbf44f0ba96bbbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8051 } Some("core::str::iter::MatchIndicesInternal

::next::{{closure}}::hbc9f5fa4f2673668") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6984 } Some("core::hash::BuildHasher::hash_one::h83fdb59fa7625b54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8191 } Some("alloc::raw_vec::RawVec::grow_one::h1a76cc825ac2ea0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7587 } Some("links_notation::parser::single_line_link::h6fce77ad143383ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7927 } Some("core::ops::function::FnMut::call_mut::he0bf98066e30bf21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8281 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::check::{{closure}}::h374d994f52058c0d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8067 } Some("core::cell::RefCell::new::h276052e45e04f5d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8159 } Some("core::num::::unchecked_neg::precondition_check::h064f3b4dacb3ec0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8196 } Some("::allocate::h222e4b485d8edf61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8422 } Some("::allocate_zeroed::he7a11cb8fdd1e6b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8423 } Some("::allocate::h033c96a65d0ddaa1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8430 } Some("core::cmp::Ord::min::h302a7bb323fd433f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8476 } Some("core::num::::unchecked_neg::precondition_check::h976a5441117b3a51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8700 } Some("::allocate_zeroed::h3d5018ba06a0e2af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8702 } Some("::allocate::ha568e87eca0f742a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9053 } Some("::clone::hf40c2608d3982c00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 83 } Some("alloc::str::::to_owned::hd60d87ab3a1c1be3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 159 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h7a5fa68eeba5d8a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 400 } Some("test::__rust_begin_short_backtrace::hc650a694ab78e87f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 642 } Some("alloc::collections::btree::node::InternalNode::new::hcb3380d980a61592") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 657 } Some("alloc::collections::btree::node::LeafNode::new::h66034403298c8fe1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 733 } Some("<&alloc::string::String as core::str::pattern::Pattern>::is_contained_in::h787d0bca59b6f280") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 734 } Some(">::from::hb681a0744a63892b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1030 } Some("core::option::Option::take::h25531799131e436b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1209 } Some("wasm_bindgen_test::__rt::Timer::new::h2fd974c11f647b74") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1280 } Some("__wbgtest_console_debug") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1281 } Some("__wbgtest_console_error") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1282 } Some("__wbgtest_console_info") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1283 } Some("__wbgtest_console_log") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1284 } Some("__wbgtest_console_warn") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1345 } Some(" as core::convert::From>::from::hcbca4399c34a22e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1519 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::hb1a1261c6a9409b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1730 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h4496d2e848d74bfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1951 } Some("js_sys::global::get_global_object::GLOBAL_THIS::init::h88599042e4540b84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1956 } Some("js_sys::global::get_global_object::SELF::init::h891a5daa45865b0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1957 } Some("js_sys::global::get_global_object::GLOBAL::init::h3a0591e43c178512") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1958 } Some("js_sys::global::get_global_object::WINDOW::init::h5e5fc179862c984c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3245 } Some("wasm_bindgen::JsThreadLocal::with::h2092278da40eecc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3404 } Some("js_sys::futures::task::singlethread::CREATE_TASK::init::h7cc905a3b5b252ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3690 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h06d31bcae70f6c71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3929 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h4e26002e5597dad6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4452 } Some("core::slice::sort::stable::AlignedStorage::as_uninit_slice_mut::ha30d845d18ee35b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4454 } Some("core::slice::sort::stable::AlignedStorage::as_uninit_slice_mut::h28b0bd1f45e80e53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4460 } Some("core::slice::sort::stable::AlignedStorage::as_uninit_slice_mut::hcfb9374dbdc7476b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4473 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h9c03a8e131ff668c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5413 } Some(">::from::hb8c42bd170cf1b6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5429 } Some("alloc::collections::btree::node::InternalNode::new::h6adbf6131d8d94f0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5446 } Some("alloc::collections::btree::node::LeafNode::new::h27f80ee47ea4df7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5483 } Some("alloc::str::::to_owned::h249f8f549890abfb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5528 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h738c6fe9ee0e6f13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5672 } Some("core::ptr::drop_in_place::h95c4635f1261933a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5997 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h76c9d4bb4ef30ef5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6113 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h2b154310266c58e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6152 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h6bd8c0a5736c310f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6205 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::hd6858196960da2bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6254 } Some("link_cli::query_processor::QueryProcessor::with_auto_create_missing_references::h57a756dde561bfaa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6278 } Some(" as core::iter::traits::iterator::Iterator>::fold::hf9a0aa47fd42f464") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6298 } Some("core::iter::traits::iterator::Iterator::for_each::hb1f01f60d91283a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6527 } Some("core::slice::sort::stable::AlignedStorage::as_uninit_slice_mut::h8704e435f6985c6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7008 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h9f82bf2953d97516") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7026 } Some("link_cli::query_types::Pattern::is_leaf::he0baa6491249b852") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7276 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h5b2f03389ac339b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7340 } Some("::spec_to_string::hbe95d88bf9f603e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7413 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h0b4605a4bdb37523") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7542 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::hd486d048840482cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7602 } Some("links_notation::parser::multi_line_any_link::hb2ba48991aff573a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7632 } Some("links_notation::parser::line::h3679ed82c1f9f517") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7677 } Some("alloc::str::join_generic_copy::{{closure}}::{{closure}}::h4fa26f8c2625562f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7963 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h11e6f5b205e9149c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8203 } Some(" as core::iter::traits::iterator::Iterator>::fold::h0fb14b8e4e2f313d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8204 } Some(" as core::iter::traits::iterator::Iterator>::fold::h8c2786f63bb240fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8236 } Some("core::iter::traits::iterator::Iterator::for_each::h9798c5c8207a35e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8237 } Some("core::iter::traits::iterator::Iterator::for_each::hb087d722b4ebf722") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8324 } Some("::spec_to_string::h5b7b5137dfaa245a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8355 } Some("<&alloc::string::String as core::str::pattern::Pattern>::is_prefix_of::h0e9f6b69b6747d59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8392 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h8413ab6921b5e99c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8464 } Some("memchr::memchr::memrchr::{{closure}}::he8765936506788e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8662 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::hc02a98324e566f7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8785 } Some("core::option::Option::or_else::h99f208c60666a276") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8847 } Some("std::io::impls::>::write::h78b31b1436d0c8e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9082 } Some("core::fmt::num::imp::::fmt::h5bb1559f35fa2c5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 315 } Some("alloc::sync::Arc::drop_slow::heea1138ba413d989") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 436 } Some("alloc::sync::Arc::drop_slow::h57732011e069ac8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 631 } Some(" as core::iter::traits::collect::Extend>::extend::hba8bab5f4ed09c98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 736 } Some(" as core::ops::try_trait::Try>::branch::h1fd2e6544159327b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 737 } Some(" as core::ops::try_trait::Try>::branch::h261cb67703343a7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 747 } Some(" as core::ops::try_trait::Try>::branch::h67169b6172dabbde") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 749 } Some(" as core::ops::try_trait::Try>::branch::h7e0dc85a4bfc6a37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 757 } Some(" as core::ops::try_trait::Try>::branch::hdb4b1a6c2d29f4be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 759 } Some(" as core::ops::try_trait::Try>::branch::he669b50939430036") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 938 } Some(">::index_mut::hdd67ac09863277a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1538 } Some("core::slice::iter::Iter::new::h872f87f860efa912") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1577 } Some("wasm_bindgen_test::__rt::node::__wbgtest_coverage_path::h35ef69ff3ff828ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3246 } Some("js_sys::futures::task::singlethread::try_create_task::{{closure}}::h76f41a96195a034d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4191 } Some("core::slice::iter::::into_iter::h272ab7c72024a4fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4253 } Some(" as core::ops::try_trait::Try>::branch::ha7074887e84448bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4263 } Some(" as core::ops::try_trait::Try>::branch::hee251c566e877cce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4294 } Some("core::slice::iter::Iter::new::h05497d6b6c23ef87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4295 } Some("core::slice::iter::Iter::new::hde365414a207a16f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4359 } Some("core::num::::unchecked_add::precondition_check::hb3a6e9338cfe80c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4472 } Some("core::slice::iter::::into_iter::hd83d54abd502a47d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4553 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h0d933820f5fe199e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4554 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h86c07bcf722d9137") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4606 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h052c1a13cc3d71e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4609 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h8156499b0c491829") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4654 } Some(">::index::hc075a53210842c96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4740 } Some(" as core::iter::traits::collect::Extend>::extend::h5da5fbb573697e84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5088 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h7f35aeb71179fd49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5523 } Some("core::num::::unchecked_add::precondition_check::h64edc4fa88414243") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6004 } Some("core::slice::iter::::into_iter::h643bc70b4d825135") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6172 } Some("<::fmt::LookForDecimalPoint as core::fmt::Write>::write_str::h39c1c52870796b93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6201 } Some("core::num::::unchecked_add::precondition_check::h7558e0c6c85945d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6229 } Some("core::slice::iter::Iter::new::h719bb86aa89ffeca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6617 } Some("core::slice::iter::::into_iter::h5f7ff0e03af3aa92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6623 } Some("core::slice::iter::::into_iter::hc879be194f95bf44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6693 } Some("link_cli::lino_link::LinoLink::is_empty::hd4c5aa38297ae8f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6830 } Some("core::slice::iter::Iter::new::h40bf2fdad770c7ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6831 } Some("core::slice::iter::Iter::new::hbcb90978714423d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6832 } Some("core::slice::iter::Iter::new::hdd8209b6b17ab9a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6988 } Some(">::index::h71b33f88b97bfe1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7049 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h75033e3da239411f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7050 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::had58adb334ec12bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7051 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hdfd8b9f3518ed961") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7145 } Some("core::num::::unchecked_add::precondition_check::h5dc1082b120787c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7021 } Some("link_cli::link::Link::is_full_point::he7af719e00fd8b11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8335 } Some("core::str::traits:: for core::ops::range::RangeFrom>::index::h026d803e60ce7cb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8762 } Some("anyhow::chain::::next::hac7d62c907294de3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8340 } Some("core::slice::::split_at_mut::h535669b49be872c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 268 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h7e49e8feda642e1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 275 } Some(" as test::formatters::OutputFormatter>::write_run_finish::hf62766d49131977b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 445 } Some("getopts::Options::usage_items::{{closure}}::h8f477b16e3af22b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8821 } Some("dlmalloc::dlmalloc::Dlmalloc::malloc::he97e96981fab807e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8305 } Some("nom::internal::Parser::parse::h63b94e2f68d1235b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7753 } Some("nom::internal::Parser::parse::ha8720b9aa764e66e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8308 } Some("nom::internal::Parser::parse::hcc97eb584d729ca3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7676 } Some("alloc::str::join_generic_copy::h47d5980516fe232e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 385 } Some("core::slice::sort::stable::quicksort::quicksort::h52bcc310850dbb09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 384 } Some("core::slice::sort::stable::quicksort::quicksort::h13d0c4cd1016a17a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 390 } Some("test::filter_tests::ha1fe0311527bef12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7756 } Some("nom::internal::Parser::parse::hbb3d0879c109ff9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7251 } Some("core::hash::BuildHasher::hash_one::h829907cd7dc09f05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7259 } Some("core::option::Option::unwrap_or_default::h8778384605925b04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7357 } Some("core::iter::traits::iterator::Iterator::cloned::ha37680911e6bc784") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 255 } Some("test::formatters::terse::TerseFormatter::write_pretty::hff0b129ce41b6251") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7369 } Some("::into_iter::ha7d039b1462c3505") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7465 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::he0a05457f3b92ac1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7570 } Some("links_notation::parser::ParserState::get_base_indentation::h57ef6e04c9a7ac04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 260 } Some("test::formatters::terse::TerseFormatter::write_pretty::h4d30bdaf3ce6526a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7877 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h98823cb86bcefd6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8141 } Some("<&str as nom::traits::Input>::take_from::h181dec3b35f731a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8231 } Some("core::iter::traits::iterator::Iterator::count::{{closure}}::hb4d00fb36fdde4c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 286 } Some("test::formatters::pretty::PrettyFormatter::write_pretty::h4446e27b17fa451b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8870 } Some("std::sync::once_lock::OnceLock::initialize::hc4fd7951fb7bd1f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7878 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha854de4e61e0c20c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 290 } Some("test::formatters::pretty::PrettyFormatter::write_pretty::ha3968d34f5f70621") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8424 } Some(" as core::slice::index::SliceIndex<[T]>>::index::h010debe9d7eed9dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8448 } Some("core::slice::::split_at::habaaf2bcf126c14d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9115 } Some("core::fmt::builders::DebugMap::finish::he79a6ea71f92f235") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9105 } Some("core::fmt::float::::fmt::ha6b2edd39e57a797") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8868 } Some("std::sys::sync::once::no_threads::Once::call::h10f744fc18e0cb4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 243 } Some(" as test::formatters::OutputFormatter>::write_run_start::h63b1dbb65d465762") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4276 } Some("link_cli::link_reference_validator::LinkReferenceValidator::build_link_reference_plan::h85785ed23a3afc92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 332 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h5ec4ff66d0c0920b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 811 } Some("core::ptr::drop_in_place::h9ceb00ee6f22b664") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9110 } Some("core::fmt::builders::DebugStruct::finish_non_exhaustive::h86d9a06d87c7b1a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 831 } Some("core::ptr::drop_in_place>>::h3c9b0e2e46c2f2e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7060 } Some("core::ptr::swap_nonoverlapping_bytes::swap_nonoverlapping_short::hc112a01f3bbec9c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 273 } Some("alloc::fmt::format::h0bca27cabb6c99c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 531 } Some("serde_json::de::Deserializer::end::h25e7756aa1c1d8ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 763 } Some(">::extend::hcd1328d7849742fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3836 } Some("wasm_bindgen::convert::impls::>::return_abi::h302f31b5cc24e2c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 943 } Some("core::iter::traits::iterator::Iterator::fold::h208932808d04e608") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 852 } Some("core::ptr::drop_in_place>::h126198d281c44e6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4199 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h0cf32369e5bd88bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7481 } Some("core::num::::unchecked_add::precondition_check::hd370a2c9b35e2d73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3887 } Some("wasm_bindgen::convert::closures::_::invoke::h764094688a61ea82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7537 } Some("std::thread::local::LocalKey::with::heba4e09f898d6b99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4200 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h8d34f90a3c589e20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7539 } Some("core::num::::unchecked_add::precondition_check::h0692bebce69a8d78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7675 } Some("alloc::str::replace_ascii::{{closure}}::hafad1a955fbc531f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4333 } Some("core::option::Option::ok_or::hbc90c5a617be07a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1045 } Some("core::option::Option::Some::h7e5fffb22f1a5144") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4463 } Some("core::slice::::reverse::h37d53e85b4be1b31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1150 } Some("::discard::h6e5b7d31342a2617") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4563 } Some(">::collect_in_place::h54d372ae885bd468") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1660 } Some("::deallocate::h299aa97c0fd7d0d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1753 } Some("::deallocate::hd3260d5ddf25d60d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3412 } Some("js_sys::futures::task::singlethread::Task::wake_by_ref::hc35828d00d473330") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6185 } Some("::fmt::h895b85f2b385d3e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1534 } Some(" as core::iter::traits::iterator::Iterator>::next::h7a862aa362acb618") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1535 } Some("core::bool::::then::h39d244e7f365ee35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1544 } Some(" as core::iter::traits::iterator::Iterator>::next::h2b0ce5ad7c466743") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1551 } Some("serde_core::private::size_hint::cautious::h5e9b6d220615bbb5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1720 } Some("core::num::::unchecked_mul::precondition_check::hec5d9e81ee6a52f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1722 } Some("core::ptr::const_ptr::::is_aligned_to::h6668c104e2b8c9ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1733 } Some(" as core::iter::traits::iterator::Iterator>::next::h2723b80c4bbe8c33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3920 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h295898ebfa1e7f8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4235 } Some("core::result::Result::unwrap_or_else::h83a4181ca8efe82b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4292 } Some(" as core::iter::traits::iterator::Iterator>::next::hcd22171cc42a6bca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4293 } Some(" as core::iter::traits::iterator::Iterator>::next::h724e11c0213e7966") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4298 } Some(" as core::iter::traits::iterator::Iterator>::next::hf7453e4774cfaa8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4360 } Some("core::num::::unchecked_mul::precondition_check::hb8bc921289d1462f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4881 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}}::hf1458e10e0f42d75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5107 } Some("core::slice::sort::shared::smallsort::sort8_stable::h1379e972783e932a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5109 } Some("core::slice::sort::shared::smallsort::sort8_stable::h2c526588ce7bfe9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5111 } Some("core::slice::sort::shared::smallsort::sort8_stable::h7468f7e383f587d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5113 } Some("core::slice::sort::shared::smallsort::sort8_stable::h8c9ee874853d75d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5115 } Some("core::slice::sort::shared::smallsort::sort8_stable::hd1dd4261da1f67d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5117 } Some("core::slice::sort::shared::smallsort::sort8_stable::hf0a878b21a56978b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5326 } Some("serde_json::de::Deserializer::new::h4a7a1167c4985357") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5356 } Some("serde_json::de::Deserializer::new::h98ff1412e6eb5a5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5524 } Some("core::num::::unchecked_mul::precondition_check::h5bf8b1ee66d3e557") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5684 } Some(" as core::iter::traits::iterator::Iterator>::next::h7ca9199a932906c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5710 } Some(" as core::iter::traits::iterator::Iterator>::next::hc69cf67200e5c18c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5820 } Some("core::ptr::const_ptr::::is_aligned_to::h1c45e94a93725cb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5996 } Some("core::num::::unchecked_mul::precondition_check::h6ccc126c673a4e40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6027 } Some(" as core::iter::traits::iterator::Iterator>::next::hb11b5e220759278d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6108 } Some("core::num::::unchecked_mul::precondition_check::h4233aad77e1e4b1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6127 } Some("core::ptr::const_ptr::::is_aligned_to::hbb1d88b6d98d2f97") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6145 } Some("core::num::::unchecked_mul::precondition_check::h1416a6c0d9a6d555") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6170 } Some(" as core::iter::traits::iterator::Iterator>::next::h4fd49a70f490f068") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6206 } Some("core::ptr::const_ptr::::is_aligned_to::h54d23f63dc104470") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6208 } Some(" as core::iter::traits::iterator::Iterator>::next::hd7c6a114de625ad7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6551 } Some(" as core::iter::traits::iterator::Iterator>::fold::{{closure}}::hd3a915c55955563f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8161 } Some("core::num::::unchecked_add::precondition_check::h1c781e7f9de5c273") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8263 } Some(">::index::h79c25e4429725942") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8364 } Some("core::slice::iter::Iter::new::h831ffb00713ac92f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8379 } Some("core::num::::unchecked_add::precondition_check::h2ab1e1e63bf15fee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 428 } Some("test::helpers::metrics::MetricMap::insert_metric::h1d5bea2999a0631a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8539 } Some(" as core::ops::drop::Drop>::drop::h04ab8299b4164189") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3539 } Some(" as core::ops::function::FnOnce<()>>::call_once::h9c7861534a54bb03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3540 } Some(" as core::ops::function::FnOnce<()>>::call_once::ha5ce7851caffcabc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3541 } Some(" as core::ops::function::FnOnce<()>>::call_once::ha78964ae1df8a418") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8889 } Some("std::panic::get_backtrace_style::ha762fd749365eaab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8905 } Some("std::panicking::take_hook::hae204e8772008fec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3552 } Some(" as core::ops::function::FnOnce<()>>::call_once::he3c63a57a63aef40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8965 } Some(">::add::h2c38d0be479cdc72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 103 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::h8f0018bcfa5eb0ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 540 } Some("serde_json::de::Deserializer::fix_position::{{closure}}::h0f25ace5666777d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 742 } Some(" as core::ops::try_trait::Try>::branch::h48ee33886ca11109") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1025 } Some("core::iter::traits::iterator::Iterator::for_each::hb5a297499d3b6239") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1279 } Some("__wbg_wasmbindgentestcontext_free") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1328 } Some("alloc::rc::Rc::drop_slow::h7447c6a01d1af64b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1329 } Some("alloc::rc::Rc::drop_slow::h9275e172de5fe78b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1330 } Some("alloc::rc::Rc::drop_slow::hbef1aef9d4f6a0ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1570 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::he4896dcf203988b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1571 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::hadc18ac987c603ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3356 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::h8a8f743aef4885ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3623 } Some("wasm_bindgen::__rt::wbg_cast::heddae51d7b30b4d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3714 } Some("alloc::rc::Rc::drop_slow::h640cee88a6b4d7bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3715 } Some("alloc::rc::Rc::drop_slow::h9fc4428d0096bc3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3760 } Some(" as core::convert::From>::from::h99d0e9c33d1b73ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3761 } Some(" as core::convert::From>::from::h9ffb8f748d0dc78e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3971 } Some(" as core::ops::try_trait::Try>::branch::h6b02311c47844754") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3973 } Some(" as core::ops::try_trait::Try>::branch::hce8fd7d68e43d9c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3974 } Some(" as core::ops::try_trait::Try>::branch::hf259a5e8dad43dbd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4250 } Some(" as core::ops::try_trait::Try>::branch::h534625b156acd922") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4314 } Some("core::iter::traits::iterator::Iterator::for_each::h6d905510053cab99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4920 } Some("alloc::rc::Rc::drop_slow::hd3d0d536eb320858") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4927 } Some(" as core::convert::From>::from::h0f4b3895b8949d06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5338 } Some("serde_json::de::Deserializer::fix_position::{{closure}}::h06721601a5b79e9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5714 } Some("::visit_str::h9c9cad93029f0d30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5719 } Some("serde_json::value::Value::as_bool::he6a9c32e2d5ca454") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5893 } Some("wasm_bindgen::convert::slices::::into_abi::{{closure}}::haebf7e3ca1916f63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5894 } Some("wasm_bindgen::convert::slices::::into_abi::h5a9eb060efad9ac8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5935 } Some("core::panicking::assert_failed::h964777e193670203") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6547 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}}::h83a9c1e330fee2e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6549 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}}::h88af8ab5c800497a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6550 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}}::hd472c00aa9e7a97c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7072 } Some(" as core::ops::try_trait::Try>::branch::h5cc92b449ed2cb2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7361 } Some("core::slice::::last::h6536736739656064") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7955 } Some("core::ptr::drop_in_place>::h7825e7b3d6e083ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8037 } Some(" as core::ops::try_trait::Try>::branch::h1df96b6b2e968ef2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8079 } Some("core::slice::::last::hc14382fccc4bfb7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9019 } Some("::fmt::hf57eabd068e2a302") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9174 } Some("core::panicking::panic_misaligned_pointer_dereference::h334648e343d3f4ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 359 } Some("core::ptr::drop_in_place>::h5b44a2ca2e2a16bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 602 } Some("alloc::vec::Vec::set_len::precondition_check::heb95c1b939ffa9c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 743 } Some(" as core::ops::try_trait::Try>::branch::h4ef7d33574020856") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 745 } Some(" as core::ops::try_trait::Try>::branch::h62eaa1bb122171c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 936 } Some(">::get_unchecked::precondition_check::hd3c1efe1623fb234") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 937 } Some(">::get_unchecked_mut::precondition_check::hf97d6e8f69a7d1ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1019 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h985a9ef9db167aba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1027 } Some("core::option::Option::unwrap_unchecked::h1d2e1d275f678766") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1028 } Some("core::option::Option::unwrap_unchecked::h7c0282855f059342") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1078 } Some("__wbgtest_module_signature") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1355 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_str::h066191c773129abf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1731 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h2f94e6abf3c93bff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1748 } Some("alloc::vec::Vec::set_len::precondition_check::h02123c97c0ebf34f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3382 } Some("alloc::collections::vec_deque::VecDeque::grow::hcc8b559013f00546") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3642 } Some("core::ptr::drop_in_place>::h792c386d70c9cde9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3688 } Some("core::ptr::drop_in_place>::h280279417e756a84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4088 } Some("core::option::Option::unwrap_unchecked::h1e48c80d7b722aac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4089 } Some("core::option::Option::unwrap_unchecked::h4b73ebf7e9467105") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4090 } Some("core::option::Option::unwrap_unchecked::hb3f8e7aea8941ad9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4091 } Some("core::option::Option::unwrap_unchecked::hd43855ee370cbc9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4172 } Some("alloc::vec::Vec::from_parts_in::precondition_check::h1af1e0ec459d75c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4173 } Some("alloc::vec::Vec::from_raw_parts_in::precondition_check::h21dcd5cd8d4e9a5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4174 } Some("alloc::vec::Vec::set_len::precondition_check::hadb2270323ec779d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4175 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h001da2b2379daee6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4249 } Some(" as core::ops::try_trait::Try>::branch::h4fdb914a890e4e83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4344 } Some("core::slice::::split_at_mut_unchecked::precondition_check::h1d0353c37849a11c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4349 } Some(">::get_unchecked::precondition_check::he60150a0876a5920") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4798 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_str::h341ffc6db1be0320") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4851 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::hd921af89be263929") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5055 } Some("::into_abi::h58370a7b4e42d0fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5304 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::hc899f322009c0b3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5310 } Some("alloc::vec::Vec::set_len::precondition_check::he16cf8c92608cf02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5420 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_any::hc84b469c4c40367e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8368 } Some(" as core::iter::traits::iterator::Iterator>::fold::h45530591691cc515") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8469 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::hf9b6e512057cd3e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4564 } Some(">::collect_in_place::hbd463e8828cb029c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 214 } Some("std::io::Write::write_all::h796a7c7f20337a8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4645 } Some(">::collect_in_place::h0b739ed484922f44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7738 } Some("links_notation::flatten_link_recursive::h774f49363d055e35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4646 } Some(">::collect_in_place::he8a105f0e02df515") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4786 } Some("core::slice::::reverse::ha8601543ce1678ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3626 } Some("::deallocate::hd4cb0d9aede8e99a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4980 } Some("core::slice::::reverse::had125fa4edf77726") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5327 } Some("serde_json::de::Deserializer::end::h28164923304b9652") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5586 } Some("serde_json::read::SliceRead::skip_to_escape_slow::hdeb577409b0850cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5928 } Some("core::alloc::layout::Layout::from_size_align::hb89c1a1f338e13d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9032 } Some("::fmt::h423cb56e2b8b3553") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 218 } Some("std::io::Write::write_all::hf29adcfe711b9b33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6273 } Some(" as core::iter::traits::iterator::Iterator>::fold::h25e81d635a7e8abe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6318 } Some(">::collect_in_place::hb7d1b717948fcae7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6537 } Some("core::slice::::reverse::h1de871bc600781cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4513 } Some("link_cli::query_processor::QueryProcessor::apply_operation::h646ca51fe67e5626") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6840 } Some(" as core::iter::traits::iterator::Iterator>::next::h2d97d5535be76cee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6686 } Some("core::str::::trim_end_matches::hce54531e0415d85d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3646 } Some("core::ptr::drop_in_place>::hfdb987ab8dbe352b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6841 } Some(" as core::iter::traits::iterator::Iterator>::next::h346fefdb6d403512") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6787 } Some("alloc::vec::Vec::push_mut::hed2516eda5abf786") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5395 } Some("alloc::vec::Vec::set_len::precondition_check::h84d64e9ef36b9b27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 554 } Some("serde_json::de::Deserializer::ignore_decimal::hafd1894a3761ff84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6842 } Some(" as core::iter::traits::iterator::Iterator>::next::h8216370f1c3c3bf7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6843 } Some(" as core::iter::traits::iterator::Iterator>::next::ha2d4236a20abb265") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5014 } Some("serde_json::de::Deserializer::ignore_decimal::hd485fd4bf9a7b778") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6844 } Some(" as core::iter::traits::iterator::Iterator>::next::hb5d4fcac220f4d14") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5485 } Some(">::get_unchecked::precondition_check::h6766c17bada098e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3968 } Some("alloc::vec::Vec::with_capacity::h55aaa3255f02be5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6863 } Some("hashbrown::raw::RawTableInner::find_insert_index_in_group::hc82ab4edae9dc286") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3969 } Some("alloc::vec::Vec::with_capacity::h8841a90743ba248c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4222 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h22d469ec190ff236") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9111 } Some("core::fmt::builders::DebugStruct::field::hd6fb479e598dd824") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4229 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha53b487e2409974a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4230 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hb011104a03816706") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1370 } Some("serde_core::ser::Serializer::collect_seq::h5cbfaa6a9aaabfbc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4231 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hb7f453b770b17f02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7146 } Some("core::num::::unchecked_mul::precondition_check::h6acd879eb1b95277") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4809 } Some("serde_core::ser::Serializer::collect_seq::hb561fcff9254cf4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7223 } Some("core::num::::unchecked_mul::precondition_check::h0c381f2a535bab40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7301 } Some("core::ptr::const_ptr::::is_aligned_to::h06bd557fef61529b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5711 } Some(" as core::iter::traits::iterator::Iterator>::next::hcef6c969a2166b4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4480 } Some("::deallocate::hb4fb8fc64bbc6076") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7181 } Some("dotenvy::from_path_iter::h3f90c77dbfaebc95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4721 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::h7151146b0b9354cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4722 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::h7c49a372ab110f88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7419 } Some("alloc::vec::Vec::push_mut::h8c0f6a18443e2e05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4723 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::hbc3f570caca95ef0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7342 } Some("core::num::::unchecked_mul::precondition_check::h0e3a618e147ed5f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7433 } Some("lino_env::LinoEnv::read::h4c76719dfbc3344a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4965 } Some("clink_wasm::Clink::reset::_::__wasm_bindgen_generated_Clink_reset::{{closure}}::h727d677ee99e37f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8253 } Some(">::collect_in_place::h653b9ad99c9cf811") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4968 } Some("clink_wasm::Clink::snapshot::_::__wasm_bindgen_generated_Clink_snapshot::{{closure}}::hd1733fa64ce21fbc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7344 } Some("core::ptr::const_ptr::::is_aligned_to::h3018ade5dea02023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8749 } Some("core::str::::trim_end_matches::ha741ab2c12fdd7d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7494 } Some(" as core::iter::traits::iterator::Iterator>::next::h3fbce6757654f0aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8872 } Some("alloc::sync::Arc::drop_slow::h6f6f1046012c8732") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7540 } Some("core::num::::unchecked_mul::precondition_check::h2a5385d64e783ae7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5084 } Some("clink_test") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 832 } Some(" as core::ops::drop::Drop>::drop::hc26d1d5d11842883") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5486 } Some(">::get_unchecked_mut::precondition_check::ha85e1aad27d3b7b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5525 } Some("core::num::::unchecked_sub::precondition_check::h2d09087afd7cf734") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6667 } Some("std::collections::hash::map::HashMap::entry::h121e3fe144442b62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5591 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_bool::h973f2bbdb59d26c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7543 } Some("core::ptr::const_ptr::::is_aligned_to::h20a123b0d438d197") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5681 } Some("core::ptr::drop_in_place>::h793c06b0b36b5b35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6668 } Some("std::collections::hash::map::HashMap::entry::h7db66237a9c39cac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 62 } Some("core::option::Option::map::hadd30f216236c1b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9094 } Some("core::slice::index::slice_index_fail::hfe243a02a41519a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1009 } Some("wasm_bindgen_test::__rt::browser::Element::set_text_content::he5b76add4690c333") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1016 } Some("::writeln::h4b4f8b236dbcfcea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1204 } Some("wasm_bindgen_test::__rt::State::accumulate_console_output::hb9cc01132e105dcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 889 } Some(" as core::ops::drop::Drop>::drop::ha99649866e5481b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7595 } Some("links_notation::parser::is_reference_char::h96cc2cb427f7697f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3472 } Some(" as core::ops::drop::Drop>::drop::h8c880d1aa8f152d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8162 } Some("core::num::::unchecked_mul::precondition_check::h12daaf9a3768e707") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4332 } Some("core::option::Option::ok_or::h3c290fddfc8cfd5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8361 } Some(" as core::iter::traits::iterator::Iterator>::next::h6919d034c3d68ea9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 701 } Some(">::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq::h45be515917759186") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8371 } Some(" as core::iter::traits::iterator::Iterator>::next::h5806faa97eb1cfab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1475 } Some("core::str::iter::SplitInternal

::next_inclusive::hc6f39170c73fbfcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1520 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::next_unchecked::{{closure}}::h899f084f08c9ed02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1742 } Some("core::alloc::layout::Layout::repeat::hc450ceb15b73d602") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4594 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::hd7da11e70aef0e6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5408 } Some(" as core::ops::drop::Drop>::drop::h7af5824664c7a956") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5807 } Some("zmij::write::heeb392bac65950b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5619 } Some("alloc::raw_vec::RawVecInner::shrink::hd623d4c699d63c53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5371 } Some("core::alloc::layout::Layout::repeat::h825ae97a8705f05d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5541 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::next_unchecked::{{closure}}::h9b2a3c470f771100") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8304 } Some("nom::internal::Parser::parse::h4a30f4040d399d68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6116 } Some("core::alloc::layout::Layout::repeat::he3661a30ab056cbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8372 } Some(" as core::iter::traits::iterator::Iterator>::next::hc524e56980b79740") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6155 } Some("core::alloc::layout::Layout::repeat::haffa6a15dcf45d46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1960 } Some("js_sys::Promise::resolve::h007495a26b26ffb6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8382 } Some("core::num::::unchecked_mul::precondition_check::h48008b7600b8875f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7142 } Some("core::slice::::reverse::revswap::h434a1ff6e8ddfc73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8434 } Some("core::ptr::const_ptr::::is_aligned_to::h4ade09e2e214e133") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5539 } Some("core::option::Option::unwrap_or::ha964275697851752") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7257 } Some("core::alloc::layout::Layout::repeat::h3ff10e25e232d422") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5570 } Some("::discard::h920feebea9ab557c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5652 } Some("core::ops::function::FnOnce::call_once::h1a876900023d783d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5947 } Some("alloc::raw_vec::RawVecInner::shrink::h3a3e18a73b5ee9d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5662 } Some("core::ptr::drop_in_place>::h29061df08ec3bcec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6019 } Some(" as core::ops::drop::Drop>::drop::haae83fe770419878") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5772 } Some("::deallocate::h9b91cfa90d29ff7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6204 } Some(" as core::ops::drop::Drop>::drop::h27866269c9e9fce0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8460 } Some(" as core::iter::traits::iterator::Iterator>::next::hd8d03edaf1737f2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8477 } Some("core::num::::unchecked_mul::precondition_check::h3cc0af1fa0bc22db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7292 } Some(" as core::ops::drop::Drop>::drop::h58f435cbeb80476d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4102 } Some("core::option::Option::and_then::h3e6dadd16d46be30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7379 } Some(" as core::ops::drop::Drop>::drop::h8f235503fbfaf0c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5919 } Some("core::ptr::drop_in_place>::haa6667db94299a7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4462 } Some("core::slice::::split_at_mut_unchecked::h6ec6c3a656d1eabf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7360 } Some("core::alloc::layout::Layout::repeat::hc219c6fedfb1aa63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4514 } Some("link_cli::query_processor::QueryProcessor::process_query::{{closure}}::h3161ee2eadf084bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7545 } Some("core::alloc::layout::Layout::repeat::h2805fca1e2ffcaed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4515 } Some("link_cli::query_processor::QueryProcessor::process_query::{{closure}}::h408f861aacc4e8d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4518 } Some("link_cli::query_processor::QueryProcessor::process_query::{{closure}}::he8f6c6841de4bae1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8484 } Some(" as core::iter::traits::iterator::Iterator>::next::hb1ed1f963ae9a2b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5944 } Some("::deallocate::h051f6fbba048f72b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8959 } Some("::drop::h07612425265377c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6133 } Some("::deallocate::hd51dcedbf7f82a18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6237 } Some("::deallocate::hc053e79efb04fff6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7897 } Some(" as core::ops::try_trait::Try>::branch::h75578fae815bd0b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6366 } Some("core::ops::function::FnOnce::call_once::h8693070885834d24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8039 } Some(" as core::ops::try_trait::Try>::branch::hec8be18834b9bf35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6368 } Some("core::ops::function::FnOnce::call_once::h25a7fa1e61213f9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4724 } Some("alloc::slice:: for alloc::vec::Vec>::as_uninit_slice_mut::h352b94f5a0efd6eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8339 } Some("core::alloc::layout::Layout::repeat::hfdab2a2256ad5834") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4725 } Some("alloc::slice:: for alloc::vec::Vec>::as_uninit_slice_mut::hae04f5a251ded9f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 126 } Some("wasm_bindgen_test::__rt::Context::execute_sync::h134050a5c080f068") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4726 } Some("alloc::slice:: for alloc::vec::Vec>::as_uninit_slice_mut::he2add054eaa14a96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 128 } Some("wasm_bindgen_test::__rt::Context::execute_sync::h949df1fec4b7161d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4785 } Some("core::slice::::split_at_mut_unchecked::h6f459625be063d65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 130 } Some("wasm_bindgen_test::__rt::Context::execute_sync::h9a2e1b6a8ffc1278") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4970 } Some("clink_wasm::to_json::{{closure}}::h5143612786493439") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 132 } Some("wasm_bindgen_test::__rt::Context::execute_sync::hcacd5321aa5436fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4979 } Some("core::slice::::split_at_mut_unchecked::hc7ca130435bce3be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1026 } Some("core::option::Option::unwrap_or_else::h2aaeb301e0844346") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5757 } Some("core::fmt::builders::DebugList::entries::hf66ff879c23f6454") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5064 } Some("::delete::ha1d18d9f6eed4d06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6534 } Some("core::slice::::split_at_mut_unchecked::hd4050f91f094e62f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5281 } Some("core::option::Option::unwrap_or_else::hd0808371a9f5350e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6797 } Some("alloc::slice:: for alloc::vec::Vec>::as_uninit_slice_mut::h5b5bd05c95f01412") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7577 } Some("links_notation::parser::Link::new_link::h29f34602bec72c28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7139 } Some("core::slice::::sort_unstable::h66d2b07bf7e90d94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8080 } Some("core::option::Option::map::hf997d28587014b0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6370 } Some("core::ops::function::FnOnce::call_once::ha86cd8b808de9b56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8963 } Some(" as core::fmt::Write>::write_str::hfb4205cc4334d209") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6384 } Some("core::ops::function::FnOnce::call_once::h10cc90c9619a841f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6386 } Some("core::ops::function::FnOnce::call_once::hc400bc0a52dd4634") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8408 } Some("core::alloc::layout::Layout::repeat::h5b17792af3796fe8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6388 } Some("core::ops::function::FnOnce::call_once::h80bc97860ecbbfce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6392 } Some("core::ops::function::FnOnce::call_once::h8a7445fe7416fdfa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8532 } Some("core::ptr::const_ptr::::is_aligned_to::h2b2ecab0549a2651") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8985 } Some("rustc_demangle::v0::Parser::opt_integer_62::hcca2235a0baaf9a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8777 } Some("core::alloc::layout::Layout::repeat::hc00afb09b6058879") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1465 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::h9e92583b753e25a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3867 } Some("wasm_bindgen::convert::closures::_::invoke::h18ce0b2180a2368b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 643 } Some("alloc::collections::btree::node::NodeRef::from_new_internal::h439d13c329d4946d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1168 } Some("once_cell::unsync::OnceCell::set::h372a1846de274d67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6396 } Some("core::ops::function::FnOnce::call_once::h45b53896d5b04a23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1439 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h707fb644a971fe76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6408 } Some("core::ops::function::FnOnce::call_once::hcfb18281b3cca19e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6616 } Some("::deallocate::h4028a17f22fbd06b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1441 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h16e14fb6140b9d24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8934 } Some("alloc::sync::Arc::drop_slow::h4672fc93aa0d1b8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4888 } Some("hashbrown::map::HashMap::iter::h35969e0374ce66e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 341 } Some("core::ptr::drop_in_place>>>::hd28d339813247cc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1488 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h550217ff091a167e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 546 } Some("serde_json::de::Deserializer::peek_or_null::h54a1bf9fceb2275f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4889 } Some("hashbrown::map::HashMap::iter::h51706bf5761d9475") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4012 } Some("once_cell::unsync::OnceCell::set::h0c74991bd33c11fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6590 } Some("hashbrown::map::HashMap::iter::h12d2ba4646467abf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8979 } Some("rustc_demangle::demangle::h461cb3a5b50fef57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6591 } Some("hashbrown::map::HashMap::iter::hd2e50a67159a4434") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4189 } Some(" as core::ops::try_trait::Try>::branch::hfd88987c25f1e9c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6592 } Some("hashbrown::map::HashMap::iter::he20fd51fff01b959") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 556 } Some("serde_json::de::Deserializer::next_char_or_null::h523e780a6e71eb62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6796 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::h6e27150fc4b67df8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4239 } Some("core::result::Result::map_err::he863971e10fc6924") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8597 } Some(" as core::iter::traits::iterator::Iterator>::next::h8a0448615dc5715c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 656 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split::h2d35d040db4cb29a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4464 } Some("alloc::slice::::sort_by_key::h469e29b39604f44e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7007 } Some(" as core::fmt::Display>::fmt::h070beef7556117f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4465 } Some("alloc::slice::::sort_by_key::h4e558161b29b83eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3834 } Some("wasm_bindgen::convert::impls::>::return_abi::h13335055a633ea41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3837 } Some("wasm_bindgen::convert::impls::>::return_abi::h6d6bb2dc66a6a5e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3841 } Some("wasm_bindgen::convert::impls::>::return_abi::hfadf50e696720e2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3913 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h09ab793cb0585541") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3914 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h12d183c8f6bf4c44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3916 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h1881cbdc6d5cc6ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3917 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h1984a2a4ae06b736") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3921 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h2b2f68bb65a846fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3922 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h2e60946d3fd511e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3928 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h4650ce158130a4a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3934 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h68eaf78241c7d6b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3937 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h79322495f9790897") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3939 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h7faa2c12bd7a8c61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3943 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h9d48ed58839b8709") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3944 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::ha01389d98f784cd8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3946 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::ha4a5776f26da1831") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4246 } Some(" as core::ops::try_trait::Try>::branch::h2e63f34d25b80bd8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4512 } Some("link_cli::query_processor::QueryProcessor::resolve_patterns::hb82950cc655ce635") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5016 } Some("serde_json::de::Deserializer::next_char_or_null::ha997f62dcd162526") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5293 } Some("console_error_panic_hook::error::h99781460679c062c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5340 } Some("serde_json::de::Deserializer::peek_or_null::h847b768d44bbdd28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5393 } Some("alloc::vec::Vec::push_mut::h26fada51a811177b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6084 } Some(" as core::iter::traits::iterator::Iterator>::next::h82acd6fce01c44dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6257 } Some(" as core::iter::traits::iterator::Iterator>::fold::h80c941b20929a23f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6508 } Some(" as core::iter::traits::iterator::Iterator>::next::h5d95307794eb1d8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8971 } Some("::get::heb4b8bac6804dc2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9055 } Some("::fmt::h4715f37320baf771") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1217 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::h4b841141e5bb48af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1219 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::h8db226ae4e481625") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1220 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::h9d20e0babefb62ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1221 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::hacd7030bb002919b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1222 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::hc8f1de9719ee3484") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1278 } Some("::from_abi::h29bcf470e0adf96e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1719 } Some("::spec_to_string::hc68e0971199b4f4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1751 } Some("alloc::raw_vec::RawVecInner::deallocate::h09119480c6b4d253") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3871 } Some("wasm_bindgen::convert::closures::_::invoke::h283c849ffd6b5c8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5502 } Some("serde_json::error::Error::syntax::hed76315b9e886a9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5613 } Some("alloc::raw_vec::RawVecInner::deallocate::hdde149bb143af88e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6131 } Some("alloc::raw_vec::RawVecInner::deallocate::hf014b3065c390a66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7108 } Some("::spec_to_string::hb1375fab1134f25d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7284 } Some("alloc::raw_vec::RawVecInner::deallocate::hca37636529cc1a9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7423 } Some("alloc::raw_vec::RawVecInner::deallocate::hcddd57b204cc37a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7530 } Some("alloc::raw_vec::RawVecInner::deallocate::h4af6f916780c8ba5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8418 } Some("alloc::raw_vec::RawVecInner::deallocate::h7f326544b60351fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8789 } Some("alloc::raw_vec::RawVecInner::deallocate::h8d79456c9a3936d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8801 } Some("anyhow::error::::msg::haaf708952410cef4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9109 } Some("core::fmt::builders::DebugTuple::finish::h21f9784fc20eee35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 248 } Some("core::ptr::drop_in_place<(test::types::TestDesc,test::test_result::TestResult,core::time::Duration,alloc::vec::Vec)>::h532abc67c1acfbb5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 321 } Some("std::sync::mpmc::context::Context::with::{{closure}}::hee7c3b4e012fef41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 688 } Some("wasm_bindgen::convert::slices::::into_abi::hcf780d6196b4145f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 719 } Some("core::result::Result::unwrap_or::h786b91799a766bbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4771 } Some("wasm_bindgen::convert::slices::::into_abi::h0fbf072da1085a62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4852 } Some("core::iter::traits::iterator::Iterator::find::check::{{closure}}::hbae8aaaa835fc14d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5081 } Some("clink_reset") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5083 } Some("clink_snapshot") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5233 } Some(" as core::ops::drop::Drop>::drop::h095d6748d33fa0c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5279 } Some("wasm_bindgen::convert::slices::::into_abi::h96e3c2c13f90b931") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5401 } Some("alloc::string::String::into_boxed_str::hfc87ecc79b8ecd45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5407 } Some(" as core::ops::drop::Drop>::drop::h2c51033320582bbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5409 } Some(" as core::ops::drop::Drop>::drop::hd12afd1511ad5ee7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5583 } Some("serde_json::read::is_escape::h54d33935146b9bcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5595 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_i64::hc95f1bb33dd2786a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5599 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_u64::hb01e076e29d23e9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5958 } Some("__wbindgen_free") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6335 } Some("core::iter::traits::iterator::Iterator::find::h7152960470ab08db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6431 } Some(" as core::ops::drop::Drop>::drop::h8737ae27e4aadaac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6461 } Some(" as core::ops::drop::Drop>::drop::h0fdcdf52c41b4c32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6907 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h79149977d3fd29d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6909 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::he76ce711dc43f347") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6911 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::hc7dc0a651b5a033b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6913 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h94ecfa3b9b309e18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6915 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::hf21f8e625465672a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6917 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::he20b6c1588f935f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6919 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h85dce7c1e7893f1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6921 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::haea4ee857a62d6ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6923 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h5aa7fefd17bfd5be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7076 } Some(" as core::ops::try_trait::Try>::branch::hf56b75ab58982b4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7247 } Some("::is_prefix_of::h01d0610e83d407f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7293 } Some(" as core::ops::drop::Drop>::drop::heccc74e594f77592") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7380 } Some(" as core::ops::drop::Drop>::drop::h8f2e6ed9e4524ff1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7631 } Some("links_notation::parser::Link::with_children::hb1e423dd9f6e9a1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7760 } Some("<(P1,P2,P3,P4) as nom::internal::Parser>::process::{{closure}}::h4eab3303209e7d8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 241 } Some("alloc::raw_vec::RawVec::grow_one::he7aec97286df0ed7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 324 } Some("alloc::raw_vec::RawVec::grow_one::h05d5d440becdc39f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 391 } Some("alloc::raw_vec::RawVec::grow_one::h4320013927734172") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 406 } Some("alloc::raw_vec::RawVec::grow_one::h1d35d74ce7367b9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 427 } Some("alloc::raw_vec::RawVec::grow_one::h4644310e126504af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 430 } Some("alloc::raw_vec::RawVec::grow_one::h9f39107536405a34") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 431 } Some("alloc::raw_vec::RawVec::grow_one::haacdfce33a94c221") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 435 } Some("alloc::raw_vec::RawVec::grow_one::h461c112c7172c301") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 455 } Some("alloc::raw_vec::RawVec::grow_one::h729915d73efd509e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 457 } Some("alloc::raw_vec::RawVec::grow_one::h72bf72085a4536f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 458 } Some("alloc::raw_vec::RawVec::grow_one::hda7164f8f50f00e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 479 } Some(" as serde_core::de::MapAccess>::next_value_seed::he3602e6001c7059d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 481 } Some(" as serde_core::de::MapAccess>::next_value_seed::h08b6cbe5610de6a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 483 } Some(" as serde_core::de::MapAccess>::next_value_seed::hb9ba2e50a797ee71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 485 } Some(" as serde_core::de::MapAccess>::next_value_seed::h31be357b44fa5de1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 487 } Some(" as serde_core::de::MapAccess>::next_value_seed::h9225a7f7e0bc275a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 489 } Some(" as serde_core::de::MapAccess>::next_value_seed::h27b81a1132fc24d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 491 } Some(" as serde_core::de::MapAccess>::next_value_seed::h6a681082ca1c9493") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 495 } Some(" as serde_core::de::MapAccess>::next_value_seed::h00d08a61db16f7d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 497 } Some(" as serde_core::de::MapAccess>::next_value_seed::h96108f80a247ffa4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 499 } Some(" as serde_core::de::MapAccess>::next_value_seed::h7456155687445c14") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 951 } Some("serde_core::ser::impls::>::serialize::h79cb42c4f78e12e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 989 } Some("wasm_bindgen::convert::impls::>::split::he344bb649092ec80") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3527 } Some(" as core::ops::function::FnOnce<()>>::call_once::h5548687c65531690") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3577 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h67af0e3d628739d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3935 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h7026c67bc1734a77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4311 } Some("serde_core::ser::impls::>::serialize::h5dc0d968fb896d94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4324 } Some("core::option::Option::is_some_and::h170f2b2f3e473fda") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4351 } Some("alloc::slice::::sort_by_key::{{closure}}::h16c98dba2d8e9f82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4352 } Some("alloc::slice::::sort_by_key::{{closure}}::h17988db00640e366") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4353 } Some("alloc::slice::::sort_by_key::{{closure}}::h69e0fc69a40376c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4354 } Some("alloc::slice::::sort_by_key::{{closure}}::h8dfe5bd38889fc01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4355 } Some("alloc::slice::::sort_by_key::{{closure}}::hb29faaeec81f3076") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4356 } Some("alloc::slice::::sort_by_key::{{closure}}::hb46b324431ff4ffe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4999 } Some(" as serde_core::de::MapAccess>::next_value_seed::h566f84dc60dab9a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5003 } Some(" as serde_core::de::MapAccess>::next_value_seed::h840facd45ca413ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5060 } Some("::search::hce628a1cc89d9e7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5253 } Some(" as core::ops::drop::Drop>::drop::h9eaacee22c0b6b97") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5255 } Some(" as core::ops::drop::Drop>::drop::h0bf82b2c78ebf982") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5258 } Some(" as core::ops::drop::Drop>::drop::h237fe293e18af1da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5321 } Some(" as serde_core::de::MapAccess>::next_value_seed::h416d157de48bd7cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5836 } Some("zmij::umul128::h64c8d29cc8aa3ef4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6455 } Some(" as core::ops::drop::Drop>::drop::h2dff3101bb375bdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6624 } Some("core::option::Option::is_none_or::h11903a2f7cdb7007") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6625 } Some("core::option::Option::is_none_or::h17b08705da387c4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6627 } Some("core::option::Option::is_some_and::hb04079072ced01dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8168 } Some("core::char::methods::len_utf8::h20a6719b45459366") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8857 } Some("std::sync::once_lock::OnceLock::initialize::h7d7e84928eb3a33f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8938 } Some("::fmt::hb7d8bec3ef8c37c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8978 } Some("rustc_demangle::try_demangle::h6d8b3a45c8ace536") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 598 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_ignored_any::he84167d1adcaef62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1442 } Some("wasm_bindgen::convert::closures::_::invoke::hba3498ba4aa58da0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1494 } Some("wasm_bindgen_test::__rt::criterion::_::::serialize::h8294b0514c007a2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3759 } Some(" as core::convert::From>::from::h995d953dd23a1ad0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3762 } Some(" as core::convert::From>::from::habd61f167ddeafff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3910 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h01fa09d0050ae23c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3919 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h250e7e93539bd8bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3923 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h32e3c98a70f3c7ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3924 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h3385b0d95a021f68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3926 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h412dfba52506ea14") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3930 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h4f3b8751a47a438b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3936 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h765322aeafbea110") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3938 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h7d62660597a137fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3941 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h8a891cb66709a3d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3942 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h8fbb3957bc505fc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3948 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hd09fe1ee6c87b79b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3950 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hdd809d637e971369") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3951 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::he5bdb5b21a5af3a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3953 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hf26395933e6153df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4103 } Some(" as core::clone::Clone>::clone::h67ecbdeca969fd56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4210 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_u64::hbddad52a7596a38a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4600 } Some(" as core::iter::traits::iterator::Iterator>::fold::h1683efb1a49e7ed6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4601 } Some(" as core::iter::traits::iterator::Iterator>::fold::h65f6ac3151c893df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4602 } Some(" as core::iter::traits::iterator::Iterator>::fold::he92f236bdafe4fcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4629 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::hde6235a1ba5d3b60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4679 } Some("alloc::vec::partial_eq::> for alloc::vec::Vec>::eq::h3be6634d422aeea8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5025 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_ignored_any::h66968d35cfd525ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5593 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_string::hea1e414e2b0294e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5624 } Some("::peek_position::h06f2a191345440bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5845 } Some("zmij::compute_exp_shift::h8dfba7c2d802c7fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5978 } Some("wasm_bindgen::__wbindgen_is_function::h6d2e0437b82713d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5980 } Some("wasm_bindgen::__wbindgen_is_undefined::h7c8914dc5c2f14a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6274 } Some(" as core::iter::traits::iterator::Iterator>::fold::h8ac6a9878c5d8dd8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6277 } Some(" as core::iter::traits::iterator::Iterator>::fold::hb26cfee44f805c38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6304 } Some("core::iter::adapters::map::map_fold::{{closure}}::h621f3c3f0f72dd90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6306 } Some("core::iter::adapters::map::map_fold::{{closure}}::h62f2d2a0aaec3025") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6636 } Some("core::option::Option::map_or::hb31cf4fa0c7f8624") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6642 } Some("core::option::Option<&T>::copied::haeb9c7e6c64b3091") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6901 } Some("hashbrown::raw::RawTable::erase_no_drop::h621175036442d99b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6902 } Some("hashbrown::raw::RawTable::erase_no_drop::hc413874e10573fe4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6903 } Some("hashbrown::raw::RawTable::erase_no_drop::hd66ec1582a0537e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7260 } Some("alloc::vec::partial_eq::> for alloc::vec::Vec>::eq::hd9382e6793aef423") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7515 } Some("alloc::vec::partial_eq::> for alloc::vec::Vec>::eq::h8e656f0c0261e392") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8375 } Some("nom::internal::Needed::new::hf1b818758c41ae95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 81 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h77303e55dad1522b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 347 } Some("core::ptr::drop_in_place::h1cdb3afa59d53a8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 633 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::hb66b5326238d53b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 770 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked::precondition_check::h1a1271f86c03f00a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 771 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::precondition_check::ha25594fbf0e1abd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 975 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7a55dd7ba67e7097") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1043 } Some("core::option::Option::unwrap_or::h72997aeb72c0b3ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1343 } Some(">::call_mut::hcf8e1d69aefd9eca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1410 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h7c7d77105ffcf7aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1735 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h64d7467811f03feb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3523 } Some(" as core::ops::function::FnOnce<()>>::call_once::h4073c9310f2f82d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3535 } Some(" as core::ops::function::FnOnce<()>>::call_once::h7cd31245a49655cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3565 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h10e26fb0f28ef161") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3596 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hb8c10637234c020a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4325 } Some("core::option::Option::unwrap_or_else::h14863f58660e4d36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4348 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::precondition_check::h1ec322d89892c0fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4750 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h1b657f929262f3bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4751 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h2ecc136c55f6261b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4752 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h6455d907477df9a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4753 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::hbecb8904678b468c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5372 } Some("core::array:: for &mut [T; N]>::try_from::hd2c331b205aded3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5465 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked::precondition_check::h6e585a4ac2fd7a98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5466 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::precondition_check::hf765730a07db64c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5578 } Some("serde_json::read::StrRead::new::hbbc76b0a0e0e9aff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5603 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h9154945d89f8d637") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5737 } Some("memchr::arch::all::memchr::One::new::h563462a5f4707f6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5777 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked::precondition_check::h4d2739ad35d84acd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6211 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::ha66248315e3e6f6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6263 } Some("core::iter::traits::iterator::Iterator::map::h97147cf4a4180d7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6628 } Some("core::option::Option::unwrap_or_else::h02e0293adc3d8cf3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6682 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::ha0929ad9ed284a72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6725 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::precondition_check::h740fc1cc8c8f923f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6815 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h3e810110dcce160c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6816 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h64c6c48e19515202") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7009 } Some("link_cli::cli::Cli::version_text::h70d3f6ebfc64d720") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7022 } Some("::clone::hdea9b3c753ee4bc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7078 } Some("link_cli::query_processor::QueryProcessor::patterns_from_lino::{{closure}}::hf47d769bc1884efb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7120 } Some("core::slice::::swap_unchecked::precondition_check::he5555e190d72055c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7444 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h3abfce2ab0ae8d93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7607 } Some("links_notation::parser::multi_line_value_link::ha46ec1af0ff3dc0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7729 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h70a6c727817fafce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8216 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::precondition_check::h2623dad68fbe74b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8331 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::hf28c12941b1f5b7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8457 } Some("memchr::arch::all::memchr::One::new::hf1ca8875d4fbe5bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8665 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::heefb0593a5d9b035") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8981 } Some("core::str::::trim_start_matches::h9729ab51c0d4cd27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9052 } Some("alloc::raw_vec::RawVec::grow_one::hc8d51d460bbc6465") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9112 } Some("core::fmt::builders::DebugStruct::finish::h3fcc12ee0cf91939") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 704 } Some("std::sync::once::Once::call_once::h95370790157b2aaf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 990 } Some("wasm_bindgen_test::__rt::worker::WorkerError::stack::h5c14410079eafcfb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 996 } Some("wasm_bindgen_test::__rt::browser::BrowserError::stack::h99c5e23e8f0ff5bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1210 } Some("wasm_bindgen_test::__rt::Global::performance::h94e72163b4e33d4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1596 } Some("wasm_bindgen_test::__rt::detect::Scope::constructor::h9a5082fa21e5f51f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1949 } Some("js_sys::Error::name::h5dae67d6b8e34299") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1950 } Some("js_sys::Error::message::hf1f23d03a9771794") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3357 } Some("< as core::ops::drop::Drop>::drop::Dropper as core::ops::drop::Drop>::drop::h6035d8a34c7bef92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3418 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_clone::hf8cd9fb9cd90e74b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3555 } Some(" as core::ops::function::FnOnce<()>>::call_once::hf23e799985817ca2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3589 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h94f49350fdecc050") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3740 } Some("js_sys::futures::queue::Global::hasQueueMicrotask::h45dfe5397a221b1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4309 } Some("::eq::hfc390e4bb2524836") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4655 } Some(" as core::cmp::PartialOrd>>::partial_cmp::h86eb4b23c68b1195") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5027 } Some("std::sync::once::Once::call_once::h617b234be25378fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5377 } Some(" as core::cmp::Ord>::cmp::hd57377024377dffc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5497 } Some("core::option::Option::unwrap_or::h8ef8edb4af455ae9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5746 } Some("memchr::memchr::memchr2::{{closure}}::h081313438af2f06b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5775 } Some("::shrink::h42dbacf9d4ba6916") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5778 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked::h03f5881f5b136733") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5855 } Some("zmij::digits2::hf713e656adeba8ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5945 } Some("::shrink::hb71bfe5dcf4d6666") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6339 } Some("core::cmp::Ordering::then_with::hb5cabeff749a5482") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6340 } Some("core::cmp::Ordering::then_with::hb64b5ae9463de5c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6622 } Some("link_cli::parser::Parser::parse::{{closure}}::hc08234d62201ce8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7020 } Some("::eq::h9858bab2106c3a29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7492 } Some("std::hash::random::RandomState::new::KEYS::{{closure}}::h364834f7a08f2cd8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8775 } Some("core::iter::traits::iterator::Iterator::enumerate::hbf2758721305050a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8883 } Some("std::time::SystemTime::checked_add::h9000844e87e4e3ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8973 } Some("::alloc::h5d11e6618597802f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 75 } Some("core::char::convert::from_u32_unchecked::precondition_check::hf51eccf3993bec2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 532 } Some("serde_json::de::ParserNumber::visit::ha0475a2e56c803a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 950 } Some("serde_core::ser::impls::>::serialize::h7332d46acd02bca5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 968 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h60494ea128ab76b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 981 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hf3d7288b3eaebeb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1160 } Some("once_cell::unsync::OnceCell::get::h6c16ae2f3f4378f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1162 } Some("once_cell::unsync::OnceCell::get::he60add92aa3bc117") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1226 } Some("wasm_bindgen_test::__rt::Context::include_ignored::_::__wasm_bindgen_generated_WasmBindgenTestContext_include_ignored::{{closure}}::h178beabad98b5028") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1301 } Some("wasmbindgentestcontext_filtered_count") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1302 } Some("wasmbindgentestcontext_include_ignored") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1412 } Some("core::char::convert::from_u32_unchecked::precondition_check::h42f8337966816025") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1738 } Some("core::char::convert::from_u32_unchecked::precondition_check::h912028713b5641f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3515 } Some(" as core::ops::function::FnOnce<()>>::call_once::h01dac43e47d0fa38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3516 } Some(" as core::ops::function::FnOnce<()>>::call_once::h11ecb82ff1c449d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3517 } Some(" as core::ops::function::FnOnce<()>>::call_once::h1b565adf95a6d0db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3518 } Some(" as core::ops::function::FnOnce<()>>::call_once::h2541b22a8b2310bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3526 } Some(" as core::ops::function::FnOnce<()>>::call_once::h4e1fb478d3c3b243") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3528 } Some(" as core::ops::function::FnOnce<()>>::call_once::h5e9b753972c5df00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3542 } Some(" as core::ops::function::FnOnce<()>>::call_once::ha7a034b5ae58bde1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3544 } Some(" as core::ops::function::FnOnce<()>>::call_once::haf14640cbd2cca82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3549 } Some(" as core::ops::function::FnOnce<()>>::call_once::hd39f4bf5a4ac6d94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3550 } Some(" as core::ops::function::FnOnce<()>>::call_once::hdd5da9cd31603ba1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3554 } Some(" as core::ops::function::FnOnce<()>>::call_once::hec2a7dd499115388") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3557 } Some(" as core::ops::function::FnOnce<()>>::call_once::hf7493600edffb180") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3558 } Some(" as core::ops::function::FnOnce<()>>::call_once::hf945dab8c6c5848a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3561 } Some(" as core::ops::function::FnOnce<()>>::call_once::hfe001c3b3bd93e83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3564 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h0cccbabf6210d3e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3571 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3a71fb19309bfd78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3573 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h42d46ce8876316a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3576 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h66c3de576255ed63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3582 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7f7ecd8f4c6c80ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3583 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8170cf7653ccc00c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3584 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h823d6e680bfb410f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3585 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h864c8727ae092669") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3588 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h90d92dd6539b0a38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3591 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h985e28fd888e141c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3593 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9ce95f382873071d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3602 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hcdfae159803e35c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7055 } Some("core::iter::adapters::filter::filter_fold::{{closure}}::hbadd40d63eb872c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7179 } Some("::deallocate::h610b6bea43987b7a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7229 } Some("core::ptr::drop_in_place>::h9e20e4c707d5c4df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7314 } Some("::deallocate::h6cf416b96c024a1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7370 } Some("::deallocate::h10728340981ddd8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7394 } Some("core::ptr::drop_in_place>::h06c741793b8d1925") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7480 } Some("::deallocate::he2b22845d037981e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7549 } Some("::deallocate::h12f94d33085c88b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7691 } Some("alloc::vec::Vec::with_capacity::h8dc528118bb8391e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7718 } Some(" as core::clone::Clone>::clone::hd92a131d13781c81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7719 } Some(" as core::clone::Clone>::clone::he9ff3be3c294ce8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7745 } Some(" as nom::internal::Parser>::process::{{closure}}::h49ef47875e7f5dbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7869 } Some(" as nom::internal::Parser>::process::{{closure}}::h11191dbe38f3a457") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8132 } Some("<&str as nom::traits::Input>::split_at_position_mode::{{closure}}::h2ee3642120be955b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8133 } Some("<&str as nom::traits::Input>::split_at_position_mode::{{closure}}::h3ad58239c8502aff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8135 } Some("<&str as nom::traits::Input>::split_at_position_mode::{{closure}}::hb73ad19caee464f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8139 } Some("<&str as nom::traits::Input>::split_at_position_mode1::{{closure}}::hb7d9f1417cc8d761") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8412 } Some("alloc::vec::Vec::with_capacity::h82a651bf8068ddf2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8420 } Some("::deallocate::h4c3f5b86dbf38428") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8699 } Some("::deallocate::h524e71d249f8bd92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8732 } Some(" as core::fmt::Display>::fmt::h013e5d3eb4ed8677") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8733 } Some(" as core::fmt::Display>::fmt::h1138afad7116ad0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8830 } Some("__rustc[16f1505adc47261a]::__rdl_alloc_zeroed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8878 } Some("std::sys::backtrace::lock::h8739f9a00d09919e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9042 } Some("::write_str::he0f136bfd437b8d6[2]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 299 } Some(" as test::formatters::OutputFormatter>::write_test_start::h96993bd2833e479c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 300 } Some(" as test::formatters::OutputFormatter>::write_test_start::hc768356d4b2b9e8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 916 } Some("zmij::Buffer::new::hff01abce5932997c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1169 } Some("::ref_mut_from_abi::he3baddc136d3ea09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1170 } Some("::ref_from_abi::h872d38979c2f6b6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1406 } Some("serde_json::ser::Formatter::begin_object_key::h02130c284f672d37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1408 } Some("serde_json::ser::Formatter::begin_array_value::h2729aec1c048a7c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1514 } Some("core::mem::transmute_copy::h6e243181d5aa4ab1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1515 } Some("core::mem::transmute_copy::ha80ae65c9fd169c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1561 } Some(" as serde_core::de::Deserializer>::deserialize_enum::hc6178c2c49b7ca3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1564 } Some(" as serde_core::de::Deserializer>::deserialize_struct::h0b8f8224ec49bff9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1565 } Some(" as serde_core::de::Deserializer>::deserialize_struct::h17cdb2cd86812bc9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1566 } Some(" as serde_core::de::Deserializer>::deserialize_struct::h80afbeaa5e54d13f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1567 } Some(" as serde_core::de::Deserializer>::deserialize_struct::hb9e25bf5eabcde31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1710 } Some("core::str::traits:: for str>::index::h5507f9f5bb6428a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3521 } Some(" as core::ops::function::FnOnce<()>>::call_once::h321b568dae386d48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3524 } Some(" as core::ops::function::FnOnce<()>>::call_once::h442e8d79098907be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3560 } Some(" as core::ops::function::FnOnce<()>>::call_once::hfb928f81b880cd74") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3572 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h41dbf38838efe78a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3627 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hc99f078026d22f43") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4028 } Some("core::mem::transmute_copy::h923c93ecec9fbf06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4272 } Some("core::ops::function::impls:: for &mut F>::call_mut::hd7a070ea3523c0b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4833 } Some("serde_json::ser::Formatter::begin_object_key::h7a4005feecd8cae9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4835 } Some("serde_json::ser::Formatter::begin_array_value::h4b5afc4540d64a16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5056 } Some("::ref_mut_from_abi::h3b2a8101576c0501") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5145 } Some("core::ops::function::FnMut::call_mut::ha540276eba6f05ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5701 } Some("zmij::Buffer::new::h19e368d71c0fc77b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5994 } Some("core::mem::transmute_copy::hf1e2b9bbd27e1d75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6344 } Some("link_cli::changes_simplifier::remove_duplicate_before_states::{{closure}}::hd5cf0d5a229ae9b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6362 } Some("core::ops::function::FnMut::call_mut::h99754abc3c4bbbd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6678 } Some("core::iter::traits::iterator::Iterator::all::h793bac31edc8bddc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7278 } Some("::hash::hf8b271eed95160d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7921 } Some("core::ops::function::FnMut::call_mut::h886b426df36f6eec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8125 } Some(" as core::fmt::Debug>::fmt::hf41a3036a1bd2027") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8765 } Some("core::iter::traits::iterator::Iterator::for_each::h669540d8ff5f3dea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8991 } Some("rustc_demangle::v0::Printer::skipping_printing::h36761da78cb165de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9182 } Some("::write_char::hf6357790f0441c1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 636 } Some("alloc::collections::btree::node::NodeRef::from_new_leaf::h83ba857aa1fd9c75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 781 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h05ca667860f9832d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 783 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h0b8e6bc19b3fd208") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 785 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h3556555137ef7c23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 789 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h99bab2638cfe22e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 791 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hb0f29b21a6be8f61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 851 } Some("core::ptr::drop_in_place::hae47064b606e8350") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1031 } Some("core::option::Option::as_ref::h23ca6ea9b75cdf47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1032 } Some("core::option::Option::as_ref::h7f0e4c6c08ba2f4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1146 } Some("js_sys::_::>::ref_from_abi::h84ec2b5269cfc917") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1228 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::new::ha76b23f2cab8babc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1309 } Some("core::str::::contains::h366943c7ab91febc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1339 } Some("::fmt::h28091a54a10bf2e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1420 } Some("::eq::h438cc8444819478a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3408 } Some("js_sys::futures::task::singlethread::try_create_task::ha871678664b1a19d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4093 } Some("core::option::Option::as_ref::h03b3c63857e16634") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4096 } Some("core::option::Option::as_ref::ha73aab5f286e75c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4098 } Some("core::option::Option::as_ref::heda7bb338f390803") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5086 } Some("::eq::hb36d07c483ea49cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5151 } Some("core::ops::function::FnOnce::call_once::h014709cde117e9a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5153 } Some("core::ops::function::FnOnce::call_once::h9255206b92fd064a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5291 } Some("console_error_panic_hook::Error::new::h02efe6cdd3b54614") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5423 } Some("alloc::collections::btree::node::NodeRef::from_new_leaf::h0fc59c20c6444401") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5481 } Some("<&str as core::str::pattern::Pattern>::is_prefix_of::hb66ab4e0b774ea4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5576 } Some("serde_json::read::as_str::h68dfae1c762287ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5592 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_unit::h868f680369cf5451") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5707 } Some("::fmt::h729ee021988cd20f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5728 } Some("core::str::::starts_with::h3e7d759dd7aa3690") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5795 } Some("::fmt::h5fe6fc71d9a24cf0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5808 } Some("::add::h2edad40f2a4fb1ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5809 } Some("::div::h6dc93cd6e3e4e2e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5811 } Some("::sub::hf519f209a7604417") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6347 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::had50e37157a094c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6352 } Some("link_cli::changes_simplifier::remove_duplicate_before_states::{{closure}}::h403362948382ec03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6364 } Some("core::ops::function::FnOnce::call_once::h6e734150db9db11d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6372 } Some("core::ops::function::FnOnce::call_once::h526f3c73a1a30bf8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6374 } Some("core::ops::function::FnOnce::call_once::h002fb7e5667da50c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6376 } Some("core::ops::function::FnOnce::call_once::h8eb1ede69622ee82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6378 } Some("core::ops::function::FnOnce::call_once::h767046624a3f5d6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6380 } Some("core::ops::function::FnOnce::call_once::hcba846e380355f9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6382 } Some("core::ops::function::FnOnce::call_once::h0bae46fd3df7b5aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6390 } Some("core::ops::function::FnOnce::call_once::ha461a21235cb4d30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6394 } Some("core::ops::function::FnOnce::call_once::h396cd5d9025e6d45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6398 } Some("core::ops::function::FnOnce::call_once::hd9410a49981cc2fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6400 } Some("core::ops::function::FnOnce::call_once::h1227ca97226ec2e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6402 } Some("core::ops::function::FnOnce::call_once::h7e0c94bf72d9ddc8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6404 } Some("core::ops::function::FnOnce::call_once::h395200cb78ce068e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6406 } Some("core::ops::function::FnOnce::call_once::hdb541c0a1c5eae61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6410 } Some("core::ops::function::FnOnce::call_once::h87911a15212599fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6412 } Some("core::ops::function::FnOnce::call_once::h6442ab626f3065b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6640 } Some("core::option::Option::unwrap_or::hd6931615657812a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6671 } Some("std::collections::hash::map::HashMap::insert::h6234b441d8d3fd44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6683 } Some("::fmt::he3c815491cb75b42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7391 } Some("core::ops::function::FnOnce::call_once::ha87d0996099e425f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7487 } Some("core::str::::contains::h1d25507605bd3ff8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8081 } Some(" as nom::internal::Parser>::process::{{closure}}::h393c6ff2db9e21f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8261 } Some("::fmt::hfe9f28caeefcff16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8450 } Some("core::option::Option::unwrap_or::hddf4419097b659c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8454 } Some("<*const T as memchr::ext::Pointer>::distance::h2da9fb0b565801ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8729 } Some("::fmt::hd41c416ed9a60196") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8747 } Some("core::str::::starts_with::h1906f13853a02460") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8748 } Some("<&str as core::str::pattern::Pattern>::is_prefix_of::h80db58bc805ee850") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8873 } Some("std::sys::backtrace::BacktraceLock::print::h9628b13d7fc2ed9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8874 } Some("::fmt::hd52b903692aa3126") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 104 } Some("core::hint::assert_unchecked::precondition_check::h258a866bc88a1977") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 162 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h43950736e76be3c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 778 } Some("wasm_bindgen::convert::slices::>::into_abi::h764b95ae13a5c1ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 979 } Some("wasm_bindgen::__rt::maybe_catch_unwind::he3af2a74c71c9d89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1014 } Some("::writeln::h9641d1c620ccd098") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1037 } Some("core::option::Option::is_some::hc9f1ea87e77ce8e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1206 } Some("core::slice::::iter::h5c63fd9559cd66cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1211 } Some("wasm_bindgen_test::__rt::Timer::new::{{closure}}::h96c388ccd46fcb86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1235 } Some("wasm_bindgen_test::__rt::Context::new::_::__wasm_bindgen_generated_WasmBindgenTestContext_new::{{closure}}::hc93f21f49a8807c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1305 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hcf66b891ea4b2ce9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1530 } Some("wasm_bindgen::convert::slices::::ref_from_abi::h3dacfe0b430b2e59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1674 } Some("core::hint::assert_unchecked::precondition_check::hc0f4ba86e684e987") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1729 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h02e44dc7b2b77d9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1740 } Some("core::hint::assert_unchecked::precondition_check::hcedcca8cc955e62a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3377 } Some(">::into::h18145cd09f71b2a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3575 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h57c6b2cc2f3a9fcd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3689 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hc671486212ea0392") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3691 } Some("core::hint::assert_unchecked::precondition_check::h735471a2ea8e4200") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3860 } Some(">::into::he9b13a6fd60fa7ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3964 } Some("core::result::Result::is_ok::h51ab5d3fe940d61a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4169 } Some("wasm_bindgen::convert::slices::::ref_from_abi::he6dba40aece57c54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4274 } Some("core::slice::::iter::h835697624b571f2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4361 } Some("core::hint::assert_unchecked::precondition_check::hb760dfe6bf47de22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4379 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::h729434f0cee50c72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4385 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::h39184317aa7cad2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4387 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::hd1bd844b02252dcf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4390 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::hd8fbee48d758b490") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4394 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::hf8a46282a3604119") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4397 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::h1c69c192f88f4032") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4400 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::h647c2f24183213c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4471 } Some("core::slice::::iter::h40e37370a3a05357") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4475 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h802dea1deb8a4dc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4527 } Some("link_cli::query_processor::QueryProcessor::resolve_patterns::{{closure}}::h4e95a9b1de3bbadd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4671 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::h99ec907144747b77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4673 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::hb65e6257c5af26f0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4675 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::hd6536c5cfcdf11ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5034 } Some(">::into::h1356c43c2d973ba9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5048 } Some("clink_wasm::Clink::reset::hc31be8504af3fccc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5070 } Some("::all_links::hb9deafa844f4aceb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5091 } Some("core::str::::trim::h2bb4ee6924f361e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5272 } Some("wasm_bindgen::convert::slices::>::into_abi::he18c5d14f3bf5b50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5493 } Some("serde_json::map::Map::new::hdb2b7ce751aa181d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5527 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h933867d323084948") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5538 } Some("core::option::Option::is_some::h2601b88dbc43265d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5608 } Some("core::slice::::first::h3b8e9639197a6917") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5609 } Some("core::slice::raw::from_raw_parts::h3e40fe26c172690a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5761 } Some("core::hint::assert_unchecked::precondition_check::h8e5260355ae02483") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5828 } Some(">::get_unchecked::h53d56d2ba7b59c9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5899 } Some("wasm_bindgen::convert::traits::WasmRet::join::hc78dd57086a95b45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5927 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hd28a5fbb2ca55989") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5933 } Some("core::slice::raw::from_raw_parts_mut::h0a91c55898407ea8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5985 } Some("wasm_bindgen::convert::slices::>::from_abi::h45a26c60b4eada1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5986 } Some("wasm_bindgen::convert::slices::>::from_abi::h6ad9ce41f4dc27d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5988 } Some("wasm_bindgen::convert::slices::>::into_abi::he3407c5ea4036c70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6002 } Some("core::hint::assert_unchecked::precondition_check::h280f820fd0cc64c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6112 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h6e2d03713147a049") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6114 } Some("core::hint::assert_unchecked::precondition_check::h2a9ff2d4257268b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6151 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hc79baab888e90194") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6153 } Some("core::hint::assert_unchecked::precondition_check::h9c30611b02088999") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6228 } Some("core::slice::::iter::h70fd6f4c29b88d49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6253 } Some("link_cli::query_processor::QueryProcessor::solutions_are_compatible::h8cb7c22d5585bd40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6528 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h430563e4a111ec82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6535 } Some("core::slice::::iter::hab2d6d1e9a6b48d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6536 } Some("core::slice::::iter::hf7ef08d08a19b652") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6560 } Some("hashbrown::map::make_hasher::{{closure}}::h2e1d12315fcdbfbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6561 } Some("hashbrown::map::make_hasher::{{closure}}::h3460649c28c2d160") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6562 } Some("hashbrown::map::make_hasher::{{closure}}::h3b1123e90e357a65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6563 } Some("hashbrown::map::make_hasher::{{closure}}::h5fc1d11355eeff11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6564 } Some("hashbrown::map::make_hasher::{{closure}}::h6a7a6b1c3a394eb4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6565 } Some("hashbrown::map::make_hasher::{{closure}}::h8c9febfe6fd24dbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6566 } Some("hashbrown::map::make_hasher::{{closure}}::h9995f652e7479430") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6567 } Some("hashbrown::map::make_hasher::{{closure}}::he2ee737e3417bdb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6568 } Some("hashbrown::map::make_hasher::{{closure}}::he44abd3b317a09fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6675 } Some("std::collections::hash::map::HashMap::remove::hc437215dc9b9f215") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6696 } Some(" as core::iter::traits::collect::Extend>::extend::h80a9fdb4bbb1a4e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6700 } Some("core::fmt::Arguments::from_str_nonconst::hefe5a7237dff8bc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6733 } Some("core::slice::sort::stable::quicksort::quicksort::{{closure}}::h9df5b4c3f990989b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6752 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::h3fe2710de5b4678b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6849 } Some("core::hint::assert_unchecked::precondition_check::h09af09b984477be9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6850 } Some("core::str::::trim::hfcb940297ab5f7a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6975 } Some("core::slice::::iter::h7064c9ce56c0df66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7132 } Some("core::slice::sort::unstable::quicksort::quicksort::{{closure}}::h6ab3860e718db6e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7212 } Some("std::path::Path::new::h4bdc7fa380969083") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7244 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::haea60281408e2d6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7254 } Some("core::hint::assert_unchecked::precondition_check::h62792bf86262d91c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7343 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hf206064f6c977285") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7356 } Some("core::hint::assert_unchecked::precondition_check::hd35dab45d889ae93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7432 } Some("lino_env::LinoEnv::keys::hb46f31bb49762a67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7491 } Some("std::hash::random::RandomState::new::KEYS::__rust_std_internal_init_fn::h289ef3b84d2f1dc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7528 } Some("core::hint::assert_unchecked::precondition_check::h4e5a6f1c5193b552") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7541 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h1c9fbd50c7620551") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7624 } Some("links_notation::parser::is_horizontal_whitespace::h0775ed1a26b4dec0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7642 } Some("core::slice::::iter::h2f68ab58d3c334f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7689 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::h16ef0e894975b623") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7977 } Some("core::str::::trim::h4d4e152b6ce4d680") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8163 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::had9810b9b7a107d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8169 } Some("core::hint::assert_unchecked::precondition_check::hccd6f36923b9b67e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8391 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hc2960a4aa89980e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8403 } Some("core::hint::assert_unchecked::precondition_check::h72e1ce2495373e5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8409 } Some("core::slice::::iter::h853d07de03286410") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8578 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::ha37221326c91b4db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8667 } Some("core::hint::assert_unchecked::precondition_check::h32a0543cf5a8f8a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8754 } Some("core::str::::trim_end::h25e2e880e73d2a16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8899 } Some("std::panicking::panic_count::increase::h540a4f946b6e7ad5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8982 } Some("rustc_demangle::v0::basic_type::h137ba0fc79e4e653") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9083 } Some("core::fmt::num::imp::::fmt::hb24e64dd627b0762") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9084 } Some("core::fmt::num::imp::::fmt::h041a24f64485404e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 188 } Some("core::ptr::drop_in_place>>>::h8df317361a6ba72d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 201 } Some("::default::h05f5a517b4d2accb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 683 } Some("serde_core::ser::impls::::serialize::ha53118557ced9d3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 684 } Some("serde_core::ser::impls::::serialize::h60b89d4452a04beb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 730 } Some("alloc::string::String::new::h3a04ea64a528ce0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 797 } Some("core::ops::function::FnOnce::call_once::h81806e7254cec17e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 809 } Some("core::ptr::drop_in_place>>::haf24f198c429104a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 810 } Some("core::ptr::drop_in_place>::h6ec14d43b7a96224") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 894 } Some("core::ptr::drop_in_place>::h1e238908a4ca37c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 895 } Some("core::ptr::drop_in_place>>::ha0092b6a567316a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1358 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_unit::hfb9d2981206d2336") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1422 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h18264d2f808841ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1423 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h2d18ef900d24f606") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1424 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h388d2ef4eba4be22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1425 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h52f30f9952a73f11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1426 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h538104d0180fc9e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1427 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h99288de093e2f5e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1428 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::hb931504f4db7070b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1429 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::hc1c6bb67f97d01cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1430 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::he9ed541ba9665720") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1694 } Some("alloc::string::String::new::h5a588084aab3d3c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3262 } Some("wasm_bindgen::closure::ScopedClosure::own::h4be4b3ad4ea22ecf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3579 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h765371d6193c7fee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3581 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7af46eef6d7156b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3601 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hca9301ab1e58e974") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3607 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hfd27615dd99026e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3638 } Some("core::ptr::drop_in_place>>::h6a5e2ba943c0c893") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3650 } Some("core::ptr::drop_in_place>>::hf30d4265d49cd814") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3666 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>>>::h73f837a6a0bd0d8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3668 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>>>::hcf5c26d73b4d8a6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4211 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_u64::{{closure}}::h0580d47fbf2078de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4625 } Some("core::iter::traits::iterator::Iterator::for_each::h2e6986ce8807206d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4626 } Some("core::iter::traits::iterator::Iterator::for_each::h8e118173970b4572") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4627 } Some("core::iter::traits::iterator::Iterator::for_each::h92d5cf8e58e41788") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4778 } Some("alloc::string::String::new::h2f95455e80a5268e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4782 } Some("serde_core::ser::impls::::serialize::h1c67ad43cc41f8f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4800 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_u32::h642d5dca0d1b87cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4802 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_bool::hc42b90b6e3a1de92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4805 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_unit::h8d509f9e8fe57601") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4840 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h2b2c4f4a7c308c0d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4841 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h68a84430465bc262") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4842 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h6968852cf002b824") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4843 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::hb51b40ec30e4d3d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4844 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::hcade3ffa9cbf9dfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5087 } Some(" as core::iter::traits::iterator::Iterator>::next::h62723f35f0256bd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4466 } Some("alloc::slice::::sort_by_key::had088df2120ee544") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7894 } Some(" as nom::internal::Parser>::process::hce3459877db60475") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4467 } Some("alloc::slice::::sort_by_key::hcee4819fe637733a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4468 } Some("alloc::slice::::sort_by_key::hdfd41771dc2e9dbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6593 } Some("hashbrown::map::HashMap::iter::hf9c109908411f82c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4943 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9c700007075aa929") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4981 } Some("alloc::slice::::sort_by_key::hb7a3acbb77a568aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 420 } Some("test::console::run_tests_console::{{closure}}::h4da431777fa0d703") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5430 } Some("alloc::collections::btree::node::NodeRef::from_new_internal::h9bde05580ef8cccf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6420 } Some("core::ops::function::FnOnce::call_once::hc36dde05cba8d6ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8074 } Some("core::slice::copy_from_slice_impl::h07ae1882d5dff96c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6540 } Some("alloc::slice::::sort_by::h235054685ad9af55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6766 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h89a4340c08c16b4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8312 } Some("nom::internal::Parser::parse::heb488c528d5fa96b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6767 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::ha4c96814523f22a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8466 } Some(" as core::iter::traits::iterator::Iterator>::next::hd40d070ee3b328bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3604 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hdd293b3889fc0873") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6772 } Some("alloc::vec::Vec::extend_desugared::hed729cdc9c3339d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3605 } Some("wasm_bindgen::__rt::maybe_catch_unwind::heb1767f4d493dd79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3997 } Some("once_cell::unsync::OnceCell::get::h874113d527e49147") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7331 } Some("hashbrown::map::HashMap::iter::h0760e063996be3fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5620 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h505b2bae40201233") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7984 } Some("core::iter::traits::iterator::Iterator::try_fold::h120dc8d900bae9f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6117 } Some("alloc::vec::Vec::append_elements::h8094710c88df3115") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5161 } Some("core::ptr::drop_in_place>::h0a1f88813b170609") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5162 } Some("core::ptr::drop_in_place>>::hacbc4d3d1c615fd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5266 } Some("::partial_compare::h5cc1cbe30e1b3a4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8072 } Some("core::iter::traits::iterator::Iterator::try_fold::h2bee61684512bccc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8086 } Some("::is_prefix_of::hc9062c4b48609be0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5550 } Some("::custom::h0aae6110534f1b21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5680 } Some("core::ptr::drop_in_place>::hbcda4fe56a2b3462") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 258 } Some("test::bench::fmt_bench_samples::h9fd10b1e4563b7dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5709 } Some(">::from::h100b9308d1e89273") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8722 } Some(" as core::ops::drop::Drop>::drop::hff8bdcf9c14bf35d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4260 } Some(" as core::ops::try_trait::Try>::branch::hd46670fbce0d113f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6141 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hf2aaa185c426ffb3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5039 } Some("clink_wasm::BrowserStorage::new::h27540a23b79ac9e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6156 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h993c57490c1bdba6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6270 } Some("::into_iter::hc5d1d7af0e14555c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5040 } Some("::default::hfe9e154cce72eaa0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8724 } Some(" as core::ops::drop::Drop>::drop::h83cfd88315d57905") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6721 } Some("anyhow::error::::construct::ha4c184231b5a5b2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5848 } Some("zmij::write8::h0b39cb507984167a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8730 } Some(" as core::ops::drop::Drop>::drop::h250daf82d5184341") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6868 } Some(" as core::iter::traits::iterator::Iterator>::next::hcc340ed3ebdb9a4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8731 } Some(" as core::ops::drop::Drop>::drop::h68ebd02797703943") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8797 } Some("anyhow::error::::construct_from_adhoc::h386375b9d1d93e84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7621 } Some("links_notation::parser::single_line_value_link::{{closure}}::h1c7cc8e0fed727ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9041 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4a4baaf90ee85523") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5940 } Some("alloc::alloc::realloc::h2d0ad23e13853ea3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 90 } Some("alloc::fmt::format::hf053ac61af9d666a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6089 } Some("wasm_bindgen::convert::slices::>::from_abi::h58bf39bc781cb394") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6090 } Some("wasm_bindgen::convert::slices::>::from_abi::hb90897f27d3a2276") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6143 } Some("core::cmp::impls:: for &A>::eq::h917c057778d699fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1481 } Some("alloc::fmt::format::h51e3b3cb015f5456") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6294 } Some("core::iter::traits::iterator::Iterator::for_each::h3c0dca207f7151da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6297 } Some("core::iter::traits::iterator::Iterator::for_each::h4c12f7fc266c9050") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6333 } Some("std::collections::hash::set::HashSet::insert::hc7ebbd1e95573690") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3716 } Some("alloc::fmt::format::h7360ebbf69703067") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6350 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::{{closure}}::h5d5cf0251481fdb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 56 } Some("alloc::rc::RcInnerPtr::inc_strong::h474ed832f8b9e217") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4192 } Some("alloc::fmt::format::h1c37341887324c76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 796 } Some("core::ops::function::FnOnce::call_once::h7bce722e8dcdb97c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6351 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::{{closure}}::hb6a6c32b16ccdcf1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6494 } Some("core::ptr::drop_in_place>::h3d60c94e628ce7a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5531 } Some("core::str::traits:: for core::ops::range::RangeTo>::get::hebccb168628b2a3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6532 } Some("::hash::h35289bebed086c46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6620 } Some("link_cli::parser::Parser::convert_link::{{closure}}::h56e832f730e3a3c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5703 } Some("alloc::fmt::format::h6bad0208d475d650") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7113 } Some("alloc::string::String::new::h3250ef948206497f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7176 } Some("core::ptr::drop_in_place>::h8eafe08fc576c768") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7228 } Some("core::ptr::drop_in_place>::hfcdb7f9801808807") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7233 } Some("core::ptr::drop_in_place::h370d3f2c12ad9bb4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7291 } Some("::default::h8f80196b1fab829f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7324 } Some("hashbrown::raw::RawTable::clear::hc48356e8f98f1f2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7414 } Some("<&T as core::convert::AsRef>::as_ref::h1ec6c0682c23a6a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7442 } Some("core::ptr::drop_in_place>::h7b1f9e512ac99ed4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7559 } Some("core::cmp::impls:: for &A>::eq::h50fb1e52ae2802ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7579 } Some("links_notation::parser::multi_line_values::h52094642eadb7208") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7580 } Some("links_notation::parser::indented_id_link::ha1bec0ea59bb519f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7599 } Some("links_notation::parser::reference_or_link::h114f562a333a1cd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7949 } Some("core::ptr::drop_in_place>::hba8ac32df4cbcc07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8130 } Some("<&str as nom::traits::Input>::iter_elements::hbc0a41cceb5b3747") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8235 } Some("core::iter::traits::iterator::Iterator::for_each::h1a1639e5c1f2bd80") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8353 } Some("alloc::string::String::new::h5811e3748063c1dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8459 } Some("memchr::arch::all::memchr::One::rfind_raw::{{closure}}::h581e1d8a8eec8662") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8528 } Some("core::ptr::drop_in_place>::h14d54dd6ad1ae5df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8564 } Some("core::ptr::drop_in_place>>::hc6386b4bc2284392") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8565 } Some("core::ptr::drop_in_place>::hf4fbb59634fb33f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8705 } Some("anyhow::error::ErrorImpl::backtrace::hf62f0b524d4d1c8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9106 } Some("core::fmt::float::::fmt::h35573ff003c93dff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9171 } Some("core::panicking::panic_nounwind_fmt::h3ba54741176bb0ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 60 } Some("serde_json::value::index:: for serde_json::value::Value>::index::h8df88b7c5ca3b333") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 76 } Some("<&str as core::str::pattern::Pattern>::into_searcher::h13af5c967723bc6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 185 } Some("core::ptr::drop_in_place>>::ha72b921aaee90a87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 724 } Some("::write_str::h6a051c678a5322f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 945 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h9324fa6057b88fd9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 966 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3e73e421ad12743d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 967 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h461da871d9a22e9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 969 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h63dede14f5fa26ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 974 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h6749d130356fd023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 976 } Some("wasm_bindgen::__rt::maybe_catch_unwind::ha6ec38e0cca0444b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 977 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hae45a30febc51135") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1527 } Some("wasm_bindgen::convert::slices::null_slice::h30f28bd4cd44a5ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3247 } Some("wasm_bindgen::JsThreadLocal::with::hc199dba7ba7a772f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3414 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::hde59d7f36d519809") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3566 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h1a88b5b085814729") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3578 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h6df0ada5af7b2cdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3600 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hc668e9733033d605") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3625 } Some("<&A as core::alloc::Allocator>::deallocate::h25bfbba37ca4f7ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4757 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h460b791fdd3b0844") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4769 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::hdb7aa2872453df3a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4775 } Some("::write_str::h9d0e79e2c613b2a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4982 } Some("::return_abi::hfdb39815489cedba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5144 } Some("core::ops::function::FnMut::call_mut::h71550bfbe5cc858e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5309 } Some("::write_str::h45c41e6c0941adfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5380 } Some("::write_str::h99665490d15db0f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5482 } Some("<&str as core::str::pattern::Pattern>::into_searcher::hf8be42eec4d85a7a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5572 } Some("::position::h90f1f2e9aeaa9108") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5755 } Some("::is_nonfinite::h78471cea107d6b1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5791 } Some(">::get_unchecked::h35ac84f7ed187661") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6239 } Some("::fmt::h5cdd2a13210e0a6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6365 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h28b03dc969bb1f7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6367 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h2a6b9ace24444302") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6369 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h3c5f32ee557a1bf7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6383 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h88a604cc81374b54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6385 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h8ecd49554aa42560") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6387 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h987bfbf4201eade7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6391 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::ha63441c7581b7413") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6395 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hbf6fe77e70718947") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6407 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::he17f577a4553004a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6607 } Some("link_cli::link_reference_validator::MissingLinkReference::key::h746d95bfd2e958b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6820 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::hcb9594c4f8aa2c1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7001 } Some("anyhow::error::object_boxed::h6639ba55c47ea6a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7111 } Some("::write_str::h925fd4d7c724a4f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7479 } Some("<&A as core::alloc::Allocator>::deallocate::h73a9b55ed022ba6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7591 } Some("links_notation::parser::single_line_values::h529071e87620a521") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7598 } Some("links_notation::parser::multi_line_value_and_whitespace::h465e427afad7745e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7604 } Some("links_notation::parser::single_line_value_and_whitespace::hc2d3f73daafe65c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7610 } Some("links_notation::parser::single_line_value_link::h87875c710705d95b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7730 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h41d446083d3c631e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7732 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h648ec37184f963c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8347 } Some("::write_str::h99de6d5e10e38e03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8351 } Some("alloc::slice::::join::h73b9de596b086d37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8405 } Some(" as core::ops::try_trait::Try>::branch::he96d3f6634427c31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8490 } Some("::write_str::h60fdee5c7570a07b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8502 } Some(" as core::ops::try_trait::Try>::branch::hadf242a984acc598") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8713 } Some("anyhow::error::object_boxed::hc09326f838125e7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8714 } Some("anyhow::error::object_boxed::hc9d0d814ba68db59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8970 } Some("::take_box::h0536373fffc709d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 59 } Some(" as core::clone::Clone>::clone::h1ebee694deccdc5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 529 } Some("serde_json::de::from_slice::h3bd52240a2ad2aff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 686 } Some("wasm_bindgen::convert::slices::::from_abi::h4ce7d6a496c82196") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 841 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::hbbb089be4ed7c9b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 893 } Some("core::ptr::drop_in_place>::h4705fd78488c765e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 992 } Some("wasm_bindgen_test::__rt::worker::write_output_line::h01faf1eb24b73657") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1011 } Some("wasm_bindgen_test::__rt::browser::DOCUMENT::init::h9ea3e676101a281d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1223 } Some("wasm_bindgen_test::__rt::Context::filtered_count::h69c2d88b17069f13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1225 } Some("wasm_bindgen_test::__rt::Context::include_ignored::hbfa54aac69d0243b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1255 } Some("::into_abi::h9a98942b5fa8372e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1308 } Some("core::str::::contains::h0abe333d51303dfe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1331 } Some(" as core::clone::Clone>::clone::ha3bbbc0fd3847844") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1361 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_struct::hd23d3f47c20683bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1403 } Some("serde_json::ser::to_writer::hdb1fa0dcce1a9b9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3413 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_wake_by_ref::h9b18d3356f4a7562") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3636 } Some("core::ops::function::FnOnce::call_once::hb4a9ee75fd58f5d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3651 } Some("core::ptr::drop_in_place>::h8722d7ac42bba150") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3652 } Some("core::ptr::drop_in_place>::hde73065e5816e8c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3729 } Some(" as core::clone::Clone>::clone::h29600915dc5a7817") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3730 } Some(" as core::clone::Clone>::clone::h76e156d174d29b98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3735 } Some("js_sys::futures::queue::queueMicrotask::h8f39d864dcd01735") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4315 } Some("core::slice::::contains::hf7986f5739f7f870") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4808 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_struct::h65bccb18342a43d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4830 } Some("serde_json::ser::to_writer::ha2edb7c90a6d8f50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4893 } Some("std::collections::hash::set::HashSet::contains::h4e06b1ab1aab0e95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5018 } Some("serde_json::de::from_str::h0d71c61a5ca8eef8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5046 } Some("clink_wasm::Clink::new::hf66c6d8dc61861db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5150 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h9e4767d2718b1857") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5152 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hc7498a809ba0a49a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5155 } Some("core::ops::function::FnOnce::call_once::h97f064ac78667030") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5164 } Some("core::ptr::drop_in_place>>::h235c3964a6918b9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5185 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::h53d35282660e49b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5228 } Some("core::ptr::drop_in_place::h54e89109182f8cf2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5277 } Some("wasm_bindgen::convert::slices::::from_abi::h5289911d553a3a4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5299 } Some("core::fmt::Write::write_fmt::h5895c8654a847d57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5359 } Some("serde_json::de::from_str::h4ee07a4ad88bf7d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5367 } Some("core::fmt::Write::write_fmt::ha6066eb21d5b906b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5558 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_str::h67a4cd77c058715b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5651 } Some("core::ops::function::FnOnce::call_once::h039a130636408ec1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5750 } Some("::count::{{closure}}::haa3f30bf35367b3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5882 } Some("wasm_bindgen::closure::JsClosure::_wbg_cb_unref::h04a08a6e0744acb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5896 } Some("wasm_bindgen::convert::slices::::from_abi::hfc7f9b40a8d63cf5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6173 } Some("core::str::::contains::h4cec8f43afa651ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6189 } Some("core::fmt::Write::write_fmt::h7bc8bdd322e8d299") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6342 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::h4972c6dd3873bae9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6346 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::ha3524cea8f7871a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6348 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::hdd3a50dd24cf7485") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6363 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h22e4acf9dfd241b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6371 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h49f4fadde302f648") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6373 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h5e4525aa66f77fca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6375 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h5f326d6a43e1fbab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6377 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h7269f4a94013450c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6379 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h79c4357128c4f6a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6381 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h8065734f020d5d5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6389 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::ha4481bd57c2f2098") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6393 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::ha8418149e6a5aa18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6397 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hc0708d1ccceeb8af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6399 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hc4679671d2843131") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6401 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hcf33f6edca78664b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6403 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hd1baf55e50272d2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6405 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hdfbf13803e22d0ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6409 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::he72f19e758c2ac6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6411 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hfddd18571b031fc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6445 } Some("core::ptr::drop_in_place>>::h0125dedb03df4ad3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6990 } Some("core::cmp::impls:: for &A>::eq::he2f301261b7c42ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7164 } Some("std::path::Path::exists::h31f1c0452f26000d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1233 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::{{closure}}::hf01bd89bca8ffee4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1313 } Some("alloc::rc::RcInnerPtr::inc_strong::h090138509cb3b33e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6753 } Some("alloc::vec::Vec::append_elements::h3b8d426263a128cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7030 } Some("core::iter::traits::iterator::Iterator::copied::he64b9b40b321c4b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7262 } Some("alloc::vec::Vec::append_elements::h0323957af4879b9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6852 } Some("alloc::fmt::format::h5f25041cb47cbf15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7290 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::haad74eb4058cf569") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7420 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hc8f4d97b12377c8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7178 } Some("alloc::fmt::format::h9d8bf1052ce42c03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7446 } Some("core::option::Option::as_deref::heb5f1b4b92124b5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7536 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h5fd44e0fc8e65954") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8024 } Some("alloc::fmt::format::hbd6b8ba1e6f3f372") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7618 } Some("links_notation::parser::Link::new_value::h870f189515213acb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7688 } Some("alloc::vec::Vec::append_elements::h68d01726bb4f3715") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8941 } Some("<&std::io::stdio::Stdout as std::io::Write>::flush::hc5e1d50c8306f0b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7690 } Some("alloc::vec::Vec::append_elements::hc5c4538636256dd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8198 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h992ac2ce63f620e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9156 } Some("core::slice::memchr::memchr_aligned::hbbff53fde1867734") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8602 } Some("alloc::vec::Vec::append_elements::hb77d5933c84fddfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1315 } Some("alloc::rc::RcInnerPtr::inc_strong::h1756698d4551d922") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1718 } Some("::spec_to_string::hd6864f8f20e98c63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 344 } Some("core::ptr::drop_in_place>>::h8788a19552c6c57f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3704 } Some("alloc::rc::RcInnerPtr::inc_strong::h37500702b627aac8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3706 } Some("alloc::rc::RcInnerPtr::inc_strong::hcfe0dffec2d41239") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9093 } Some("core::fmt::num::::fmt::h83dd385c2b709d70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4275 } Some("link_cli::link_reference_validator::LinkReferenceValidator::next_available_link_id::h42c493de95b891d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4909 } Some("alloc::rc::RcInnerPtr::inc_strong::h870ab566b2581512") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 269 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4af1f9c88b4a6f27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5702 } Some("zmij::Buffer::format::ha07c3103f565b913") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 454 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h58ac18c4ece19a8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6233 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::hf4a48e1a1db8d214") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8794 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hc18ebea795d03fb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1042 } Some("core::option::Option::as_deref::h23fc8f4ed007dc45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8839 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hcef08ec0cc696d81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1149 } Some("::peek::hb87055534a6e414e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 346 } Some("core::ptr::swap_nonoverlapping_bytes::h2320c662b87352f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1540 } Some("js_sys::futures::spawn_local::h7d4eb870a8409987") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6847 } Some("link_cli::changes_simplifier::simplify_changes::he8bb2f4ef80a5eac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1745 } Some("alloc::vec::Vec::append_elements::hf426416515b70e51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1747 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hb4261fef0e96f8da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7245 } Some("core::ptr::drop_in_place>::hb68343015e0b8a05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4337 } Some("core::option::Option::as_deref::hbb30d7d29d0d17d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7246 } Some("core::str::::starts_with::h22e3edab2c933f82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4605 } Some(" as core::iter::traits::iterator::Iterator>::next::hfbb2824223ac1691") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7388 } Some("std::path::Path::exists::h96ba09aeaf77dd51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7390 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h92c456b31425b50c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4672 } Some("alloc::vec::Vec::append_elements::h8bdfe96c3bc1296e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7483 } Some("<&T as core::convert::AsRef>::as_ref::hae88cd27925a70d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7490 } Some("std::hash::random::RandomState::new::{{closure}}::h915419f349b1141d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4674 } Some("alloc::vec::Vec::append_elements::hdffe7357aadf210d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7585 } Some("links_notation::parser::simple_reference::h28f3efcc60ec9f3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7964 } Some("core::str::::starts_with::hd9bc174e5dff69f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4676 } Some("alloc::vec::Vec::append_elements::h9f2e327d0a0b8477") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7965 } Some("core::str::::starts_with::he70abc7934593690") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7979 } Some("core::str::::contains::h8a84d69ad15632bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5036 } Some("clink_wasm::parse_options::h81df3297c0c40d4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5362 } Some("alloc::vec::Vec::append_elements::hfd0e569c9fc1b7cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8300 } Some("nom::internal::Parser::parse::h441fd49525435023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6908 } Some("hashbrown::raw::RawTable::reserve_rehash::h15dfc5e6a6c9ba68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 594 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h6c1982461dcd5e53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6910 } Some("hashbrown::raw::RawTable::reserve_rehash::h212e2c48cf63b8bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6918 } Some("hashbrown::raw::RawTable::reserve_rehash::h9e97eaefd101b2c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6906 } Some("hashbrown::raw::RawTable::reserve_rehash::h090a9fe71ee31aa9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6912 } Some("hashbrown::raw::RawTable::reserve_rehash::h25f26e26a9893e58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6914 } Some("hashbrown::raw::RawTable::reserve_rehash::h7b299c456ff9b676") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6920 } Some("hashbrown::raw::RawTable::reserve_rehash::hb11c8cf83e5ca124") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6922 } Some("hashbrown::raw::RawTable::reserve_rehash::hbb4daf448a63c61a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7750 } Some("nom::internal::Parser::parse::h9181985b68b3a85c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6916 } Some("hashbrown::raw::RawTable::reserve_rehash::h851e136c2f17a6ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7759 } Some("nom::internal::Parser::parse::hfecd175838b94a36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8264 } Some(" as nom::error::ParseError>::append::h931846e6871e462d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8861 } Some("std::io::stdio::_eprint::h164d11821d17dea7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8987 } Some("rustc_demangle::v0::Parser::backref::hcee1c7687ad31d67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7866 } Some("::fmt::ha10e84cba4c70026") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 197 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::set::h03bc4d3792c082c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 198 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::set::h75faf459cbb747e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5563 } Some("::peek::hd5b2030becf7535b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 199 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::set::hacdf09068dccc78d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1385 } Some("serde_core::ser::SerializeMap::serialize_entry::ha3159c9832514f2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 200 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::set::hb25cd2942f98c627") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 326 } Some("std::thread::spawnhook::add_spawn_hook::{{closure}}::{{closure}}::hb140b1bc26a97d07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1390 } Some("serde_core::ser::SerializeMap::serialize_entry::hcf3fc6caa30f584f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 335 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hf18bf4044a517512") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3872 } Some("wasm_bindgen::convert::closures::_::invoke::h29b1430ee3369935") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8327 } Some("core::fmt::Write::write_fmt::h8d682ca0b5991010") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8474 } Some("core::fmt::Write::write_fmt::h76091362825989f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4880 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::hdd2233d703d0209a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8511 } Some("std::backtrace::Backtrace::status::hc669000eeda64677") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4966 } Some("clink_wasm::Clink::execute::_::__wasm_bindgen_generated_Clink_execute::{{closure}}::h2ed8e537b2af5295") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5007 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hee76202588ec9006") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1392 } Some("serde_core::ser::SerializeMap::serialize_entry::he8ad5adca67400d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1414 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h6e027516b99b20b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1614 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::hafe49e48bd4a87c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1601 } Some("wasm_bindgen_test::__rt::criterion::baseline::__wbgbench_dump::hae8f12a6a60e53c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1634 } Some("__wbgbench_dump") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8546 } Some("core::ptr::drop_in_place::hbf83df8187f2c8cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1741 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::ha44534f721d27381") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8559 } Some("core::ptr::drop_in_place::hab5270227eb83d30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 942 } Some(" as core::iter::traits::iterator::Iterator>::fold::heb834a0bd6893e82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1746 } Some("alloc::vec::Vec::reserve::hf329654a2153b789") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8645 } Some("<&T as core::fmt::Display>::fmt::h5ed872f437f2a521") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9061 } Some("core::fmt::num::::fmt::h53aa0353012ac719") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3958 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h4b5b8a75edd994f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 271 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h929b5808a5cdffbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 316 } Some("std::sync::mpmc::Sender::send::ha303d17a4fb6155d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5554 } Some("::fmt::hb9d0867373200df0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3994 } Some("once_cell::unsync::Lazy::force::{{closure}}::ha72596adebe82d87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4474 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h319f1b411a780e6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4505 } Some("link_cli::query_processor::QueryProcessor::links_matching_definition::h107b18107eed8812") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8646 } Some("<&T as core::fmt::Display>::fmt::hc118dfe14a458f6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4811 } Some("serde_core::ser::SerializeMap::serialize_entry::h1bcc489ee17ed6be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8653 } Some("core::fmt::Write::write_fmt::h2dafbec6363521c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7884 } Some("nom::combinator::eof::hac6a6cc8a4890a3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9024 } Some(" as core::fmt::Write>::write_str::h8bc8f40c7696ec57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 596 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::hcba86e1908e3623f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8603 } Some("alloc::vec::Vec::drain::h5d44bf83fea7e6bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4814 } Some("serde_core::ser::SerializeMap::serialize_entry::h7f4f629e35817fee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8919 } Some("core::fmt::Write::write_char::h96f18f2e6fc7992f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8958 } Some("::fmt::hb9180c2d4ce39d24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4504 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern_readonly::h27cba6359c8c46b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1240 } Some("wasm_bindgen_test::__rt::Context::run::{{closure}}::h32063374c9f70631") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1373 } Some(" as serde_core::ser::SerializeMap>::serialize_key::hcb33f705b710b7bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4816 } Some("serde_core::ser::SerializeMap::serialize_entry::h9b18e7e7d20f012b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 541 } Some("serde_json::de::Deserializer::ignore_value::h3d391bdb502f656e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4818 } Some("serde_core::ser::SerializeMap::serialize_entry::haf0a95ff5b2e1e42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4820 } Some("serde_core::ser::SerializeMap::serialize_entry::hf8f20a4854ae81d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4957 } Some("clink_wasm::BrowserStorage::snapshot::{{closure}}::h47b4418c5344c22f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 55 } Some("std::rt::lang_start::{{closure}}::hf4c52da7ee27558a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5082 } Some("clink_rustCoreVersion") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 160 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::h28a224f0d1758e83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 161 } Some("::split::hd084a7806e4b155c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5085 } Some("clink_version") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 362 } Some("core::ptr::drop_in_place>::h35d7db5ec5df9154") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5178 } Some(" as core::ops::drop::Drop>::drop::h942f9203a8424d39") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 364 } Some("core::ptr::drop_in_place>::h392f645966c6c963") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5190 } Some(" as core::ops::drop::Drop>::drop::hbf73b88ab9e52ce7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 366 } Some("core::ptr::drop_in_place>::h586dd7863156c87e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5370 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::ha160e3d0bcc75168") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 392 } Some("test::test_main_static::h9e697147caa0a28a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 607 } Some("std::io::impls::>::write_all::hce72d5ad7495a53d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3859 } Some("wasm_bindgen::convert::closures::_::invoke::h05882c7a178fce0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 707 } Some("::fmt::h23d0a733acc5d614") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7083 } Some("link_cli::link_reference_validator::MissingLinkReference::key::{{closure}}::haa570a0fb3528412") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5385 } Some("alloc::vec::Vec::reserve::ha8d9dedff0058ec3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 983 } Some("wasm_bindgen::__rt::WasmRefCell::new::hf7e20e5b461b3dd9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1152 } Some(">::from::h92f05eb6c313c462") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5436 } Some("alloc::collections::btree::node::move_to_slice::h0db8dea09df335cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1344 } Some(" as core::convert::From>::from::h4e798cdf7ef20b9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3897 } Some("wasm_bindgen::convert::closures::_::invoke::hc13e69144e3741f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1485 } Some("::next::hc78bf638f0363677") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1486 } Some(" as core::iter::traits::iterator::Iterator>::next::hae5a54013c8118e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1518 } Some("core::num::::wrapping_abs::h2d6de746564d4872") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4569 } Some(" as core::iter::traits::iterator::Iterator>::next::hc7e10c10223b8398") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1528 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::heac34a163ead45a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1545 } Some("::join::h8b6f4a2b44811224") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4812 } Some(" as serde_core::ser::SerializeMap>::serialize_key::h8722a276fe02a23c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1546 } Some("::split::h3a3a29a6669edd1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1610 } Some("serde::private::de::missing_field::h4b92b2bbb47150a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4892 } Some("std::collections::hash::set::HashSet::new::h49fd5bbdf034b96c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1611 } Some("serde::private::de::missing_field::h42dd0a1d1c9b8a0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1612 } Some("serde::private::de::missing_field::hc771a7b0087d8308") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5732 } Some("alloc::collections::btree::map::BTreeMap::get::he27040b1f0dbc74e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1613 } Some("serde::private::de::missing_field::h4ca2208c673d5d4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7084 } Some("link_cli::link_reference_validator::MissingLinkReference::key::{{closure}}::haa6568f34b3b19e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7261 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h1dabd79185265b8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6329 } Some("std::collections::hash::set::HashSet::new::h7e0b684061e2a9d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7346 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h60dc8877df1741ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4188 } Some(" as core::ops::try_trait::Try>::branch::h52c189e254036591") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4196 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h19a8f428a1d7b01f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5437 } Some("alloc::collections::btree::node::move_to_slice::h3f70fbeac84eb98b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4502 } Some("link_cli::query_processor::QueryProcessor::match_pattern::{{closure}}::h7edf0fbcf9c541ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5606 } Some("core::slice::::split_first::h3c89c211c0cd92b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4987 } Some("link_cli::named_type_links::NamedTypeLinks::lino_lines::hd7f55f927f4a2061") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5633 } Some(" as core::ops::deref::Deref>::deref::hb1555925601f46c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5977 } Some("wasm_bindgen::convert::impls::>::from_abi::h233f24fccdfbeae7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5697 } Some("itoa::Buffer::format::h9088594c1325bdb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6720 } Some("anyhow::error::::construct_from_std::h51c6e45e43de6b5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1623 } Some("serde::private::de::missing_field::h6a2f3da909563919") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5698 } Some("itoa::Buffer::format::h981bbd3dd48e8d6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1624 } Some("serde::private::de::missing_field::h6a4f04c9ff9be5a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5708 } Some(">::from::hc4fc7e5b9bbc10b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1625 } Some("serde::private::de::missing_field::h97f7c8f59774b252") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7553 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h2124e30ab3a876c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7560 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h7c8c790401c3af53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7752 } Some(" as nom::internal::Parser>::process::{{closure}}::h31f61e66726e3a8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7871 } Some(" as core::iter::adapters::zip::ZipImpl>::next::hd59d089a09a9a70e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8129 } Some("<&str as nom::traits::Input>::take_split::h867f724c84ce1bff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8411 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h1922fe9451b1f97c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8808 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::h5475508574d9f9cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 649 } Some("alloc::collections::btree::node::move_to_slice::h8e8449d8e6b6efcf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 738 } Some(" as core::ops::try_trait::Try>::branch::h37d1df7c20f51198") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 740 } Some(" as core::ops::try_trait::Try>::branch::h3c4de39d2d89b07e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 748 } Some(" as core::ops::try_trait::Try>::branch::h6cbad66425e1d8b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 752 } Some(" as core::ops::try_trait::Try>::branch::h9b228a67ad7e68c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 753 } Some(" as core::ops::try_trait::Try>::branch::h9eceb7e05ea4c15f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 754 } Some(" as core::ops::try_trait::Try>::branch::hbbdd9cd49303313f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 755 } Some(" as core::ops::try_trait::Try>::branch::hcd8a2bfad2448104") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 761 } Some(" as core::ops::try_trait::Try>::branch::hea9d23b79edc07ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1304 } Some("wasmbindgentestcontext_run") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1626 } Some("serde::private::de::missing_field::hbff4406d0f468d44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1627 } Some("serde::private::de::missing_field::he459bf182728162f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1715 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::he919cd0869a44a4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3241 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::h90a5c4cf8bdfe199") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3407 } Some("::split::h3cc1cf1cb7253a4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3632 } Some("core::ops::function::FnOnce::call_once::h7cada8a373e3afd2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3637 } Some("core::ops::function::FnOnce::call_once::hdaf1b416586a82d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3697 } Some(" as core::convert::From>::from::hfff51813ce4c659b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3699 } Some(" as core::convert::From>::from::hb5e3e07301491ed3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4009 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h329cb2a8ff1392ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4010 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h53dd825b9c16855a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4170 } Some("::join::hadf86dab0321ea76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4171 } Some("::split::hd5888b15a46be36d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4206 } Some("serde_core::de::impls::::deserialize::hb23d1462809d8691") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4216 } Some(" as serde_core::de::Visitor>::visit_some::hf5c2c2d784b1eea4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4678 } Some("std::io::impls::>::write_all::hce5a3151dc922da8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4712 } Some("alloc::vec::Vec::dedup::{{closure}}::h3ed047b0f41ca89d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4885 } Some("hashbrown::map::equivalent_key::{{closure}}::h7a0458e877bbdcbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4928 } Some(" as core::convert::From>::from::h2f52c323f87d4baa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4929 } Some(" as core::convert::From>::from::h51f21657f9aa2ebb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5021 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_u32::h90d97a016033e533") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5276 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::h0eeeb0e420551d68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5294 } Some("::split::hc2b81292061af9ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5364 } Some("::fmt::h76449c94be803c89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5404 } Some(" as core::fmt::Debug>::fmt::h81a8dbaa1f14b926") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5519 } Some("core::num::::wrapping_abs::h66060f6d19438667") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5520 } Some("core::num::::unsigned_abs::h06a860f889ecff5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5534 } Some("core::iter::range::>::next::h5126eac345d249ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5536 } Some("core::iter::range::>::next::hebefbcb92c0183c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5601 } Some("<&T as core::fmt::Display>::fmt::hd3fb6d9867b8e7f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5623 } Some("::peek_position::h451966c0e5cef411") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5628 } Some("::position::hd94186c4269e72f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5715 } Some("serde_json::value::partial_eq:: for serde_json::value::Value>::eq::h0cbb448e8abf5750") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5780 } Some("core::slice::::get_unchecked::h0fd444458fe7387f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5782 } Some(">::try_into::hfd23040f858147c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5827 } Some("core::slice::::get_unchecked::h340718c97fc188af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5835 } Some("zmij::umul128_hi64::h93f1d5a959073a93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5877 } Some("::split::hea90fd361d36d224") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5890 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::hee5977cd39f28a5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5900 } Some("::join::he765060206b34472") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5929 } Some("core::alloc::layout::Layout::from_size_align_unchecked::h32ddbe140c1e92c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6120 } Some("::fmt::hee70b4cc9bad5c9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6231 } Some("<&str as serde_core::de::Expected>::fmt::h45ed4a2ec01ba19c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6331 } Some("std::collections::hash::set::HashSet::insert::h0265e7a2c416fcbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6332 } Some("std::collections::hash::set::HashSet::insert::h042981ce62448964") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6552 } Some(" as core::iter::traits::iterator::Iterator>::fold::{{closure}}::he3e9830ac2986b20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6571 } Some("hashbrown::map::equivalent_key::{{closure}}::h361c9fe012e5757a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6611 } Some("link_cli::link_reference_validator::LinkReferenceValidator::new::hd88f41d8397fa3d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6644 } Some(" as core::iter::traits::iterator::Iterator>::next::hf26e43c59906f5f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6790 } Some("alloc::vec::Vec::dedup::{{closure}}::h507a39d202bd62fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6995 } Some("core::error::Error::cause::h9a4bb861cf85474e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7032 } Some("core::error::Error::cause::hdd022e01e2eece8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7274 } Some("::fmt::h9591071fef6aa8bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7381 } Some("hashbrown::map::equivalent_key::{{closure}}::h8832c32655b51d83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7387 } Some("std::path::Path::new::hd7eb76c0fc761618") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7486 } Some("::fmt::h93625923d38f09db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7509 } Some("core::ptr::swap_chunk::h8c8cbeec107819c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7510 } Some("core::ptr::swap_chunk::h938ad8bf902e1244") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7511 } Some("core::ptr::swap_chunk::he0408b7b7cfbffee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7555 } Some("<&T as core::fmt::Debug>::fmt::h81ad4f9299684bc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7630 } Some("links_notation::parser::eol::h5ce7c603309da143") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7870 } Some(" as core::iter::traits::iterator::Iterator>::next::h54ecb0a1d2b36a57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8322 } Some("::fmt::h9a22ac36abbfa1c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8442 } Some("core::iter::range::>::next_back::h6d8f52011bde3ed6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8461 } Some(" as core::iter::traits::iterator::Iterator>::next::h01efdfd7b6cef8bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8487 } Some("::fmt::h2e79f8a47a7917e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8499 } Some("::fmt::hf0cec9a9dd918cdd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8672 } Some("core::error::Error::cause::h0d50d0ef27a4054b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8674 } Some("core::error::Error::cause::h4a2b16a895d0b61f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8676 } Some("core::error::Error::cause::h7bebd4d30f1ce9a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8678 } Some("core::error::Error::cause::hfce84a4cc27c0845") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8816 } Some(" as core::iter::traits::iterator::Iterator>::next::hdf2880bc9fe0a048") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8953 } Some("::flush::h46ac3e4d4ebfc59d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9073 } Some("core::panicking::panic_fmt::h6651313c3e2c6c2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9158 } Some("core::option::expect_failed::h7377ee23bee75e81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 606 } Some("std::io::impls::::write_all::haf4bda8d9a9706bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 680 } Some("serde_core::ser::impls::::serialize::hf60671c662cc0f66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 787 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h4dbfd89d7d3b284f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 850 } Some("core::ptr::drop_in_place::h1ab6d5afbf9bef86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 901 } Some("core::cell::Cell::take::h6726073ab2d659f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 902 } Some("core::cell::Cell::take::hb3657a606f2b8573") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1047 } Some(">::into::h20903b2af047fb15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1179 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_log::{{closure}}::h0a48bc851618ff9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1181 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_info::{{closure}}::had2fdaeef667568a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1183 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_warn::{{closure}}::ha0fdaaa33cf0cb5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1185 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_debug::{{closure}}::hfeca4eb1b1737051") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1187 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_error::{{closure}}::h537e9fc56ae8cb96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1237 } Some("wasm_bindgen_test::__rt::Context::new::{{closure}}::{{closure}}::h093c2e9ea39d2066") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1432 } Some(" as serde_core::ser::Serializer>::serialize_str::h8e751b054b0b59d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1655 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::he586455f66bc3f19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3260 } Some("wasm_bindgen::closure::ScopedClosure::wrap_maybe_aborting::h3d3639be2e387ab0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3365 } Some("core::cell::Cell::take::h393abc581e6588d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3366 } Some("core::cell::Cell::take::h7ac8e98e02de076b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3367 } Some("core::cell::Cell::take::hd6d7a0fbef10b8aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3368 } Some("core::cell::Cell::take::he3aa0c6b1d9504b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3693 } Some("core::task::wake::Context::from_waker::hf86423e57b01902f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3696 } Some(">::into::h9994000389c61574") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5712 } Some(" as core::iter::traits::iterator::Iterator>::next::hfcc08c8acded4bfb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1633 } Some("::stringify_error::h561f4e826267864d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3240 } Some(" as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::hdc44a9b276e5924e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5909 } Some("core::fmt::num::::fmt::h170c237bdccb69ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4176 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h034da737c9003b4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4178 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h4fd6cf945fec0678") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6862 } Some("hashbrown::raw::RawTableInner::fix_insert_index::h8d76e758af35e963") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4244 } Some(" as core::ops::try_trait::Try>::branch::h118070071ef2cb62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4245 } Some(" as core::ops::try_trait::Try>::branch::h1af119a49c073cef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 550 } Some("serde_json::de::Deserializer::parse_decimal_overflow::h4e7f3ac739d7c958") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4251 } Some(" as core::ops::try_trait::Try>::branch::h54fbe3c02e7b4a51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3698 } Some(">::into::h9e3c7ee5233e13de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7138 } Some("core::slice::::split_at_mut_unchecked::hc71033d4d88a4d00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5930 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::hf26f36e6de96442e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7478 } Some(" as core::ops::try_trait::Try>::branch::hbf098aad3e1b8f9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8076 } Some("core::slice::::split_at_unchecked::hffd355711175fabc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8901 } Some("std::panicking::payload_as_str::h7492cfde1abe727b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9008 } Some("rustc_demangle::v0::Printer::print_sep_list::hca8782c08517f866") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1093 } Some("serde_core::de::Error::invalid_length::h755c769318018158") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4318 } Some(" as core::cmp::PartialEq>::eq::h0057db6987e7b589") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5494 } Some("serde_json::map::Map::insert::hf370393bfcf251fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5501 } Some("serde_json::error::Error::io::h9a6462f4bbf2c9aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5553 } Some(" as core::cmp::PartialEq>::eq::h2fbca603b43f12b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5688 } Some("core::result::Result::map::h107c1faf645fd873") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5689 } Some("core::result::Result::map::h509b7ec83292c946") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6557 } Some(" as core::iter::traits::iterator::Iterator>::fold::h75b0d5f9660f014d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7751 } Some("<(P1,P2,P3,P4) as nom::internal::Parser>::process::{{closure}}::h87d835d1b937b270") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8771 } Some("::next::h3991583c8ce0a154") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9080 } Some("core::fmt::num::imp::::fmt::hcc4fdae794c9e627") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 463 } Some("getopts::Matches::opt_present::hac706da1ed474e9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 765 } Some(" as serde_core::de::Visitor>::visit_none::h0a8f256518306831") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 903 } Some("core::cell::RefCell::borrow_mut::h31e2e0bd1478f23b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 904 } Some("core::cell::RefCell::borrow_mut::h75542f90caec5a13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 905 } Some("core::cell::RefCell::borrow_mut::h8fc50b7dc020c410") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 906 } Some("core::cell::RefCell::borrow_mut::ha8ad553162b8acfa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 909 } Some("core::cell::RefCell::try_borrow_mut::ha4dcd81cab75334d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3370 } Some("core::cell::RefCell::borrow_mut::h956eba1c498a6151") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3371 } Some("core::cell::RefCell::borrow_mut::ha1075cbcf9e7a874") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3409 } Some("js_sys::futures::task::singlethread::try_create_task::{{closure}}::{{closure}}::h4db10eafa968e14e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3992 } Some("once_cell::unsync::Lazy::force::{{closure}}::h5d4696e3bad39279") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3995 } Some("once_cell::unsync::Lazy::force::{{closure}}::hbc7f7a0628756d5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4876 } Some("hashbrown::raw::RawTable::find::{{closure}}::hd9cfa13ba1610b95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4878 } Some("hashbrown::raw::RawTable::find::{{closure}}::h8a2455c9da11a508") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4922 } Some("core::cell::RefCell::try_borrow_mut::h73abba10c70cf767") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6001 } Some("core::cell::RefCell::borrow_mut::hc530244b6f907dd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6951 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::h07127e7aa9b3c7fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6952 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::h3ec5258acab74e1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6953 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::h5c3968d5696c7697") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6954 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::h7e8e2e79258e3ed8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6955 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::hb2411fcc722d8ff7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6956 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::hba86db86df2644e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6957 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::{{closure}}::hcd02356788b218af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6959 } Some("hashbrown::raw::RawTable::find::{{closure}}::h82ae26a432f5648e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6960 } Some("hashbrown::raw::RawTable::find::{{closure}}::h2379953d9fbdd0c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6961 } Some("hashbrown::raw::RawTable::find::{{closure}}::h6da8ace17a8e7fd9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6963 } Some("hashbrown::raw::RawTable::find::{{closure}}::h2c5bdde34cee066e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6964 } Some("hashbrown::raw::RawTable::find::{{closure}}::h9aaafa98467f50cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6966 } Some("hashbrown::raw::RawTable::find::{{closure}}::hca09be8ad9cf703c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6968 } Some("hashbrown::raw::RawTable::find::{{closure}}::hd5daf11ceeaa30b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6970 } Some("hashbrown::raw::RawTable::find::{{closure}}::h9a4f09bc9ddaa081") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6972 } Some("hashbrown::raw::RawTable::find::{{closure}}::h9396fc824d6b60d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7192 } Some("core::result::Result::ok::hed47fb6885a89023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7323 } Some("hashbrown::raw::RawTable::find::{{closure}}::h910a7cc292946568") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8065 } Some("core::cell::RefCell::borrow_mut::h3c062755201f194f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8066 } Some("core::cell::RefCell::borrow_mut::h3d69a287ca4bc65b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8341 } Some("core::slice::::split_at_mut_unchecked::h2f67b425bf5f7fea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8445 } Some("core::slice::::split_at_unchecked::h6810e716f5587e88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8864 } Some("std::rt::lang_start_internal::h65870361cd684b13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 374 } Some("core::iter::traits::iterator::Iterator::try_fold::hda1fac220f70451a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 617 } Some("alloc::vec::Vec::push_mut::h7163ee7812174e9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4350 } Some("alloc::slice::stable_sort::hb18507a68eda562b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4488 } Some("core::iter::traits::iterator::Iterator::find::hbea357229a72e214") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4508 } Some("link_cli::query_processor::QueryProcessor::validate_links_exist_or_will_be_created::h20be688836192b20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5805 } Some("::format_nonfinite::h5b0830e47a4cce08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6102 } Some("alloc::vec::Vec::push_mut::h3c501e2a1d9694cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6248 } Some("link_cli::query_processor::QueryProcessor::patterns_from_lino::h698a6387eaa2021a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6641 } Some("core::option::Option<&T>::copied::h0531867b6de78496") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6938 } Some("hashbrown::raw::RawTable::reserve::hba7c4a895ce29e5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6940 } Some("hashbrown::raw::RawTable::reserve::h2e07081b78794155") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6942 } Some("hashbrown::raw::RawTable::reserve::h64d0e208dd88b427") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6944 } Some("hashbrown::raw::RawTable::reserve::h84a8205ccaa4cd58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6946 } Some("hashbrown::raw::RawTable::reserve::h749f3fbba3c9a7ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6948 } Some("hashbrown::raw::RawTable::reserve::h668a29f71bbcd107") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6950 } Some("hashbrown::raw::RawTable::reserve::h19e74efd29835e99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6973 } Some("hashbrown::raw::RawTable::reserve::h2e1060d7ddb08e20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6974 } Some("hashbrown::raw::RawTable::reserve::ha9531777abf144e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7107 } Some("::eq::ha61f8cc55580d851") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7711 } Some("alloc::vec::Vec::push_mut::hd0ad9423645e9107") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8465 } Some(" as core::iter::traits::iterator::Iterator>::next::h5c0f525b303be98b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8599 } Some("::eq::h21664c37c93705b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8761 } Some("core::iter::traits::iterator::Iterator::nth::h9559d50e9dfc77bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8995 } Some("rustc_demangle::v0::Printer::print_sep_list::hedfc2fde5642a933") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8443 } Some(" as core::iter::range::RangeIteratorImpl>::spec_next_back::he7ecf6a5c5cf6753") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8802 } Some("anyhow::error::::msg::hfb4e7e2ca2ee35ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9046 } Some("alloc::raw_vec::RawVecInner::finish_grow::h3f58234d4b0bf44e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9086 } Some("core::fmt::num::::fmt::ha732d4e58d578f99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9087 } Some("core::fmt::num::::fmt::h9e0bbeff346e659b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1366 } Some("serde_core::ser::Serializer::collect_map::h99cf8b3abecc2d57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3901 } Some("wasm_bindgen::convert::closures::_::invoke::hd80652ecd0103d96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4899 } Some(" as core::default::Default>::default::h430a3e7733536c30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4900 } Some(" as core::default::Default>::default::ha4aa3475a09651ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5345 } Some("serde_json::de::Deserializer::parse_decimal_overflow::h612bace687ced7b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7204 } Some("lino_arguments::load_env_file::h2df7b446cf40fa2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7754 } Some("<(P1,P2,P3,P4,P5,P6,P7,P8) as nom::internal::Parser>::process::{{closure}}::ha015bf8327fd1ac4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8850 } Some("std::io::stdio::print_to_buffer_if_capture_used::h2f80a095e9511588") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9113 } Some("core::fmt::builders::DebugMap::key::h575a61b716a4e9e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 433 } Some("::write_char::h32949ed49a1ffdbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1335 } Some(" as core::ops::drop::Drop>::drop::h22271861e1ee6080") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1336 } Some(" as core::ops::drop::Drop>::drop::h22347cee08540f62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1337 } Some(" as core::ops::drop::Drop>::drop::h6207ac48435f04da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1338 } Some(" as core::ops::drop::Drop>::drop::h75a58f098651d497") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3641 } Some(" as core::ops::drop::Drop>::drop::ha53e3d729501ce16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3644 } Some(" as core::ops::drop::Drop>::drop::h6fc4fac1e28aa4aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5157 } Some(" as core::ops::drop::Drop>::drop::h62b0a7ea88995871") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5175 } Some(" as core::ops::drop::Drop>::drop::hb9a8453cd9571b3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6598 } Some("hashbrown::map::HashMap::insert::hed86f83dc735c080") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6861 } Some("hashbrown::raw::RawTableInner::find_insert_index::hada9db64c0bbf200") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8249 } Some("core::unicode::unicode_data::white_space::lookup::hdf75170fe6e940de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8786 } Some("core::unicode::unicode_data::white_space::lookup::h71fa1c49d7b2c369") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8947 } Some("::write_char::h32949ed49a1ffdbf[1]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1681 } Some("::into_searcher::h433676826b108aaf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3386 } Some("alloc::collections::vec_deque::VecDeque::pop_front::h83f6615917dab695") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5745 } Some("memchr::memchr::memchr2::h1b74b0ac38a8573e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6684 } Some("::into_searcher::h49e6149e0506f054") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8087 } Some("::into_searcher::h74127fe99d6ab000") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8360 } Some("core::iter::traits::iterator::Iterator::try_fold::h7dd38dce474e1290") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8753 } Some("::into_searcher::hbc9bb43dc158b8c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9063 } Some("core::fmt::num::::fmt::h5231b83b7d9a2a57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1095 } Some("serde_core::de::Error::unknown_variant::h1d59ac06dab451c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1388 } Some(" as serde_core::ser::SerializeMap>::serialize_key::h72cd7ae07ba07b0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1421 } Some(" as serde_core::ser::SerializeSeq>::serialize_element::haa0b80d2dfd9b3fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4559 } Some("core::iter::adapters::filter::filter_try_fold::{{closure}}::h6e7997d4a132a523") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4560 } Some("core::iter::adapters::filter::filter_try_fold::{{closure}}::h9314a3278635603b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4839 } Some(" as serde_core::ser::SerializeSeq>::serialize_element::h452e905caa4d0c64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6609 } Some("link_cli::link_reference_validator::LinkReferenceValidator::concrete_identifier::h6026332949cf2658") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7095 } Some("core::slice::sort::shared::smallsort::insert_tail::h94285bfb0b1ef1df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9040 } Some("::write_char::h32949ed49a1ffdbf[2]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 58 } Some("alloc::rc::Rc::new::hac8f9c923b969e47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1320 } Some("alloc::rc::Rc::new::hb27f79a9dab163f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1321 } Some("alloc::rc::Rc::new::hcdfadd7f5f15589f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4913 } Some("alloc::rc::Rc::new::h19ecdf93615f2a6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7993 } Some("core::result::Result::map_err::h3b93cbde3e6bf722") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7995 } Some("core::result::Result::map_err::h46e22e7afec497e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7996 } Some("core::result::Result::map_err::h4d591963ffa8c438") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7997 } Some("core::result::Result::map_err::h58ab2e920eae916e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8003 } Some("core::result::Result::map_err::h7939fb20c21cd99d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8004 } Some("core::result::Result::map_err::h7cddbb3684e4b3e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8010 } Some("core::result::Result::map_err::hab3b0367d938c30c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8016 } Some("core::result::Result::map_err::hd9350c6cb4effc6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8017 } Some("core::result::Result::map_err::he330a450e6c66872") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8018 } Some("core::result::Result::map_err::he9c73a26574dd623") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3739 } Some("js_sys::futures::queue::Queue::new::h58805bb7bcd6ddca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3905 } Some("wasm_bindgen::convert::closures::_::invoke::hf37dd20d5c6460d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5495 } Some("serde_json::error::make_error::h42f5757abab9ece7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5852 } Some("zmij::umulhi_inexact_to_odd::h26d4b072ca6cde18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7129 } Some("core::slice::sort::unstable::quicksort::partition_lomuto_branchless_cyclic::{{closure}}::h3cc9178399554638") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7131 } Some("core::slice::sort::unstable::quicksort::partition_lomuto_branchless_cyclic::{{closure}}::he210ab882a246d0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8800 } Some("anyhow::error::::construct::h8446510c50827442") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 521 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h5706be3a0a873349") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 735 } Some(" as core::ops::try_trait::Try>::branch::h0332f4ff0a7db1d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1419 } Some("alloc::collections::btree::map::IntoIter::dying_next::h18731d79f5dcfaa2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5009 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h19fff76553b0c655") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5735 } Some("alloc::collections::btree::map::IntoIter::dying_next::he846001c6da78f5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6930 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::h13fb247cb1ee6ea5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6932 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::h211a12bec2d343cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6934 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::h7908f72bf571c97d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6935 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::h9b06f22bb86ac8f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6936 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::hefd559c3c666a37a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7068 } Some("core::result::Result::map_err::he7e803f6e9bff16d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7991 } Some("core::result::Result::map_err::h37f85fb79ae91ab3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8943 } Some("<&std::io::stdio::Stdout as std::io::Write>::write::h0fc3500ceabfec18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8945 } Some("<&std::io::stdio::Stdout as std::io::Write>::write_all::hd0a2a110fa316632") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1163 } Some("once_cell::unsync::OnceCell::get_or_try_init::hcf01fefe291ce002") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4007 } Some("once_cell::unsync::OnceCell::get_or_try_init::h30552482225e0afd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5756 } Some("core::fmt::builders::DebugMap::entries::h710e1dd0e6ebdb2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5760 } Some("core::str::iter::SplitInternal

::get_end::h65417460f9e6db5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8758 } Some("core::str::iter::SplitInternal

::get_end::h6de39d517023da2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1737 } Some("core::str::traits:: for core::ops::range::RangeInclusive>::index::h73ea765269b5fc9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4015 } Some("once_cell::unsync::OnceCell::set::h4a46323eab421bf4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4988 } Some("link_cli::named_type_links::NamedTypeLinks::format_reference::hb44b37db77b1cd02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5049 } Some("clink_wasm::Clink::snapshot::ha530196577b6a382") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5564 } Some("serde_json::read::parse_escape::h4dcc3916ce3feb3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8984 } Some("rustc_demangle::v0::Parser::hex_nibbles::h39190a2835f26b0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1548 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h0b17dcb61794f8e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3884 } Some("wasm_bindgen::convert::closures::_::invoke::h6b82d170cef4afa6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3894 } Some("wasm_bindgen::convert::closures::_::invoke::ha9d9a9f9b45d17b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4867 } Some("hashbrown::raw::RawTable::into_allocation::h655307319b58326d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4972 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h1746f8de38afbe5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5960 } Some("__wbindgen_realloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6016 } Some("::drop::h6af20b3a91824e9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6106 } Some(" as core::ops::drop::Drop>::drop::h1b44a6b98a3367cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6115 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::he5bfb1eeff78a1c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6118 } Some("alloc::vec::Vec::reserve::h7234333366cfe572") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6154 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::hcdeffe4a4ee791b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6227 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h117310fd7c9610be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6301 } Some("core::iter::adapters::map::map_fold::{{closure}}::h04723d0146fb1689") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6303 } Some("core::iter::adapters::map::map_fold::{{closure}}::h50ee355860d6d0f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6305 } Some("core::iter::adapters::map::map_fold::{{closure}}::hac64a1a5f10f322e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6353 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h0761ae2673812f16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6504 } Some(" as core::ops::drop::Drop>::drop::h0ea77dd03cdd88d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6769 } Some("alloc::vec::Vec::reserve::h2c3ba77aaca455eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7201 } Some(" as core::ops::drop::Drop>::drop::h6f997df8b5f60d1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7256 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::hbeb59fd6eafd7886") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7263 } Some("alloc::vec::Vec::reserve::h5530e6a7d2cac78b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7359 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h25e2ffe4b8d3d6c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7516 } Some("alloc::vec::Vec::reserve::h6900850e07dac72c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7544 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h632fd1a9b6e7b418") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7698 } Some("alloc::vec::Vec::reserve::hcf2ae1794e415d53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7913 } Some("core::fmt::num::::fmt::hc166384365d407ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8266 } Some(" as core::ops::drop::Drop>::drop::h6f59fbc0b20b63bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8267 } Some(" as core::ops::drop::Drop>::drop::h7c0ea04f04218853") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8338 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h66c74adeba61f4af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8407 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h0040eaa38e5790e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8427 } Some("core::fmt::num::::fmt::h6517020f691a3d71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8601 } Some("alloc::vec::Vec::reserve::h68dcbc373f96e36a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8776 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h40b9f06c9fd38586") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 203 } Some(">::eq::hfaf99400e749b538") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 363 } Some("core::ptr::drop_in_place>::hafe9379765dc154d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1158 } Some("once_cell::unsync::Lazy::force::{{closure}}::h148f2ed9e10b3d4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1490 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::hec60d03dfa90fe5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3421 } Some("js_sys::futures::task::singlethread::Inner::is_ready::h8e5f6fa4012282f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3831 } Some("wasm_bindgen::convert::impls::>::split::h81ee398bd1d84465") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3833 } Some("wasm_bindgen::convert::impls::>::split::h9b43039aa6fc0dca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3963 } Some("core::result::Result::ok::hcdaf6bd073d72d79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3993 } Some("once_cell::unsync::Lazy::force::{{closure}}::h7bfd6135d710703f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4194 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::hbbdc6fd626311f2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4238 } Some("core::result::Result::map_err::ha5ac55d71d895b98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4320 } Some("core::option::Option::ok_or_else::h671bed4e3064db93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4321 } Some("core::option::Option::ok_or_else::h794c0bf1f316ca83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5063 } Some("::create::h3c042e4d8956dbe0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5241 } Some(" as core::ops::drop::Drop>::drop::h17d73c15e39c5f8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5721 } Some("serde_json::value::Value::as_str::h8df4906bfc033d00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6256 } Some("link_cli::query_processor::QueryProcessor::trace_msg::h9d3d98f74f57cf41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6465 } Some(" as core::ops::drop::Drop>::drop::h82bf8fea524eaf18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6612 } Some("link_cli::link_reference_validator::LinkReferenceValidator::trace_msg::haf8eeaaf0af8b207") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7763 } Some("::fmt::hebe731ddb249e7ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 314 } Some("std::sys::thread_local::no_threads::LazyStorage::initialize::h6e177359440ec7c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 449 } Some("core::iter::traits::iterator::Iterator::advance_by::h2433babe78958453") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 535 } Some("serde_json::de::Deserializer::peek_error::ha3bb81c39d4d4fce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 538 } Some("serde_json::de::Deserializer::error::h6e3b1f542512358d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 744 } Some(" as core::ops::try_trait::Try>::branch::h5b6afddf1951a5db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 953 } Some("wasm_bindgen::__rt::WasmRefCell::borrow::h7572cb654f68e345") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 964 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::hcfafd390e618f0f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1595 } Some("wasm_bindgen_test::__rt::detect::This::self_::he74d56fe60b528a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1597 } Some("wasm_bindgen_test::__rt::detect::Scope::deno::hba48f78d6c944503") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1693 } Some("core::option::Option::unwrap_or::h17888839a55b4843") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3931 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h545e7784d10c2831") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4259 } Some(" as core::ops::try_trait::Try>::branch::hcc61167e4ea4e37e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4338 } Some("core::option::Option::unwrap_or::h8d73f3230c25cb4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4689 } Some("alloc::vec::Vec::reserve::he721dc2cff2b200f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4697 } Some("alloc::vec::Vec::reserve::h7d6c1ccdaf2ae3e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4700 } Some("alloc::vec::Vec::reserve::h7e66fa2874e1a76a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4704 } Some("alloc::vec::Vec::reserve::h600907c9bc314fd1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4937 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::ha92a8115e1851a14") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4953 } Some("clink_wasm::parse_options::{{closure}}::h407c5bf63871eec9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5333 } Some("serde_json::de::Deserializer::peek_error::h0dea654dc0bdffa3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5336 } Some("serde_json::de::Deserializer::error::h5f017564f0f9f70c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5687 } Some("core::array:: for [T; N]>::try_from::h20a4c0ac10dbae48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5727 } Some("<[T] as core::fmt::Debug>::fmt::hb23c3771692fac67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5846 } Some("zmij::write_if::h43919d0a10f6c490") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6323 } Some(" as core::iter::traits::iterator::Iterator>::fold::h12e226560bcd2f05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6760 } Some("alloc::vec::Vec::reserve::h47af222b039b89cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6762 } Some("alloc::vec::Vec::reserve::h42ec931ad156b208") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6764 } Some("alloc::vec::Vec::reserve::h5df1f432a7eff5a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6768 } Some("alloc::vec::Vec::reserve::h5f39dac639978c4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7417 } Some("alloc::vec::Vec::reserve::h5ff9238ae09bb072") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7696 } Some("alloc::vec::Vec::reserve::hf7313c1c2d095ea1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7703 } Some("alloc::vec::Vec::reserve::h3fd027b5920077c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4891 } Some(" as core::iter::traits::iterator::Iterator>::next::h54f48ec1305d572b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5503 } Some(" as core::slice::index::SliceIndex<[T]>>::index_mut::h8dfb2a767cd8fff0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6324 } Some(" as core::iter::traits::iterator::Iterator>::next::ha44f2d2895b2d205") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6665 } Some("std::collections::hash::map::HashMap::iter::h50e6681640be0699") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7216 } Some(" as core::clone::Clone>::clone::h19e380eb58eae37e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8096 } Some(" as core::clone::Clone>::clone::hddef402325e3b587") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8160 } Some("core::num::::checked_add::hbdd5c52d6c3426c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8483 } Some("core::iter::traits::iterator::Iterator::try_fold::h86ed58824d905369") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8651 } Some("core::fmt::Write::write_char::h40fc2e8fab536e15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8770 } Some("core::iter::traits::iterator::Iterator::try_fold::h982285390cecd103") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8894 } Some("<&T as core::fmt::Display>::fmt::hc31e714438bbd780") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 473 } Some(" as serde_core::de::EnumAccess>::variant_seed::hf610709e8e5442fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 838 } Some("core::ptr::drop_in_place::{{closure}}::{{closure}}>::h02a32a782b4284c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3546 } Some(" as core::ops::function::FnOnce<()>>::call_once::hbe900470a4da771c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3548 } Some(" as core::ops::function::FnOnce<()>>::call_once::hc9617dad6f2ba3ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3556 } Some(" as core::ops::function::FnOnce<()>>::call_once::hf6a439cbf43f102f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3562 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h03d64b825617686b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3567 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h1cf2ab741825bbac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3568 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h234199244e645364") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3569 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h2a5d58fac1715eeb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3574 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h4b15edf6402a591c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3580 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h79988367bca31f72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3587 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8cb3f1227e13feff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3590 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h961a88ea19343aff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3592 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9ccf616f74cc8061") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3594 } Some("wasm_bindgen::__rt::maybe_catch_unwind::haf1e6cc1c58570b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3598 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hbc85a946d6614dd8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3603 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hdb4c70e99db4b243") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3606 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hfb3afa96abf5293b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4316 } Some("::slice_contains::hb830b723b418b973") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4326 } Some("core::option::Option::unwrap_or_else::h722cd4138961cb12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4492 } Some("alloc::slice::::into_vec::h5127ff18594963e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4631 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::he9f371e0e0ad77bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5690 } Some("core::result::Result::map_err::h7a5aa824c6dee1c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5794 } Some("itoa::slice_buffer_to_str::hf02fb281d8c3fb93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6267 } Some("core::iter::adapters::copied::copy_fold::{{closure}}::h75a2844d9af50c64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6541 } Some("alloc::slice::::into_vec::ha227bd8c81bb377f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7557 } Some(" as core::ops::try_trait::Try>::branch::h8d84afb95178b705") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7635 } Some("alloc::slice::::into_vec::h2b30798fe2e23b74") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7741 } Some("alloc::slice::::into_vec::hab317bd6fcdba547") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7761 } Some(" as nom::internal::Parser>::process::{{closure}}::hdcd4b135872d378c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8190 } Some("alloc::slice::::into_vec::h10ca0c6a05adf270") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8244 } Some("core::iter::adapters::map::map_fold::{{closure}}::h49befef14d1dce60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8246 } Some("core::iter::adapters::map::map_fold::{{closure}}::hfbba52a46cb8a8d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8796 } Some(" as core::ops::try_trait::Try>::branch::heeda43d23ff04f18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9088 } Some("core::fmt::num::::fmt::h1819df1398ded45f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9089 } Some("core::fmt::num::::fmt::he6fbcf49a3276d84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9091 } Some("core::fmt::num::::fmt::hb0d61f7959484774") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9092 } Some("core::fmt::num::::fmt::h05406171d1c9dd7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 407 } Some("test::cli::get_run_ignored::h0082c9bb5e2f80b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1008 } Some("wasm_bindgen_test::__rt::browser::Element::text_content::h6c567b70a93c6b68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1218 } Some("wasm_bindgen_test::__rt::stringify::h54aa4b16b6f9ca77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1229 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::stack::he75305dc94318cf2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1434 } Some(" as core::ops::drop::Drop>::drop::heea0cfeb597a520f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1477 } Some("::next::h9d8d762b8a048d01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1579 } Some("wasm_bindgen_test::__rt::node::NodeError::stack::h6a3fb2f00c1f7301") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1581 } Some("wasm_bindgen_test::__rt::detect::Constructor::name::hc1e2d06c98ae3c6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7363 } Some("core::option::Option<&T>::cloned::hc8b1f4a555c08c8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7566 } Some("links_notation::parser::ParserState::pop_indentation::hfd28f2c66d5f633e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7873 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h0cf697251717435d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7874 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h183510f0a51f159f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7875 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h4459ec2de48de082") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7876 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h922aa09e6b1b602a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7879 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hbdba8480e677a9e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7880 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hdb6d65d09ed9ec23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7881 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::heeb0ec5f2ab35ff7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7882 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hf867fa9422bb9f72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7883 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hfdadebeeea08df7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8330 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::h1a0d18d483d0890e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8333 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get_unchecked::hb279e86568beae90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8862 } Some("std::io::buffered::bufwriter::BufWriter::write_cold::hb63a6840371ab153") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9186 } Some("__multi3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 134 } Some("wasm_bindgen_test::__rt::Context::execute_sync::{{closure}}::h3ca9a25a0c8f975a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 135 } Some("wasm_bindgen_test::__rt::Context::execute_sync::{{closure}}::h3dfd2eb2995cf2ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 136 } Some("wasm_bindgen_test::__rt::Context::execute_sync::{{closure}}::h6b6f343e5b932f9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 137 } Some("wasm_bindgen_test::__rt::Context::execute_sync::{{closure}}::he196183c5307fd92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 984 } Some("wasm_bindgen::convert::impls::>::from_abi::h798660bc72956d9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 985 } Some("wasm_bindgen::convert::impls::>::from_abi::hdac1515e293d1011") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1387 } Some("serde_core::ser::SerializeMap::serialize_entry::hbfcd542b1df37924") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1541 } Some("js_sys::futures::future_to_promise::hdb16e34bf89a030c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1605 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::__wasm_bindgen_generated___wbgbench_import::{{closure}}::hd6f66920ae1f2f45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4085 } Some("wasm_bindgen::convert::impls::>::from_abi::h04fcd18306cc4983") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4086 } Some("wasm_bindgen::convert::impls::>::from_abi::h2cc01b6f2f4ab1d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4493 } Some(" as core::clone::Clone>::clone::h272da855ce96e750") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4890 } Some(" as core::iter::traits::iterator::Iterator>::next::h0239c60856d151fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1483 } Some("js_sys::futures::queue::Queue::with::hacec333eabe656a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1516 } Some("core::mem::drop::h0c08f5df3dae550a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1574 } Some("wasm_bindgen_test::__rt::node::_::::into_abi::h31ef19abc84b7f3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1582 } Some("wasm_bindgen_test::__rt::detect::_::::into_abi::h276d6c917f5101ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1589 } Some("wasm_bindgen_test::__rt::detect::_::::into_abi::h97c15fd579837d9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1590 } Some("wasm_bindgen_test::__rt::detect::_::::into_abi::hbae0911c6be23d45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1647 } Some("core::fmt::rt::Argument::new_display::h6a145982c2bd0e54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1648 } Some("core::fmt::rt::Argument::new_display::h903e97828b8094a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1649 } Some("core::fmt::rt::Argument::new_display::hf8d5a3aaa864ab22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1650 } Some("core::fmt::rt::Argument::new_debug::h12d46293faaf0a18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1651 } Some("core::fmt::rt::Argument::new_debug::h28e5753e20432dce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1677 } Some("core::panic::location::Location::file::hd52572956713159a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1687 } Some("::haystack::ha86a0f6980539ee9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1703 } Some("::deref::h99deb082c0321eca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1725 } Some("core::ptr::drop_in_place>::h8ab33f5d1e22508b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1762 } Some("core::fmt::rt::Argument::new_display::hc4590dcbf3847d35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1763 } Some(">::into::h9189b333bca233f0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1905 } Some("js_sys::_::>::into_abi::h20acdfd86c937d53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1907 } Some("js_sys::_::>::into_abi::h0f7b598b6c9004e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1910 } Some("js_sys::_::>::into_abi::h95c1f72349016d07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1930 } Some("js_sys::_::::into_abi::h30da9a70d61eda88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1948 } Some("js_sys::_::>::into_abi::h8a3ebee2b08f1d75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3242 } Some("wasm_bindgen::closure::_::::into_abi::hdc86497000b1c844") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3243 } Some("<&wasm_bindgen::closure::ScopedClosure as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::hc580bd13b00a5310") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3244 } Some("<&wasm_bindgen::closure::ScopedClosure as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::hde09d04e236cc3b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3258 } Some("wasm_bindgen::convert::impls::::from_abi::h302b1b1ec373eceb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4252 } Some(" as core::ops::try_trait::Try>::branch::ha2e9a6fc0a353e48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4256 } Some(" as core::ops::try_trait::Try>::branch::hc2ea259c2d792a24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4262 } Some(" as core::ops::try_trait::Try>::branch::hdd6bcf747b6aec0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4855 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h4bfb2609c5657824") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4856 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h80ddfa0167837220") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4857 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::ha3da12b28c8e9bdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5438 } Some("alloc::collections::btree::node::move_to_slice::hab2c05bcc67fa421") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5535 } Some(" as core::iter::range::RangeIteratorImpl>::spec_next::h35be65555b9dbcfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5639 } Some("serde_json::number::Number::from_f64::h5abb5596f48b25d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5699 } Some("itoa::Buffer::format::hb2ee15a27425cf2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5871 } Some("wasm_bindgen::__rt::take_last_exception::h8f0fed5db4468d49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6645 } Some(" as core::iter::traits::iterator::Iterator>::next::hd660fb5e6a4a1310") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6647 } Some(" as core::iter::traits::iterator::Iterator>::next::ha2c9ba8dfecd8f2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7071 } Some(" as core::ops::try_trait::Try>::branch::h585f65c01ae107d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7327 } Some(" as core::iter::traits::iterator::Iterator>::next::h592d71057dc3b369") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8951 } Some("::sub::h96e856d3f50e18dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9007 } Some("rustc_demangle::v0::Printer::print_sep_list::h1167725efa676d43") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1346 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_f64::h6b14ae4edfb7b084") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1526 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h2647c1f53b723a73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1542 } Some("js_sys::futures::future_to_promise::{{closure}}::h9fa0a3948696cf73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3622 } Some("wasm_bindgen::__rt::wbg_cast::h5d5076c74c96f796") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4099 } Some("core::option::Option::or_else::h72281ac3400ebf95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4100 } Some("core::option::Option::or_else::h86effdf8c225e85b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4101 } Some("core::option::Option::or_else::hb5fa3aa4fadf1d42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4300 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h1cb4e54f8bdeb3eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4301 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h3a52a255095c6be2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4302 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h445cbd232aa59634") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4303 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hdafea37401142984") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4341 } Some(" as core::fmt::Debug>::fmt::haffea02acf10fb0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4576 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h32b09ffed1ba57ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4577 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h3a89024467cf9f3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4578 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h668b210a8886138b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5041 } Some("clink_wasm::BrowserStorage::snapshot::he230572a1b553840") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5875 } Some("wasm_bindgen::__rt::wbg_cast::h29d11069f9dbc967") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6005 } Some("core::option::Option::unwrap_or_else::h67d4b2f55e836467") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6008 } Some("::fmt::h98b16f26c821dc97") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6085 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha1ed69894d03da03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6086 } Some(" as core::convert::From>>::from::h831ce51bc0637a2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6088 } Some(" as core::convert::From>>::from::hf4f3727b840cd587") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6308 } Some("core::iter::adapters::map::map_fold::{{closure}}::ha45941335908f198") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6511 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h8b2cea2516000609") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6512 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h8fef8fbd582a74a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6513 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h954a2aa84c4117b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6845 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h3b43b88f846d687e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6846 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h4e99f46aeb0bfd8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7046 } Some(" as core::iter::traits::iterator::Iterator>::fold::h8301997547c2602a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7185 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hb512364a34245625") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7326 } Some(" as core::iter::traits::iterator::Iterator>::next::hc8dada029a58e840") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7563 } Some("links_notation::parser::ParserState::set_base_indentation::h6554c8776de0f0ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7981 } Some("core::str::::split_at::h6dc3a4be5ce6b032") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8167 } Some("core::char::methods::::is_whitespace::hd95dd6f42972a1c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8213 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h469121d1840fdecd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8214 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::he17d5da20f3bfd58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8363 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h92e095081c0e68d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8373 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h1ee8e4ce69e33519") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8467 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h69536c2845636a1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8468 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h9ff2e20f31f4577e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8482 } Some("core::char::methods::::is_whitespace::haeafbea65a476800") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8643 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h1962e308328e360f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 80 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::hf641a77c36daa809") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 648 } Some("alloc::collections::btree::node::move_to_slice::h6adbc680a539b1c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1077 } Some("__wbgtest_cov_dump") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1157 } Some("once_cell::unsync::Lazy::force::{{closure}}::h0da5dd4dfeb51a21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1363 } Some(" as core::iter::traits::iterator::Iterator>::next::h201859654d5ce590") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1372 } Some("serde_core::ser::SerializeMap::serialize_entry::h04e003012f638809") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1375 } Some("serde_core::ser::SerializeMap::serialize_entry::h05f98da435ca70cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1377 } Some("serde_core::ser::SerializeMap::serialize_entry::h084680201f361c23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1379 } Some("serde_core::ser::SerializeMap::serialize_entry::h0c4afc05f098d1d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1381 } Some("serde_core::ser::SerializeMap::serialize_entry::h1c4a9d878b34fb7a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1383 } Some("serde_core::ser::SerializeMap::serialize_entry::h894ead77e3d9ecc9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7124 } Some("::fmt::h40017567fbd4ba6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8767 } Some("core::iter::traits::iterator::Iterator::try_fold::h207efca4a3794767") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8960 } Some(" as core::fmt::Write>::write_str::h2565d317dce5ddac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 658 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_fit::h8f016b247bde8677") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1580 } Some("wasm_bindgen_test::__rt::node::NodeError::to_string::hcd7145b069bf7b01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4339 } Some("core::option::Option>::transpose::h546faf32ddf4591b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5447 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_fit::h25f16a634bf46ba7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5844 } Some("zmij::do_compute_exp_shift::hedc085a5324358c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6584 } Some("hashbrown::map::HashMap::get::h3202445c25199749") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6838 } Some(" as core::iter::traits::iterator::Iterator>::fold::hc32adde6ca631def") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6839 } Some(" as core::iter::traits::iterator::Iterator>::fold::hecdafca618eabecf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7333 } Some("hashbrown::map::HashMap::get::ha8add1b0f019728f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7969 } Some("core::str::::split_at_checked::hdb5dc7447725462a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 345 } Some("alloc::sync::Arc::drop_slow::hec150238ad109ce6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 616 } Some("alloc::vec::Vec::push_mut::h6e49ea72daba82d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1374 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h0f5da5a104a0f9aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1376 } Some(" as serde_core::ser::SerializeMap>::serialize_value::hf8257c2c640ae345") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1378 } Some(" as serde_core::ser::SerializeMap>::serialize_value::he7ef0f3840857d33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1380 } Some(" as serde_core::ser::SerializeMap>::serialize_value::hc8197992542661dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1382 } Some(" as serde_core::ser::SerializeMap>::serialize_value::he5b7f474d67efec9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1384 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h45929c7b383bd84f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1386 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h6bd3972d49489130") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1389 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h9d009b97bd27c1a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1391 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h35130a299c774005") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1393 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h2a02da94461d6e0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3875 } Some("wasm_bindgen::convert::closures::_::invoke::h38b3aeffac1e27a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3879 } Some("wasm_bindgen::convert::closures::_::invoke::h5614b2fec6ca8662") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4195 } Some(" as core::iter::traits::iterator::Iterator>::next::hf5715a47f51c470c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4813 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h3d4b9e982c4540a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4815 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h43b3b97c5027208e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4817 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h00ef99358d8919a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4819 } Some(" as serde_core::ser::SerializeMap>::serialize_value::hdcc40a63a0e5fcd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4821 } Some(" as serde_core::ser::SerializeMap>::serialize_value::hb877da0088205f61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6779 } Some("alloc::vec::Vec::push_mut::h5ee66968703f2c1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6837 } Some(" as core::iter::traits::iterator::Iterator>::fold::h573b92cda4c4627d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8367 } Some(" as core::iter::traits::iterator::Iterator>::fold::h04ce05f4693cc3ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8369 } Some(" as core::iter::traits::iterator::Iterator>::fold::h956b2ec44fd48f46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9030 } Some("::fmt::h49533a304087dfc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1167 } Some("once_cell::unsync::OnceCell::set::h80c33ad1387445ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4186 } Some(" as core::ops::try_trait::Try>::branch::h1e4ab593026a7f9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4187 } Some(" as core::ops::try_trait::Try>::branch::h4bda9bbd3da1b9ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4201 } Some("core::iter::adapters::try_process::h3bda18aaa8f38f28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4688 } Some("alloc::vec::Vec::extend_trusted::h0251bc324bae9921") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4690 } Some("alloc::vec::Vec::extend_trusted::h1b278ba7ef25730f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4691 } Some("alloc::vec::Vec::extend_trusted::h286e87e39d319a01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4887 } Some("hashbrown::map::HashMap::contains_key::hd3fc3d27f1e00dd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5491 } Some(" as core::iter::range::RangeInclusiveIteratorImpl>::spec_next::hfdee3f767e1f77e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5548 } Some("::fmt::he49443cd4bf7015c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5738 } Some("memchr::arch::all::memchr::One::count_raw::ha3ea71d66b5d954f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6578 } Some("hashbrown::map::HashMap::contains_key::h6a0d3b84ef6cd8a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6579 } Some("hashbrown::map::HashMap::contains_key::h9c76eb1092219dab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6580 } Some("hashbrown::map::HashMap::contains_key::hc8a82dac3aca632c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6759 } Some("alloc::vec::Vec::extend_trusted::h0d972292cd69ec10") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6763 } Some("alloc::vec::Vec::extend_trusted::h3f01460939c56b2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7697 } Some("alloc::vec::Vec::extend_trusted::h47eceef0010f0595") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8023 } Some(" as core::ops::try_trait::Try>::branch::he9f371c84b332d3a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8880 } Some("std::sync::mpmc::context::Context::new::h41fbed2a57167fe4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8990 } Some("rustc_demangle::v0::Printer::print_backref::h2d91aa542dce40c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9004 } Some("rustc_demangle::v0::Printer::print_backref::hc27f4820a470ce24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 609 } Some("alloc::vec::Vec::extend_trusted::h4361fc70bbf78a95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 646 } Some("alloc::collections::btree::node::slice_insert::h39269f07d21b695e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 723 } Some("alloc::string::String::push::h56ea77e620eee9ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1700 } Some("alloc::string::String::push::h6d45bf27bcc507b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3479 } Some(" as core::ops::drop::Drop>::drop::h18514d44c4696673") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4692 } Some("alloc::vec::Vec::extend_trusted::h2ee761ed0cfa8086") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4774 } Some("alloc::string::String::push::hb4dc7d7e095f78ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5308 } Some("alloc::string::String::push::h26facadb69bab147") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5379 } Some("alloc::string::String::push::h637d89329e5ffa12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5434 } Some("alloc::collections::btree::node::slice_insert::h4545422d4123bbc6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6937 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::h456ef7b4afbd92d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6939 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::h4613532d1eb86f02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6941 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::h603407afe3b99fe2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6943 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::h81276242a741fd23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6945 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::h8c5d7de1b4a701e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6947 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::h9e2bcbbfa3dd4114") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6949 } Some("hashbrown::raw::RawTable::find_or_find_insert_index::hdcc4357e81d6cd6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4270 } Some("core::ops::function::impls:: for &mut F>::call_mut::h23190604457d558a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6871 } Some("hashbrown::raw::RawTable::into_allocation::h2137ad5371b32de4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 274 } Some("test::formatters::terse::TerseFormatter::write_plain::h027acd4b00dfe90f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 276 } Some("test::formatters::terse::TerseFormatter::write_plain::hc5b99432b10045dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1022 } Some("core::iter::traits::iterator::Iterator::fold::hb25ca95514024b5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3522 } Some(" as core::ops::function::FnOnce<()>>::call_once::h342d339720dd1cb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3525 } Some(" as core::ops::function::FnOnce<()>>::call_once::h4b65f7207d5cd5bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7058 } Some("core::ptr::swap_nonoverlapping::precondition_check::h029589a089942763") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3532 } Some(" as core::ops::function::FnOnce<()>>::call_once::h6baed6bc286ee6ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3533 } Some(" as core::ops::function::FnOnce<()>>::call_once::h6e244da47bbd99ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5012 } Some("serde_json::de::Deserializer::ignore_value::h2fcba01b0362f79f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3534 } Some(" as core::ops::function::FnOnce<()>>::call_once::h73f8f07aff6fcd71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4497 } Some("core::ops::function::impls:: for &mut F>::call_mut::he136fcca8774096c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4677 } Some("std::io::impls::::write_all::hed3fb4a1cf45f9bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4846 } Some(" as serde_core::ser::Serializer>::serialize_str::h3e09fe0c4a25733c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4947 } Some(">::into::hd2100c52e94e8dbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5035 } Some(">::into::h2abdda72a18bbd81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3538 } Some(" as core::ops::function::FnOnce<()>>::call_once::h93d07c453fff0a7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5065 } Some("::exists::h82d0bf3b93456583") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3543 } Some(" as core::ops::function::FnOnce<()>>::call_once::hab02fad0c7297af1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3551 } Some(" as core::ops::function::FnOnce<()>>::call_once::hde939788a283f921") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7678 } Some("alloc::str::::replace::hb784f4c4b4323c5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3261 } Some("wasm_bindgen::closure::ScopedClosure::new::h1aafb6f953365f89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3553 } Some(" as core::ops::function::FnOnce<()>>::call_once::he7c7256258b72bb8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3559 } Some(" as core::ops::function::FnOnce<()>>::call_once::hfb51ea6348191663") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3376 } Some(">::into::h039ba7006ff0a438") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3839 } Some("wasm_bindgen::convert::impls::>::return_abi::hf8bdd4347254d6a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7110 } Some("alloc::string::String::push::hda1aa8c2277a4f61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3378 } Some(">::into::h44a66b59c32c1974") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7613 } Some("links_notation::parser::parse_dynamic_quote_string::h30482d56124547b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3398 } Some("::drop::ha8a3b2cb6ef3193c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3400 } Some("::deref::h77a0784538bb2b7a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8346 } Some("alloc::string::String::push::habaa68d1d77b1059") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4312 } Some("core::iter::traits::iterator::Iterator::fold::hb2c6abef76046bb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3401 } Some("::return_abi::h294b0fad3471781d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5561 } Some("serde_json::read::error::h8f5b7a50b9bb6bcf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3406 } Some("js_sys::futures::task::singlethread::_::::into_abi::h34a0343cdbb9d751") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5573 } Some("serde_json::read::error::h7af87837f26b989d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3423 } Some(" as core::ops::deref::DerefMut>::deref_mut::h8b8cd6ce25475e0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8370 } Some(" as core::iter::traits::iterator::Iterator>::fold::he5d3001c6ceed7ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8489 } Some("alloc::string::String::push::he6003dbb5d9fa0a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 405 } Some("::next::hc3061bbfb5588c29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5574 } Some("serde_json::read::error::hbe10dbadec4d6117") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1498 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::hd90de1c0c544d8c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5575 } Some("serde_json::read::error::hef165def3a90d289") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5594 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_f64::h8947c74bf9da983c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6259 } Some(" as core::iter::traits::iterator::Iterator>::next::hab564b0c630f30a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6633 } Some("core::option::Option::map::hd189ba325127d150") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 567 } Some(" as serde_core::de::Deserializer>::deserialize_any::h106b49f657899cd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 568 } Some(" as serde_core::de::Deserializer>::deserialize_any::h254ccb6db343b786") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5106 } Some("core::slice::sort::shared::smallsort::sort4_stable::hf810aed9731eb192") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 569 } Some(" as serde_core::de::Deserializer>::deserialize_any::h4f48d236e3c9375c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 570 } Some(" as serde_core::de::Deserializer>::deserialize_any::h5ad685e8da15e3f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 571 } Some(" as serde_core::de::Deserializer>::deserialize_any::h62b7a085c680f51a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5262 } Some("serde_core::ser::impls::::serialize::h028ef25b33566886") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7097 } Some("core::slice::sort::shared::smallsort::sort4_stable::had3a489ca69f1dd1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5365 } Some("core::cmp::impls::::eq::h4a63559541dea16f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5492 } Some("serde_json::map::Map::get::h17235b00c452caae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7272 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h753f0a9f6128d827") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1707 } Some("core::iter::adapters::peekable::Peekable::next_if::h9113eb280bdab981") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1208 } Some("wasm_bindgen_test::__rt::State::log_test_result::hdd83592e73631d46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1708 } Some("core::iter::adapters::peekable::Peekable::next_if::h3e20818e4e1c87f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5607 } Some("core::slice::::get::hf5e21798e3bea8a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5643 } Some("::forward_unchecked::hb9596a80b4a441c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5906 } Some("core::slice::::get_mut::h2fd20a30101c1460") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6341 } Some("core::ops::function::impls:: for &mut F>::call_mut::h9b5426cfe79b1654") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5100 } Some("core::slice::sort::shared::smallsort::sort4_stable::h19923381c52a9060") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6343 } Some("core::ops::function::impls:: for &mut F>::call_mut::he92a317f83c17588") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6505 } Some("core::clone::Clone::clone::h9176e5eaea7f0f23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4279 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_missing_references_in_pattern::hd083fe1bd231d51d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6529 } Some("core::cmp::impls:: for &A>::eq::ha94c1c14047fe467") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5101 } Some("core::slice::sort::shared::smallsort::sort4_stable::h47fa1b0af3d24294") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3633 } Some("core::ops::function::FnOnce::call_once::h93f927adbd4f79cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6789 } Some("alloc::vec::Vec::dedup_by::he13246a5b4d1cd4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3647 } Some("core::ptr::drop_in_place>>::h6bd31f1a601e731a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 572 } Some(" as serde_core::de::Deserializer>::deserialize_any::hace31a5dd4416b3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3648 } Some("core::ptr::drop_in_place>>::h96513ba50730c492") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6530 } Some("core::cmp::PartialEq::ne::hdcc3b51d439bb29f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8507 } Some(" as core::iter::traits::iterator::Iterator>::next::h14c023c9af441690") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6663 } Some("std::collections::hash::map::HashMap::get::hddcd2fcc8128ee00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7044 } Some("core::cmp::impls::::cmp::h67a4e57721aa98f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7077 } Some("core::cmp::impls:: for &A>::eq::haae9bd7d24e04bfa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8508 } Some(" as core::iter::traits::iterator::Iterator>::next::h3b5cb1dde14a05d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7082 } Some("link_cli::query_processor::QueryProcessor::solutions_are_compatible::{{closure}}::{{closure}}::h3bab56d3cb43fba1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7332 } Some("std::collections::hash::map::HashMap::get::h425461510e76b2e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 375 } Some("core::slice::sort::shared::pivot::median3_rec::h32fe3ba1afec1486") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 644 } Some("alloc::collections::btree::node::NodeRef::deallocate_and_ascend::h07d211485a2025ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 725 } Some("alloc::string::String::push_str::hce6127123881d148") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 501 } Some(" as serde_core::de::MapAccess>::next_key_seed::h228713633f307d88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3656 } Some("core::ptr::drop_in_place>>::h803b34a1a0a54812") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4511 } Some("link_cli::query_processor::QueryProcessor::solution_is_no_operation::hfad67c609798ba16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3660 } Some("core::ptr::drop_in_place>>>::h3e8ebba2a054c00c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3662 } Some("core::ptr::drop_in_place>>>::hd1f025561aeaf95d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8207 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::he9c3e082d96427b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3663 } Some("core::ptr::drop_in_place>>>::hf8aa762b04b5a950") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3669 } Some("core::ptr::drop_in_place+Output = core::result::Result<(),wasm_bindgen::JsError>>>::hce532c73b537f04d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4526 } Some("link_cli::query_processor::QueryProcessor::resolve_identifier::h2d17b143d9613d88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3710 } Some("alloc::rc::Rc::from_raw::hb8c529e5ba025bd2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3732 } Some("::return_abi::hce458b06787edce5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 527 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hb23afa3bd0f0a619") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3733 } Some("::return_abi::he78805179e7ef6da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7430 } Some("lino_env::LinoEnv::get::h0dee4169b8658b65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3736 } Some("js_sys::futures::queue::_::::into_abi::h9ecdeb82ab740ff6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7431 } Some("lino_env::LinoEnv::get::{{closure}}::h4fd872106e204b91") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3742 } Some("js_sys::futures::queue::Queue::with::h898f96b28a6b7fdb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7437 } Some("<&T as core::convert::AsRef>::as_ref::h272dd43d6538ecd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3754 } Some(" as core::ops::deref::Deref>::deref::h17c5dabd435d2496") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7497 } Some("core::hash::Hasher::write_u32::h45886b586e381e0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3755 } Some(" as core::ops::deref::Deref>::deref::h7d8a0df283eba4bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7562 } Some("links_notation::parser::count_indentation::h052de7a510b9cbe7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3927 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h4388a558dec3e9df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 780 } Some("::spec_to_string::ha09470d4d3ba6752") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3932 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h5a1a1f7613e5aed5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3933 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h5c02a0faa5a5d820") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1470 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::h4c6af47d405d3e8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3959 } Some("core::panic::location::Location::file::hf171bdf3a38de397") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3975 } Some(" as core::ops::deref::Deref>::deref::h602160e8b23dcb69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 312 } Some("::next_match::h4dfa56fc99ed52ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3977 } Some(" as core::ops::deref::Deref>::deref::h7fe815587f11311b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4008 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h0fdc5f4c566ba6ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4032 } Some("core::mem::drop::h35ee8e65fc816f10") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5510 } Some("::fmt::h3e28bb89f87ca1c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4521 } Some("link_cli::query_processor::QueryProcessor::check_id_match::{{closure}}::h86f73817364d732c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 503 } Some(" as serde_core::de::MapAccess>::next_key_seed::hb2490559617fdca2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9190 } Some("compiler_builtins::math::libm_math::fmod::fmod::hdd96ffb56df7b981") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1147 } Some("js_sys::Promise::new_typed::h5f31b7b128dbaaaa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 505 } Some(" as serde_core::de::MapAccess>::next_key_seed::h00d1484e87ea5ee0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1704 } Some("alloc::string::String::push_str::h464ba663297ea796") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4247 } Some(" as core::ops::try_trait::Try>::branch::h4a498897fb0d4b48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 507 } Some(" as serde_core::de::MapAccess>::next_key_seed::h85d2ac9efbc7b0fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4255 } Some(" as core::ops::try_trait::Try>::branch::hbb44138810b83236") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4485 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h3a1244d74868a24c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 509 } Some(" as serde_core::de::MapAccess>::next_key_seed::h815d80e3c3cae9c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7578 } Some("links_notation::parser::multi_line_link::{{closure}}::ha065bde6176af3f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7590 } Some("links_notation::parser::single_line_link::{{closure}}::hf9f59021f5ac865a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5005 } Some(" as serde_core::de::MapAccess>::next_key_seed::h0a80e7b2abe03cbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7597 } Some("links_notation::parser::multi_line_values::{{closure}}::hdd8742730402a237") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7601 } Some("links_notation::parser::reference_or_link::{{closure}}::h1de39acfdac9e3e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7603 } Some("links_notation::parser::single_line_values::{{closure}}::hbd6e91498deef55c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5747 } Some("memchr::memchr::memrchr::h276eaf5643a298c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7605 } Some("links_notation::parser::multi_line_any_link::{{closure}}::h839367541b755746") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7606 } Some("links_notation::parser::multi_line_any_link::{{closure}}::hadccde9a6262a7b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4776 } Some("alloc::string::String::push_str::h0f0922918e1e6ea4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5102 } Some("core::slice::sort::shared::smallsort::sort4_stable::h4e971f414851ac30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4861 } Some(" as core::iter::traits::iterator::Iterator>::next::hcc21e3b732186f1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5019 } Some(" as serde_core::de::Deserializer>::deserialize_any::h732e21d76b7c772b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5031 } Some("::spec_to_string::hb55c9ceb4c06e4c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5103 } Some("core::slice::sort::shared::smallsort::sort4_stable::h5597d52ce03390fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5296 } Some("alloc::string::String::push_str::hf36964d92d50424f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5298 } Some("::spec_to_string::h28679cd7151c28df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5381 } Some("alloc::string::String::push_str::hddf89f6b914f0e2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5104 } Some("core::slice::sort::shared::smallsort::sort4_stable::hbb2c4475c23e4b54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 412 } Some("test::bench::fmt_thousands_sep::hf599e8878ba4e5f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 662 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert::h9a437dcdb13b40fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4540 } Some("alloc::vec::in_place_collect::needs_realloc::h973597d16c0f1a85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6300 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::h701b296845cb3dd9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7066 } Some("core::result::Result::map::h90b151db074f63b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7125 } Some("::fmt::h1c28b8c23bb78f6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7133 } Some("core::slice::sort::unstable::quicksort::partition::h692a11f572f950c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7609 } Some("links_notation::parser::single_line_any_link::{{closure}}::hae656511a6409b35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7611 } Some("links_notation::parser::single_line_any_link::{{closure}}::hcc3bdbf1b6bfb599") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7615 } Some("links_notation::parser::multi_line_value_link::{{closure}}::h0cd69a842d90ee56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4541 } Some("alloc::vec::in_place_collect::needs_realloc::ha204ffeed578c855") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4547 } Some(" as core::iter::adapters::SourceIter>::as_inner::h3e1cc64a3c7422b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7622 } Some("links_notation::parser::single_line_value_link::{{closure}}::h4d91d2c29638d54b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4548 } Some(" as core::iter::adapters::SourceIter>::as_inner::h65beaea416f4a2e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7628 } Some("links_notation::parser::multi_line_value_and_whitespace::{{closure}}::hb118ecde4bf98a4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4647 } Some(" as core::iter::adapters::SourceIter>::as_inner::h63d4e8bb79d2c951") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5416 } Some(" as serde_core::de::Deserializer>::deserialize_any::h33e2c86de1329af1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4648 } Some(" as core::iter::adapters::SourceIter>::as_inner::h7a6675ee2f151d38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4653 } Some("core::cmp::impls::::eq::heb1c35d55350f843") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5417 } Some(" as serde_core::de::Deserializer>::deserialize_any::hd9c94558237b5abf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7629 } Some("links_notation::parser::single_line_value_and_whitespace::{{closure}}::hf0037f853c8cbfb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4708 } Some("alloc::vec::Vec::push::h39f7edec63bc2ae2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7633 } Some("links_notation::parser::line::{{closure}}::h68fecb622d3721b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4728 } Some(" as core::ops::deref::Deref>::deref::h32c2f8dd965aa525") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4729 } Some(" as core::ops::deref::Deref>::deref::h5d4d6e4ea2eea2d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9085 } Some("core::fmt::Formatter::pad_formatted_parts::hba4ee7ec573a5615") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4730 } Some(" as core::ops::deref::Deref>::deref::h76ff9d431987813c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4731 } Some(" as core::ops::deref::Deref>::deref::hd2aa8971426db1cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4732 } Some(" as core::ops::deref::DerefMut>::deref_mut::h2a0df1bd6080a45d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 544 } Some("serde_json::de::Deserializer::ignore_integer::h6e24206dbb8a54ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4733 } Some(" as core::ops::deref::DerefMut>::deref_mut::h5dca11eda0ac2e62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7634 } Some("links_notation::parser::line::{{closure}}::hd553324f9fa81b16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7134 } Some("core::slice::sort::unstable::quicksort::partition::h715f4a4a7f21502c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7636 } Some("links_notation::parser::links::{{closure}}::hdd634cf9d59cb21a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1576 } Some("wasm_bindgen_test::__rt::node::_::__wasm_bindgen_generated___wbgtest_coverage_path::{{closure}}::h16ad9b9c81ec5f0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5013 } Some("serde_json::de::Deserializer::ignore_integer::hf858f72fe376be49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5431 } Some("alloc::collections::btree::node::NodeRef::deallocate_and_ascend::he5fe5d1ad322a403") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5105 } Some("core::slice::sort::shared::smallsort::sort4_stable::hd27ace3963685dcf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5507 } Some("::spec_to_string::h514bcb86c876b194") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4734 } Some(" as core::ops::deref::DerefMut>::deref_mut::he23e7d6e4c5b9e4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7638 } Some("links_notation::parser::any_link::{{closure}}::h1ed83b9de213896d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4772 } Some("::deref::h0d03a87873b84e5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7639 } Some("links_notation::parser::any_link::{{closure}}::h6cf92ce03c6528b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4804 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_none::hca7a2d61aef7f375") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4825 } Some("serde_json::ser::Serializer::new::hcc2f024f46fc94f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7640 } Some("links_notation::parser::any_link::{{closure}}::h975fb77b911ed9c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4901 } Some("core::fmt::rt::Argument::new_display::h0a7295d0f859731d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7747 } Some(" as nom::internal::Parser>::process::{{closure}}::h548e894f689cb0a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4902 } Some("core::fmt::rt::Argument::new_debug::h2504c43293c5fd7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7917 } Some("core::ops::function::FnMut::call_mut::h3057cb5bee957bea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7918 } Some("core::ops::function::FnMut::call_mut::h5a4007d4c4aab2a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7919 } Some("core::ops::function::FnMut::call_mut::h6cc2b78cd19facbc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7920 } Some("core::ops::function::FnMut::call_mut::h7e9000bcb69bc3e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7922 } Some("core::ops::function::FnMut::call_mut::hacebb19b55d9e095") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 593 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h3a933d15dbd4dd8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7923 } Some("core::ops::function::FnMut::call_mut::hbc74d5907a340117") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7925 } Some("core::ops::function::FnMut::call_mut::hcc1fc5db3e59fec5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7926 } Some("core::ops::function::FnMut::call_mut::hde63d0bc9125dbf2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7928 } Some("core::ops::function::FnMut::call_mut::he6e4684a9730fa4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7929 } Some("core::ops::function::FnMut::call_mut::hf5f8a30addacc5d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7930 } Some("core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}}::h409ecbe240e55547") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8071 } Some("core::iter::traits::iterator::Iterator::take_while::h8529d93058ce30d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5552 } Some(" as core::cmp::PartialEq>::eq::h1d77bf3ee08f0b03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6250 } Some("link_cli::query_processor::QueryProcessor::determine_operations::h2b09428c415481c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6619 } Some("::spec_to_string::h0e9f53c1f6a3d292") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7099 } Some("core::slice::sort::shared::smallsort::swap_if_less::hcaa80070d5cc52c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4903 } Some("core::fmt::rt::Argument::new_debug::h3becbd5226fdb5a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4904 } Some("core::fmt::rt::Argument::new_debug::h8965c568dc5f032d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 114 } Some("web::executes_lino_queries_with_the_rust_core::hfd92cfb19ebc2135") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4914 } Some("alloc::rc::Rc::from_raw::h6a2aaa665fc01084") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6650 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h0ca2b348d0ed97ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4926 } Some("::return_abi::h870758c64137d502") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7112 } Some("alloc::string::String::push_str::h868825bcd5665038") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4932 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::hf31a05842f542971") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4933 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::hf66151155ecc6904") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8036 } Some(" as core::ops::try_trait::Try>::branch::h1687eb8c84c532b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4934 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::hd49c2da268bcdb7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4935 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::hb0a6a8fc26c660ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7742 } Some("links_notation::flatten_link_recursive::{{closure}}::h6517c8ee494f377b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4948 } Some(" as core::ops::deref::DerefMut>::deref_mut::hbd314461b92d8dd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4949 } Some(" as core::ops::deref::DerefMut>::deref_mut::h1c123417a3d9b0ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9043 } Some("alloc::string::String::from_utf8_lossy::h782e772ad142467d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4950 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::h365471ec3132268d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8119 } Some("nom::bytes::take_while::{{closure}}::h71548dbb305c56f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4954 } Some("clink_wasm::BrowserStorage::format_change::{{closure}}::h58cf91b117d56ff2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8120 } Some("nom::bytes::take_while::{{closure}}::ha6d56c94ea6e97ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4956 } Some("clink_wasm::BrowserStorage::format_change::{{closure}}::hfb72b024f0e69385") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8121 } Some("nom::bytes::take_while::{{closure}}::hfea1adddd4d5068d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8038 } Some(" as core::ops::try_trait::Try>::branch::hcd9fb7bb46513c3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4993 } Some("::deserialize::h7fc15bbd74d3a9ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4994 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h475cd48548063bb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8348 } Some("alloc::string::String::push_str::h4de0548843d37f1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5000 } Some("serde_core::de::MapAccess::next_value::h82bfc5111bbd10d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5033 } Some("core::mem::drop::he505d5d72981c64a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5158 } Some("core::ptr::drop_in_place>::hec8b87e3769f5e50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4859 } Some("hashbrown::raw::TableLayout::calculate_layout_for::haa3f412fbc642990") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5163 } Some("core::ptr::drop_in_place>::h076c74891519e7eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5168 } Some(" as core::ops::drop::Drop>::drop::h88ecdd240be14fa7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8123 } Some("nom::bytes::take_while1::{{closure}}::h241bede1fc944011") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8491 } Some("alloc::string::String::push_str::hac08d9e59db22823") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4603 } Some(" as core::iter::traits::iterator::Iterator>::next::h16ee650ef37fff4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8513 } Some("::spec_to_string::h299ef802517423d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6544 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::h3cb9d085ad81c1dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8998 } Some("rustc_demangle::v0::Printer::print_backref::h8eaa2a287c7bc9d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8149 } Some("core::cmp::impls::::ne::he20b5faaf4736cc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8884 } Some("std::time::SystemTime::duration_since::hde049a137b32a14f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6858 } Some("hashbrown::raw::TableLayout::calculate_layout_for::h2115b24f81012ed8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7202 } Some("hashbrown::raw::TableLayout::calculate_layout_for::h5eef4df7e8de54cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7504 } Some("hashbrown::raw::TableLayout::calculate_layout_for::h045d5a79fa857628") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6746 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h324cdec38ea41e17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 586 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_str::h359098e7cb230088") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1543 } Some("js_sys::futures::future_to_promise::{{closure}}::{{closure}}::hfab39372a8f9edc7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9107 } Some("::write_str::hca0c70a1f76e04ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9136 } Some("core::num::bignum::Big32x40::mul_pow2::he540d63cbba9f9ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4533 } Some("link_cli::query_processor::QueryProcessor::resolve_patterns_readonly::h051fc4a985ad5c8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8150 } Some("core::cmp::impls:: for &A>::ne::h5965a756e0358289") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8428 } Some("::backward_unchecked::h6a6db0b5db78126b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8579 } Some("core::ptr::non_null::NonNull::new_unchecked::h568ef2e2ee69b78f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8907 } Some("<&T as core::fmt::Debug>::fmt::h3853064e96caba58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8955 } Some("::fmt::h84176c61e98a665a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9017 } Some("<&T as core::fmt::Debug>::fmt::h856608318541b96d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9133 } Some("core::num::from_ascii_radix_panic::h1ce0a06964ce8d15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 82 } Some("<&T as serde_json::value::index::Index>::index_into::hae68b6e8a4960e9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 215 } Some("core::panicking::assert_failed::hc3ac836df7630092") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 340 } Some("core::ptr::drop_in_place::{{closure}}>::h6d3604429b42d698") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 603 } Some("wasm_bindgen::convert::slices::>::none::h52c6b15451c5b084") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 700 } Some(">::deserialize::VecVisitor as serde_core::de::Visitor>::expecting::h9bfdd9e8388bd3b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 702 } Some(">::deserialize::MapVisitor as serde_core::de::Visitor>::expecting::hc519585ed4c59933") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 706 } Some("<&T as core::fmt::Display>::fmt::h0d333e7c315bf559") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 722 } Some("::write_char::h017850bb4b8bf351") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 773 } Some("serde_core::ser::Serializer::collect_seq::{{closure}}::h623fb8d79acdddc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 788 } Some("core::ops::function::FnOnce::call_once::hb4e6e34f5f878330") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1023 } Some(" as core::iter::traits::iterator::Iterator>::next::h7ccd1300019a9a55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1029 } Some("core::option::Option::take::h1981a7823cd5ddd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1130 } Some("::fmt::h5fd7af0a1dde5b50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1154 } Some("once_cell::unsync::OnceCell::get_or_init::h544573291e20b64e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1156 } Some("once_cell::unsync::OnceCell::get_or_init::h6be188f2c9500ff7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1192 } Some("wasm_bindgen_test::__rt::record::h5d84ffd3296df695") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1194 } Some("wasm_bindgen_test::__rt::record::ha7f7c21955d7e249") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1196 } Some("wasm_bindgen_test::__rt::record::hb1c90a35d327b906") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1198 } Some("wasm_bindgen_test::__rt::record::h00de3ff8d14d25e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1200 } Some("wasm_bindgen_test::__rt::record::hd15900ac5ce7627a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1207 } Some("wasm_bindgen_test::__rt::Timer::elapsed::h75e83eaee0944325") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1243 } Some("<&T as core::fmt::Display>::fmt::hd9994af013872dff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1452 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::hc913ec440b33ef8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1455 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::h1a10ec9ece609eca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1459 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::hf6c28e7d2f9c8087") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1460 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::hc65a0aa81cee610c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1463 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h27a182a1c2af7957") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1468 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h02e5d6d98d810d47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1492 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::h5f3c9b9936bc5734") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1496 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::hdb18db4fa1c208bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1497 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h9bc4dca83effa12e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1504 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::expecting::hcc421bbcdb2950d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1552 } Some(" as serde_core::de::Deserializer>::deserialize_any::h38b8672688c7298b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1553 } Some(" as serde_core::de::Deserializer>::deserialize_any::h5016d6445b9a8c2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1554 } Some(" as serde_core::de::Deserializer>::deserialize_any::h7d2a983fd9f89d45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1555 } Some(" as serde_core::de::Deserializer>::deserialize_any::h9d45f43cb5097755") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1556 } Some(" as serde_core::de::Deserializer>::deserialize_any::ha1701823d879b2e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1557 } Some(" as serde_core::de::Deserializer>::deserialize_any::hbfb65db641260b6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1558 } Some(" as serde_core::de::Deserializer>::deserialize_any::hfde9f1691d8b9941") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1608 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h6a478038287303bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3531 } Some("core::ops::function::FnOnce::call_once::h1ce308689b95efaa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3986 } Some("once_cell::unsync::OnceCell::get_or_init::h45bf3d3b3022d9d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3987 } Some("once_cell::unsync::OnceCell::get_or_init::he857f9877f90a319") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3989 } Some("once_cell::unsync::OnceCell::get_or_init::h92269e36492904c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3991 } Some("once_cell::unsync::OnceCell::get_or_init::h42ca89d7536d43d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4181 } Some("core::ops::control_flow::ControlFlow::Break::h3c09499a488dfffe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4313 } Some(" as core::iter::traits::iterator::Iterator>::next::hc2afae2ab75e3229") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4331 } Some("core::option::Option::take::h002d074b097ff417") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4561 } Some("::into_iter::h4fe991f62cb55c21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4562 } Some("::into_iter::h9357f91d1ed20f13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4587 } Some("core::iter::traits::iterator::Iterator::filter::h4e403ae3fec7b983") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4588 } Some("core::iter::traits::iterator::Iterator::filter::ha7acae17d4dbc3dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4589 } Some("core::iter::traits::iterator::Iterator::filter::hb9a416b937edca18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4638 } Some("::into_iter::h2f47c76ef0fcfeeb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4641 } Some("::into_iter::h96ac9e3ede3e8cc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4773 } Some("::write_char::h2e391af3a082de56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4847 } Some("serde_core::ser::Serializer::collect_seq::{{closure}}::h847f4668cad35003") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4906 } Some("::fmt::h38a3fa31999e33a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5052 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h801af3e5de347c0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5264 } Some("serde_core::ser::impls::::serialize::haa4e7a93817e8aa9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5265 } Some("::slice_contains::{{closure}}::h2ddeed3fa9f99a59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5306 } Some("::fmt::hc9b2664a4ffa1bc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5307 } Some("::write_char::h5f144d7d102a12e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5363 } Some("<&T as core::fmt::Debug>::fmt::h4c4cac5b636a9f34") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5378 } Some("::write_char::hdc28ee48af878aad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5499 } Some("core::num::::from_str::he1a737cff1fc5f21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5505 } Some("<&T as core::fmt::Display>::fmt::hae4fad71cab77dde") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5540 } Some("::fmt::hdce0e83eb8b1c5b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5641 } Some("<&T as core::fmt::Display>::fmt::h44ab5a1e9dad7e23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5659 } Some("core::ptr::drop_in_place,serde_json::error::Error>>::h7e0da7fd675616af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5682 } Some("core::ptr::drop_in_place>::hd96ebff5ef81ea07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5704 } Some("::into_iter::h2d0f2d2dacf530c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5724 } Some("<&T as core::fmt::Debug>::fmt::he342d9dedec5477c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5743 } Some("memchr::memchr::memchr_iter::hf1b4af5c402ae8be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5787 } Some("<&T as core::fmt::Debug>::fmt::hc0b7b937656f9f25") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5788 } Some("<() as core::fmt::Debug>::fmt::hccc3955855671a75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5834 } Some("zmij::FloatTraits::get_sig::h605ad82b8c614184") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5905 } Some("core::result::Result::is_err::heaa0bf067a7d670d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5908 } Some("<&T as core::fmt::Debug>::fmt::h739913a965f705eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6092 } Some("alloc::vec::Vec::from_raw_parts::h3631a9beef475aa8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6094 } Some("alloc::vec::Vec::from_raw_parts::he1abb56436463b5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6174 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::expecting::h9027b1eb319ad06f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6175 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::expecting::hd16b28255cfa1fbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6176 } Some("<&T as core::fmt::Display>::fmt::h000dbe076fbfd144") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6240 } Some("::expecting::h7cf4ff78a2b859af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6241 } Some("::expecting::h3aa9e2a5049fcdf2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6243 } Some("::expecting::h7b33eaa9abc357e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6539 } Some(">::equivalent::ha2b9c8ec7b63f3f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6569 } Some("hashbrown::map::equivalent_key::{{closure}}::h296555395b916dd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6570 } Some("hashbrown::map::equivalent_key::{{closure}}::h2c001384282ae858") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6572 } Some("hashbrown::map::equivalent_key::{{closure}}::h40a58fc797a8839d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6573 } Some("hashbrown::map::equivalent_key::{{closure}}::h728f58bcfd9c86ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6574 } Some("hashbrown::map::equivalent_key::{{closure}}::h7d1fd8cedbf60c7a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6575 } Some("hashbrown::map::equivalent_key::{{closure}}::ha4e652985a9146a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6576 } Some("hashbrown::map::equivalent_key::{{closure}}::hd443d91d256b8969") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6577 } Some("hashbrown::map::equivalent_key::{{closure}}::hf923c57066009602") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6605 } Some(">::equivalent::h14b15faaaf23fc0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6704 } Some("::fmt::h265519353188b168") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6866 } Some("hashbrown::rustc_entry::>::rustc_entry::{{closure}}::h8d2da117e4f55ce4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6867 } Some("hashbrown::rustc_entry::>::rustc_entry::{{closure}}::hff2f6e146334988a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7006 } Some(" as core::fmt::Debug>::fmt::h23e20e3891a9afac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7109 } Some("::write_char::h584f512bddee263a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7116 } Some("<&T as core::fmt::Display>::fmt::hcf769a793a0fc447") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7148 } Some("core::num::::from_str::he65feb50138190ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9116 } Some("core::fmt::builders::DebugSet::entry::h614b20745ed38459") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8706 } Some("anyhow::fmt::::display::h1de6ea4b277d4045") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 579 } Some(" as serde_core::de::SeqAccess>::next_element_seed::has_next_element::h08606816f607d2fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8315 } Some("nom::internal::Parser::parse::hfe55edfcd4934998") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5419 } Some(" as serde_core::de::SeqAccess>::next_element_seed::has_next_element::h6e8de8dc03086d0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5452 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split::h65ac36190aa8956b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5751 } Some(" as core::fmt::Debug>::fmt::h92b3a0819c725c2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1242 } Some("::poll::h8fba44b6067ab807") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 477 } Some("serde_core::de::MapAccess::next_entry_seed::h2ff14f533be416e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9189 } Some("compiler_builtins::math::libm_math::support::modular::linear_mul_reduction::hc9e9016b89de2915") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9070 } Some("::fmt::h33079d1ee4561b89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1113 } Some("core::fmt::Arguments::as_statically_known_str::h158e4c08b7acad33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 122 } Some("wasm_bindgen_test::__rt::__wbg_test_invoke::h404d9a87d3058356") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1760 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h8e391ebc23ee7a49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 123 } Some("wasm_bindgen_test::__rt::__wbg_test_invoke::h5ee5f0f1a4e4792d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4380 } Some("core::slice::sort::stable::quicksort::PartitionState::partition_one::h27a5ec01eb73cf24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4388 } Some("core::slice::sort::stable::quicksort::PartitionState::partition_one::hab7a3588d3d31fac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 124 } Some("wasm_bindgen_test::__rt::__wbg_test_invoke::h7740295322390f32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5301 } Some("core::fmt::Arguments::as_statically_known_str::h7bcfaac57139cb2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7644 } Some(">::process::h01a0d55b1de4e618") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5170 } Some("core::ptr::drop_in_place>>::h81fabe1f4442453c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5173 } Some(" as core::ops::drop::Drop>::drop::h4f49ef4bb76cd7fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7645 } Some(">::process::h020146b9ccb403f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5511 } Some("core::fmt::Arguments::as_statically_known_str::ha1a38cae86704b02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4974 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::h5b31b8a08a9c7617") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7646 } Some(">::process::h18e3cfd332c55a11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7213 } Some("<&T as core::fmt::Display>::fmt::h21a286f7c649f2e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 125 } Some("wasm_bindgen_test::__rt::__wbg_test_invoke::hb4b01378c9a411f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7650 } Some(">::process::h4abddb91494dd14b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5179 } Some("core::ptr::drop_in_place,core::option::Option)>>::h807ebb9f846b162f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7655 } Some(">::process::h691a576c67d81326") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5183 } Some(" as core::ops::drop::Drop>::drop::hc50440c0b7e0a6b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5188 } Some(" as core::ops::drop::Drop>::drop::h32b013955f93a357") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5208 } Some("core::ptr::drop_in_place>::hb83d60281342b6b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7656 } Some(">::process::h6a75223f1502076b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5216 } Some("core::ptr::drop_in_place>::hcd6148f1943b97fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5217 } Some("core::ptr::drop_in_place>::ha8e08fbf847822bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7214 } Some("<&T as core::fmt::Display>::fmt::hb74e9ade0f9123dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7215 } Some("<&T as core::fmt::Display>::fmt::hf12b8bb684a17020") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5043 } Some("clink_wasm::Clink::execute_inner::h4aed46d5e6e0279e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7273 } Some("<&T as core::fmt::Display>::fmt::h3237c85b166b4423") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7658 } Some(">::process::h7d4d117831ee6cab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 513 } Some(" as serde_core::de::SeqAccess>::next_element_seed::heeb41931d29b0d4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7671 } Some(">::process::hf37efbc3bf79fce0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5221 } Some(" as core::ops::drop::Drop>::drop::hb45b46d056d23afe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5225 } Some("core::ptr::drop_in_place>::h4c79bd122fef490c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7672 } Some(">::process::hf45ca4ba7b43021d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5234 } Some("core::ptr::drop_in_place>::h06aae851315352c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5236 } Some(" as core::ops::drop::Drop>::drop::ha50dcd26af22ab0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7281 } Some(">::equivalent::had90d544760e2cda") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5238 } Some(" as core::ops::drop::Drop>::drop::he7f9417ba34c30b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7456 } Some("<&T as core::fmt::Debug>::fmt::h8bab8dce5ffe977d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5270 } Some("wasm_bindgen::convert::impls::::from_abi::h53d3060e8ea6ba74") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7485 } Some("<&T as core::fmt::Debug>::fmt::ha14260d4749c5751") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7558 } Some("<&T as core::fmt::Debug>::fmt::hade1bd39893fccd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5280 } Some("::deref::h0d9af548af2e0d60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7565 } Some("links_notation::parser::whitespace::h34a9e58332969962") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5287 } Some("console_error_panic_hook::_::::into_abi::h9d32255a66573c1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7568 } Some("links_notation::parser::ParserState::check_indentation::h3a2894c6f31875d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7593 } Some("links_notation::parser::count_indentation::{{closure}}::h60fd277be1b29342") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5325 } Some("::deref::hc0a9d182e1af075e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7614 } Some("links_notation::parser::horizontal_whitespace::h9e151ed328028432") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7641 } Some("links_notation::parser::reference::hae87ff979a90bff3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7749 } Some(" as nom::internal::Parser>::process::{{closure}}::h82929f63d0967e03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7762 } Some("<&T as core::fmt::Debug>::fmt::ha6832475863db25e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4281 } Some("link_cli::link_reference_validator::LinkReferenceValidator::auto_create_missing_references::h05010ee0e913d3e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7893 } Some("nom::internal::Parser::parse::h22fee71aebcbdebd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5618 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::hc71457928a981363") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9056 } Some("core::fmt::write::h31474238f266a14a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5913 } Some("core::fmt::Arguments::as_statically_known_str::h8822f55a104e9b89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 296 } Some("test::formatters::pretty::PrettyFormatter::write_results::h6ba3cbd3c6cae0fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6140 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h0311c89158ac1659") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6142 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::hcd5fd7964709de96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 410 } Some("test::cli::get_test_threads::h1aeeaa0e248cb364") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 298 } Some("test::formatters::pretty::PrettyFormatter::write_results::he0204f4a4e67254e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5456 } Some("alloc::collections::btree::search::>::find_key_index::hc60c00bde298438a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9124 } Some("core::fmt::Formatter::write_formatted_parts::h6b7de073ecd0899c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5050 } Some("clink_wasm::Clink::execute::hc5537a11c8f4c340") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1461 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::hfd63cc06a3744b61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5598 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_seq::h9f93d92b3dc7cf6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7382 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h51f626397daa14ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6191 } Some("core::fmt::Arguments::as_statically_known_str::ha1ce864074d8ee17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4509 } Some("link_cli::query_processor::QueryProcessor::ensure_link_created::ha49ce4f4910d60ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7899 } Some("nom::internal::Parser::parse::he0d5fcebe9cc719f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6702 } Some("core::fmt::Arguments::as_statically_known_str::h655b50b771ee77bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7217 } Some("core::fmt::Arguments::as_statically_known_str::hc37b3d7fedece9a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8082 } Some("core::option::Option::is_none::h4bf1fd50997bfd5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8988 } Some("rustc_demangle::v0::Printer::print_path::hb124c76c93b75813") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8124 } Some("<&T as core::fmt::Debug>::fmt::h99ce4b1cc8015ce1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8173 } Some(" as nom::internal::Parser>::process::{{closure}}::ha3119a72bb196c9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1758 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::hdaec316821775b1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8175 } Some(" as nom::internal::Parser>::process::{{closure}}::h8160d1bd34bc2d5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8177 } Some(" as nom::internal::Parser>::process::{{closure}}::h95581a9c79792657") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8179 } Some(" as nom::internal::Parser>::process::{{closure}}::hc80ba1fa71a8d681") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9102 } Some("core::num::flt2dec::strategy::grisu::format_shortest_opt::hfcab0953839aa679") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8222 } Some("nom::error::ParseError::from_char::hafb0ee7e70e03048") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8225 } Some("<&T as core::fmt::Debug>::fmt::h7dade2cb4f8811b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8227 } Some("<&T as core::fmt::Debug>::fmt::hdf078fb9f7478e00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5344 } Some("serde_json::de::Deserializer::eat_char::h8f1341dc3c9b15ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8321 } Some("<&T as core::fmt::Display>::fmt::h472980c93c2cd95e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5366 } Some("core::cmp::impls::::eq::h6506ee28c0fccc21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8345 } Some("::write_char::h863c7362f3359da7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5616 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h94414af84ac7d091") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5382 } Some("alloc::str:: for alloc::string::String>::borrow::h0c13905a356e1df8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1349 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_map::hb625c13f5bc8d2d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7289 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h48d9ec7873393ee9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8426 } Some("<&T as core::fmt::Debug>::fmt::hee7a42c6a72ecab6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8488 } Some("::write_char::hc51e0f50feea5fc7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1352 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_seq::h49c9631b9f1b7e8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8605 } Some("::into_iter::h237f4187782ef1b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8607 } Some("::into_iter::hbaee37851c34e80d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1671 } Some("core::ptr::copy_nonoverlapping::precondition_check::hef7ac46cd6092d53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8642 } Some("::spec_advance_by::{{closure}}::hcbc0381c01c00e58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8688 } Some("::fmt::hf74d24b6cd78668b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1723 } Some("core::ptr::copy_nonoverlapping::precondition_check::h234e9cd74e5337ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8707 } Some("anyhow::error::ErrorImpl::chain::h79ffa9fdac1842d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8726 } Some("anyhow::error::ErrorImpl::backtrace::{{closure}}::h1944dcb5cd36b745") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8727 } Some(" as core::fmt::Debug>::fmt::h194afe56554e3cc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8728 } Some(" as core::fmt::Debug>::fmt::hb2d0fdef9057d2a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8458 } Some("memchr::arch::all::memchr::One::rfind_raw::h9b6ced4afcc2b7bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8763 } Some("core::iter::traits::iterator::Iterator::skip::h5f4f808ef557b926") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8803 } Some("anyhow::error::::fmt::h95edd57edf2374e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8853 } Some("core::panicking::assert_failed::ha546c957c0b066a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8966 } Some("::fmt::he70713942f8152e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9122 } Some("core::fmt::Formatter::pad_integral::write_prefix::hca46ac35d6da67d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9129 } Some("core::panicking::assert_failed::h20e95b5c65f6c45e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5024 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h1bb9b48ec1222e93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9139 } Some("core::panicking::assert_failed::hf8fb5ffa21de4803") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9169 } Some("core::panicking::assert_failed::h38bd6ad440558afd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6138 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h93b557d7811b1869") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6165 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::heb12c901cb0073db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7383 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::hecadc3402e190a04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3360 } Some("core::ptr::copy_nonoverlapping::precondition_check::h9e4e5abb156e868f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7535 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h0eb1c6edd6fbb506") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4358 } Some("core::ptr::copy_nonoverlapping::precondition_check::h61f18acc3793b50d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7757 } Some("<(P1,P2,P3,P4,P5) as nom::internal::Parser>::process::{{closure}}::h6bd813e55f63d456") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5784 } Some("::fmt::h405c8f21d15b130d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8151 } Some("core::fmt::Arguments::as_statically_known_str::h16c5fae1c5195603") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8415 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h23afd152aba6b6e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8655 } Some("core::fmt::Arguments::as_statically_known_str::h6e68d1fa839b0750") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7564 } Some("links_notation::parser::element::h7c25b5e73b0a4e68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8793 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h491fd319fa3fcea0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7288 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h7725537d318399c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4792 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_map::h72977bcd8e4bbb02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5390 } Some("alloc::vec::Vec::push::h560ee4cd098c8737") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1672 } Some("core::ptr::copy::precondition_check::h8b8d54c7b9fbed86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5410 } Some(" as core::ops::deref::Deref>::deref::h08c907ec18752b32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3362 } Some("core::ptr::copy::precondition_check::h518b4f4818f03364") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5469 } Some("core::f64::::is_finite::h25709f2d53fc9bac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5488 } Some("::haystack::h87e554ff9dd8d5f0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7426 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h0fb25d4177e3effc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9188 } Some("__udivti3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5621 } Some("::ignore_str::h3fa98a765c730c4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9193 } Some("__umodti3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5631 } Some(" as core::ops::drop::Drop>::drop::h6a7f4af62285a4f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 91 } Some("core::pin::Pin<&mut T>::map_unchecked_mut::h2f5c60d6ad204005") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5644 } Some("core::fmt::rt::Argument::new_display::h1535cf6f88be4783") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 92 } Some("core::pin::Pin<&mut T>::map_unchecked_mut::h7acb876931902d04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 93 } Some("core::pin::Pin<&mut T>::map_unchecked_mut::hb897ce7dc9bb2aa5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5645 } Some("core::fmt::rt::Argument::new_display::h20786e0df8476629") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 94 } Some("core::pin::Pin<&mut T>::map_unchecked_mut::hc5149293b017364d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 610 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h6b9d2c170b42a558") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 381 } Some("core::slice::sort::stable::drift::sort::hfe072eddb767f226") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5678 } Some("core::ptr::copy::precondition_check::hafc31346e5a7fb2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5825 } Some("core::ptr::copy::precondition_check::h5a19fa97348b63b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 632 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::ha8f27aeedddeb476") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7534 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h6091e9c04029513e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5781 } Some("::fmt::hb138d60d89d926af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4795 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_seq::he3ea699633f654b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7061 } Some("core::ptr::copy::precondition_check::hdf56f65ee4e194b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4862 } Some(" as core::clone::Clone>::clone::h8bfb7abc5045362b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8560 } Some("core::ptr::copy::precondition_check::he03be8f5d4d574df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 708 } Some("::fmt::h49b400f533ba6c79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5664 } Some("core::ptr::copy_nonoverlapping::precondition_check::h96afbfbb9a72ff65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 709 } Some("::fmt::hbe1d7592df97a764") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 710 } Some("::fmt::hde89a8378616bc9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 711 } Some("::fmt::hf365724db3185b40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5822 } Some("core::ptr::copy_nonoverlapping::precondition_check::h9295aca8903f9daa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 767 } Some(" as serde_core::de::Visitor>::visit_some::h9c13c3bf2e3b0206") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8421 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h9c38f0915f5cbaf6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5646 } Some("core::fmt::rt::Argument::new_display::h684ac5eb4ca3825b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8972 } Some("::take_box::ha4d04ad03cee361a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5647 } Some("core::fmt::rt::Argument::new_display::hc2132136e6b696df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9108 } Some("core::fmt::builders::DebugTuple::field::h4ef3f86bd8c9c781") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5648 } Some("core::fmt::rt::Argument::new_display::hccf5f10db6f9d152") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3870 } Some("wasm_bindgen::convert::closures::_::invoke::h26d866483af54c75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5649 } Some("core::fmt::rt::Argument::new_debug::h8aea31f7cee0ca5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 853 } Some("core::ptr::drop_in_place>::hba05d7164d62f7ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5650 } Some("core::fmt::rt::Argument::new_debug::h902da0130080d8ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1450 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::is_set::h17f42f9373580a82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1472 } Some("::fmt::h6b8c9d1b4d2dc69e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5667 } Some("core::ptr::drop_in_place>::hbd4a5cb7b398b85b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5674 } Some("core::ptr::drop_in_place>::h54d56ecd661cfbc6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5799 } Some("::to_bits::h88b815c027686704") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8792 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h673227a54836c060") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5814 } Some("core::cmp::impls::::eq::h2ae644513d0741d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5815 } Some("core::cmp::impls::::eq::h33011defa429d4e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4628 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::hb4a8e1bb90a447fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5816 } Some("core::cmp::impls::::ne::h5de632e2d7731f6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5861 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::hf3ece4c69ed7251e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1473 } Some("::fmt::h7d2d6b579fe91540") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1474 } Some("::fmt::he6fc2c3d95d4f86c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5921 } Some("core::ptr::copy_nonoverlapping::precondition_check::h2143b0d69d86850f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1505 } Some("::fmt::h4becc362c7fc6379") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1506 } Some("::fmt::h6678edabf1b849b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1616 } Some("::fmt::hd63ede82badfc5e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1953 } Some("js_sys::global::get_global_object::{{closure}}::h4ba9f8783491532d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1954 } Some("js_sys::global::get_global_object::{{closure}}::h676bd037d8a138fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6110 } Some("core::ptr::copy_nonoverlapping::precondition_check::h41bfff32362d865b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1955 } Some("js_sys::global::get_global_object::{{closure}}::hfb1e5fc192025e8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9005 } Some("rustc_demangle::v0::Printer::print_quoted_escaped_chars::h85a9f6612023728d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6147 } Some("core::ptr::copy_nonoverlapping::precondition_check::hdcdd25877d922086") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4630 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::he4a7320b7038eee0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6857 } Some(" as core::iter::adapters::step_by::SpecRangeSetup>>::setup::he0c468339857c889") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5839 } Some("zmij::compute_dec_exp::ha317e4a5a981e8e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7028 } Some("core::iter::adapters::chain::and_then_or_clear::h56e2cba20c92bbe8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6761 } Some("alloc::vec::Vec::extend_trusted::h31b72b29fe1324a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3425 } Some("js_sys:: for alloc::string::String>::from::he6fe9537a389e15c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5590 } Some("serde_json::read::SliceRead::position_of_index::hadcacf3b465ec036") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7057 } Some("core::ptr::copy_nonoverlapping::precondition_check::hae298043ae1fa3db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3530 } Some(" as core::ops::function::FnOnce<()>>::call_once::h6149e3e4d9cfe365") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7231 } Some("core::ptr::copy_nonoverlapping::precondition_check::hfb0137b569ffa65a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3586 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h86b675813594ec27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3677 } Some("core::ptr::drop_in_place::hdbb671a3c31276a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3952 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hed5bde5e6a9d154d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7695 } Some("alloc::vec::Vec::extend_trusted::h3f0441f410656789") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7699 } Some("alloc::vec::Vec::extend_trusted::h556d081545da7cc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7092 } Some("link_cli::parser::Parser::convert_link::hf53bc7f738ea536d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8994 } Some("rustc_demangle::v0::Printer::print_const::h7532dfd944e4a886") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 525 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h1f30194c16aedcfd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4212 } Some("::fmt::h5b2d48a72749ee4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1140 } Some("js_sys::Array::for_each::h0e5a96a41a7b9fbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1437 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h1615d0fa1c3a9183") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 592 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h2491c2eca568d665") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4291 } Some("core::iter::traits::iterator::Iterator::try_fold::h7cb80bc634779ebb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7396 } Some("core::ptr::copy_nonoverlapping::precondition_check::ha296130091308c63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4595 } Some("alloc::vec::into_iter::IntoIter::as_slice::h62ecd2ef2aef2cef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4596 } Some("alloc::vec::into_iter::IntoIter::as_slice::h68c7d5d0de3a8e13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4597 } Some("alloc::vec::into_iter::IntoIter::as_slice::hba44a1c3fcb71423") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6522 } Some("alloc::vec::into_iter::IntoIter::as_slice::h84d394c74d116dd0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6585 } Some("hashbrown::map::HashMap::get::h44d22f63825a6121") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 383 } Some("core::slice::sort::stable::drift::sort::hc313045630e5b885") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6586 } Some("hashbrown::map::HashMap::get::h6030ef68646264c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4213 } Some("::fmt::hb53b86d2bd13a6dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4271 } Some("link_cli::link_reference_validator::LinkReferenceValidator::auto_create_missing_references::{{closure}}::h38b895c7917fb06e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4306 } Some("link_cli::named_type_links::NamedTypeLinks::format_reference::{{closure}}::h445d05c59d892513") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7513 } Some("core::ptr::copy_nonoverlapping::precondition_check::hbe466e0e46b4fa51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4658 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hc18cc56855d09f47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4666 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hf2c3503e1056e26b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4696 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::hbf56813826fd70f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8050 } Some("core::ptr::copy_nonoverlapping::precondition_check::he75f23a2e361a5b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 726 } Some("alloc::collections::btree::map::entry::VacantEntry::insert_entry::hf5000b9dd68447f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8384 } Some("core::ptr::copy_nonoverlapping::precondition_check::hd184143b14c22c2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4739 } Some(" as core::iter::traits::collect::Extend>::extend::h1e9827a9a3c151b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4741 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h39176618a0f6f422") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4742 } Some(" as core::iter::traits::collect::Extend>::extend::h87b7e47e4b8e654d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8432 } Some("core::ptr::copy_nonoverlapping::precondition_check::h9add572a8da2f1c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4991 } Some("link_cli::named_type_links::NamedTypeLinks::get_or_create_named::he7538eb22b4ad2a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4744 } Some(" as core::iter::traits::collect::Extend>::extend::h92a46b2c990233aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4745 } Some(" as core::iter::traits::collect::Extend>::extend::hb89f95f5ea1bbc3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4747 } Some(" as core::iter::traits::collect::Extend>::extend::hc77b7ffe4f1f715f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4748 } Some(" as core::iter::traits::collect::Extend>::extend::hef3e0c12e591354a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 595 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::hba44703e2f7bfefa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6587 } Some("hashbrown::map::HashMap::get::h94d2eba92d2f921e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5863 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h35b0d9f977c8f4bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6588 } Some("hashbrown::map::HashMap::get::h9fa2260e08fab1b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4780 } Some("::eq::h3799a6effcfeccc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4894 } Some("std::collections::hash::set::HashSet::contains::he40eb002813aca78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4945 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::h5afa00413d2f793e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4977 } Some("::fmt::h3a349c977cd97c31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5865 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h969f40d27534aaf9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5765 } Some("alloc::collections::btree::map::entry::VacantEntry::insert_entry::hedca99698b532be0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9178 } Some("::fmt::fmt_decimal::h281f0599bd43151f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 311 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::heda68daddb95ec04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 944 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h2916745679881734") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6750 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h819b1a06d520064a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4444 } Some("core::slice::sort::stable::drift::sort::h0dd73c4f06ba9f86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 377 } Some("core::slice::sort::shared::smallsort::sort4_stable::h1ea4bb869a783527") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4667 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::hbd80cb50140976eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5067 } Some("::get_link::h8700ebe6e5a01155") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4445 } Some("core::slice::sort::stable::drift::sort::h26c0d9b03ee63ee7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5154 } Some("core::ops::function::FnOnce::call_once::h5598a4739371199a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5201 } Some("core::ptr::drop_in_place::hcc369d73f07e7ec8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5207 } Some("core::ptr::drop_in_place::h4970f3b4cf1703b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5210 } Some("core::ptr::drop_in_place::h8ced68719f00766d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5504 } Some(" as core::fmt::Debug>::fmt::h1bdaf6f2ad8b4f1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4446 } Some("core::slice::sort::stable::drift::sort::h4b179d601c319311") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5022 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_bool::he98234c8f9f90698") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7029 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h5c1b5cdb63050380") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8501 } Some(" as core::ops::drop::Drop>::drop::he245c831ba5a258b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4447 } Some("core::slice::sort::stable::drift::sort::h50fac430603d0ca3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 388 } Some("::next_match::hec4fe28072ff4c9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6589 } Some("hashbrown::map::HashMap::get::hf876592c7a43a5ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8542 } Some("core::ptr::copy_nonoverlapping::precondition_check::h82c7652485f57e00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6894 } Some("hashbrown::raw::RawTable::remove::h20068e8894b1fbab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5629 } Some("::parse_str::hf411cdc91c4b7bbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5630 } Some("::parse_str::hcd794cbcf5e88f98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9066 } Some("<&T as core::fmt::Debug>::fmt::h862d5dab41016e4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5656 } Some("core::ptr::drop_in_place>>::had6eb891e28b0a9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5726 } Some("::fmt::hc66813962a63bb29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5818 } Some("core::ops::range::RangeInclusive::contains::heceaae77a0d3ab4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1013 } Some("wasm_bindgen_test::__rt::Formatter::log_test::h7122374db7e4dd17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5939 } Some("alloc::alloc::dealloc::h44356dec35da34bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6271 } Some(" as core::iter::traits::iterator::Iterator>::fold::h1e2246f6e368ca33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1015 } Some("wasm_bindgen_test::__rt::Formatter::log_test::hd958993a5d987fa4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6272 } Some(" as core::iter::traits::iterator::Iterator>::fold::hcb2226c2483d26ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6275 } Some(" as core::iter::traits::iterator::Iterator>::fold::h8ec117c84184c6e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6276 } Some(" as core::iter::traits::iterator::Iterator>::fold::h991f2f25a2a669e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6296 } Some("core::iter::traits::iterator::Iterator::for_each::h46d2298d6ed71092") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6299 } Some("core::iter::traits::iterator::Iterator::for_each::hecff574276fe0f1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6334 } Some("std::collections::hash::set::HashSet::contains::h38bc0a9c38a71fb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6416 } Some("core::ops::function::FnOnce::call_once::h446278389b39ebcc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6657 } Some("std::collections::hash::map::HashMap::contains_key::h9a809953aa54a4cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6658 } Some("std::collections::hash::map::HashMap::contains_key::hada9fe055785c726") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6745 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h93494bae04dd85b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6810 } Some(" as core::iter::traits::collect::Extend>::extend::h05bce8de171e25c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6812 } Some(" as core::iter::traits::collect::Extend>::extend::h41f1f5e443826d17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6814 } Some(" as core::iter::traits::collect::Extend>::extend::h5c736ad4f09649f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7168 } Some("core::ops::function::FnOnce::call_once::hdd5b59e22015bd07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7225 } Some("core::ptr::drop_in_place>>::h32ebe01aa54e4798") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7270 } Some("::write_str::h657c0356ba28ece7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7282 } Some("::eq::h7bb7ab61deb31aec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7307 } Some("core::hash::impls::::hash::he87fa6cdf67d4042") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7354 } Some("core::hash::impls::::hash::h568c5a286ea489d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7355 } Some("::write_str::h5cfcf9e81eed84b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7392 } Some("core::ptr::drop_in_place>>::h9cdf10134ac1c12f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7455 } Some("::fmt::h988f2a396d6c79e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7498 } Some("::write::hbd38b3fe636ef450") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7586 } Some("links_notation::parser::simple_reference::{{closure}}::h0515341a9a41262f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7627 } Some("links_notation::parser::parse_dynamic_quote_string::{{closure}}::h5467187cb4b763bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7682 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h9603e95179c65adb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7686 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h2601c392c496b49f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7702 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::hceb8bd6371dfb0a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7728 } Some(" as core::iter::traits::collect::Extend>::extend::h2c6d5bad931ce5c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7891 } Some("core::ptr::drop_in_place::h6f161822205da37f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7914 } Some("core::ops::function::Fn::call::h6b0715d3edc4bd48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7915 } Some("core::ops::function::Fn::call::h6ea4154f60b73515") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7916 } Some("core::ops::function::Fn::call::h8d63d24d66a1550e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7924 } Some("core::ops::function::FnMut::call_mut::hbd89c34959756938") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8088 } Some("::as_utf8_pattern::h06f89f2071d7b019") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8172 } Some("::matches::h0e8a6e38d52988ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8174 } Some("::matches::h3e4d02ab26ec8ad8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8176 } Some("::matches::h8a9d82d28214bef2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8178 } Some("::matches::ha804385dc7505d71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8180 } Some("::matches::hf8cdb4eb59e3f310") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8182 } Some("::slice_contains::{{closure}}::h624dcb31902bef20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8245 } Some("core::iter::adapters::map::map_fold::{{closure}}::h7b95a45f76b070fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8486 } Some("::matches::he1e7529838e1e44f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8526 } Some("core::ops::function::FnMut::call_mut::he2a702f9b37fcf13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8549 } Some("core::ptr::drop_in_place::h2395f473e31e58b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8596 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::ha120c8f10a4f17a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8734 } Some(" as core::fmt::Debug>::fmt::he1621ab26c79b8d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8735 } Some(" as core::fmt::Debug>::fmt::hfbff2a35c2ba9f0d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8736 } Some(" as core::fmt::Display>::fmt::h757ba2b409de912c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8737 } Some(" as core::fmt::Display>::fmt::h7c0db0f9d534c5c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9031 } Some("::fmt::he65c5ade22a81ffd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 184 } Some("core::ops::function::FnOnce::call_once::heedb9c9d5180ef7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 186 } Some("core::ptr::drop_in_place>::hb391415ce5aa6b77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 679 } Some("serde_core::ser::impls::::serialize::hc3be7cf92a205e60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 681 } Some("serde_core::ser::impls::::serialize::h3a4012e3861b609a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 682 } Some("serde_core::ser::impls::::serialize::hb3f72cedb246f47b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 807 } Some("core::ptr::drop_in_place>::hdad8154814bb052f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 814 } Some("core::ptr::drop_in_place>::h6749e0364b8b5bc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 821 } Some("core::ptr::drop_in_place>::he691b7d1a47f9d99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 840 } Some("core::ptr::drop_in_place>>>::hebd9fd19930bd385") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 843 } Some("core::ptr::drop_in_place>>>::h26623b3b871f052c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 886 } Some("core::ptr::drop_in_place>::h49bc9a8094bc2b32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1033 } Some("core::option::Option::is_some::h05d4d2df688f702e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1034 } Some("core::option::Option::is_some::h3f282880a7f56f1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1038 } Some("core::option::Option::is_some::hd0feb31ff7856026") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1039 } Some("core::option::Option::is_some::he11b2098fc935e8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1040 } Some("core::option::Option::is_some::hf16ed3d2fb7b6b1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1126 } Some("core::fmt::Arguments::from_str::hcd2a86b87b9e0728") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1549 } Some("serde_core::ser::impls::::serialize::h55a05e724f0c2849") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1600 } Some("::writeln::h0a40e1e06a3282e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1699 } Some("core::option::Option::is_some::h845f88bb974db555") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1767 } Some(">::from::h160b4ab42b5120e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3358 } Some("core::fmt::Arguments::from_str::h597a73cfdf9ea720") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3424 } Some("js_sys:: for alloc::string::String>::from::h207e1e80c5cc69b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3639 } Some("core::ptr::drop_in_place>::h1d1c48fe28900922") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3665 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>>::h5d6467828e28ea3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3681 } Some("core::ptr::drop_in_place>::hc2d3ac33c88da037") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3684 } Some("core::ptr::drop_in_place>::h89ee6ee18b59cda2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3965 } Some("core::result::Result::is_ok::h840e04210e8a4ae8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3967 } Some("core::result::Result::is_ok::hef2fc857a132f8ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4288 } Some("core::iter::traits::iterator::Iterator::map::h64ad3edcf4894060") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4335 } Some("core::option::Option::is_some::haad2dcf9127c99f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4868 } Some("hashbrown::raw::RawTableInner::drop_elements::h09d6b50189764e92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4964 } Some("clink_wasm::Clink::test::_::__wasm_bindgen_generated_Clink_test::{{closure}}::h3b9b05861d872d62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4973 } Some("serde_core::ser::impls::::serialize::hdde50ac832d1488b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5263 } Some("serde_core::ser::impls::::serialize::hf05b778aca4f6abe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5653 } Some("core::ops::function::FnOnce::call_once::h692d57826d89c286") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5654 } Some("core::ops::function::FnOnce::call_once::ha0d695cfd0bd86c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5826 } Some("core::ptr::const_ptr::::offset_from::h96f5d2055b594221") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5878 } Some("wasm_bindgen::convert::traits::WasmRet::join::h3311c09ed67651fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5936 } Some("alloc::alloc::alloc::h2bd318f494804cc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6637 } Some("core::option::Option::is_none::h1453f1d37f01528e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6689 } Some("link_cli::lino_link::LinoLink::has_values::h4a39a1d7feabac98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6701 } Some("core::fmt::Arguments::from_str::h923ce7b404f99b11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6791 } Some("alloc::vec::Vec::insert::h13b0e242f34cd89a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6829 } Some("core::iter::traits::iterator::Iterator::filter::hba589a4e56b3e0c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6874 } Some("hashbrown::raw::RawTableInner::drop_elements::h1fbdeb8f363e0ffb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6881 } Some("hashbrown::raw::RawTableInner::drop_elements::h9fcebd3272be24b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7000 } Some("anyhow::error::object_drop::hed9cfd48d36dc824") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7003 } Some("anyhow::error::object_drop_front::hfd5fd88fa30c0ab5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7018 } Some("link_cli::link::Link::new::h7b3da9e0c007edca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7308 } Some("core::hash::impls::::hash::h9d181ea0cf4607b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7349 } Some("core::hash::impls::::hash::hbe4c4ac604bfb55f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8084 } Some("core::option::Option::is_some::h62e3820ca2f98570") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8157 } Some("core::fmt::Arguments::from_str::h304cd3dbf8b60c6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8223 } Some(" as nom::error::ParseError>::from_error_kind::h544c20cbb060dabd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8224 } Some("nom::error::Error::new::hd71a9f8f24d0f43e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8436 } Some("core::ptr::const_ptr::::offset_from::h0bff4559116ea7ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8633 } Some("anyhow::ptr::Ref::deref::h5abac8d76e5e3ddd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8659 } Some("core::fmt::Arguments::from_str::hba7a8786dcb2799e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8710 } Some("anyhow::error::object_drop::h6a31eb9b3272196a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8711 } Some("anyhow::error::object_drop::hc1c37b2b18dd6ea9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8717 } Some("anyhow::error::object_drop_front::h593a351899d30fca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8718 } Some("anyhow::error::object_drop_front::h7ed28888dc1d23e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8804 } Some("anyhow::error::::drop::h06ff202f4d44d98d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8913 } Some("core::fmt::num::::fmt::h812b208f79541b3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8914 } Some("core::fmt::num::::fmt::ha9ddefa9c2849ac3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9143 } Some(" as core::fmt::Debug>::fmt::h38c64a8189ec9798") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 439 } Some("::fmt::h143d4d5cf00164de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 441 } Some(" as core::fmt::Debug>::fmt::h49304bfc6f7a9ab0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 539 } Some("serde_json::de::Deserializer::fix_position::h3c9319a7916cea67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 601 } Some("serde_core::ser::impls::>::serialize::hb83c40c79bd44946") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 634 } Some(",alloc::collections::btree::node::marker::KV>::drop_key_val::Dropper as core::ops::drop::Drop>::drop::h9b88f042f84d800b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 721 } Some("::cmp::h1bba07cf52c9bc24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 766 } Some(" as serde_core::de::Visitor>::visit_none::hac1152876514c15e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 794 } Some("core::ops::function::FnOnce::call_once::hfdb3ededf009a961") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 859 } Some("core::ptr::drop_in_place::h95d92c0c2162e47a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 954 } Some("wasm_bindgen::__rt::assert_not_null::h3c93a049082c20a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 982 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::h888e5a7a1a5f0890") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1071 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h3eb216592eabc61d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1106 } Some("wasm_bindgen::JsValue::from_str::hc21e4d1d4c3a2280") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1348 } Some("serde_json::ser::Formatter::write_null::h8266de5a7bf4e8b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1350 } Some("serde_json::ser::Formatter::begin_object::hc2c6acb17cd33e79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1351 } Some("serde_json::ser::Formatter::end_object::h6ea356a0633ff63e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1353 } Some("serde_json::ser::Formatter::begin_array::h6db7f3a7058dcc49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1354 } Some("serde_json::ser::Formatter::end_array::h20d4a66e8c92f951") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1359 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_some::h5724234597441daf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1360 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_some::hb6f3bba482c56636") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1368 } Some("core::iter::traits::iterator::Iterator::try_for_each::hb0990fced303853a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1394 } Some("serde_core::ser::impls::>::serialize::h1c9247b3bdc894b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1395 } Some("serde_json::ser::Formatter::begin_string::h200e4bde93321a2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1397 } Some("serde_json::ser::Formatter::end_string::h2df0311bb961cb36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1409 } Some("serde_json::ser::Formatter::begin_object_value::h65cfa1809d28cf2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1431 } Some(" as serde_core::ser::SerializeStruct>::end::haacb7c49561ab681") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1536 } Some("core::iter::traits::iterator::Iterator::try_for_each::hc7279a3b083fb44a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1652 } Some("core::ops::function::impls:: for &mut F>::call_mut::hedb9ea8d6f2e59c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1654 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::h272b8f7f1d14a437") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1765 } Some(" as core::clone::Clone>::clone::h8eb4177fe48e39e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3254 } Some("wasm_bindgen::JsValue::from_str::h8806946799164e72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3416 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_wake::hb077e25e941af3dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3422 } Some("js_sys::futures::task::singlethread::Task::run::{{closure}}::hf0721fab88a2dc53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3630 } Some("core::ops::function::FnOnce::call_once::he1ae3c5927dfca39") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3676 } Some("::drop::hca3f035277a42ccd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3702 } Some(">::into::hcf2512ffcf661264") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4282 } Some("link_cli::link_reference_validator::LinkReferenceValidator::auto_create_missing_references::{{closure}}::hde54a51c3ffa4b32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4285 } Some("core::iter::traits::iterator::Iterator::try_for_each::h7fad58f793fa29a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4304 } Some("link_cli::named_type_links::NamedTypeLinks::lino_lines::{{closure}}::h636a0987b7e8c875") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4342 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hb512092e249cf7f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4656 } Some("serde_core::ser::impls::>::serialize::h48e5d409199d168c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4781 } Some("::partial_cmp::h6ca4bd12c6715575") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4793 } Some("serde_json::ser::Formatter::begin_object::he8ee29f0f748efb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4794 } Some("serde_json::ser::Formatter::end_object::h331c348a49c1ce96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4796 } Some("serde_json::ser::Formatter::begin_array::h36fd173538618988") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4797 } Some("serde_json::ser::Formatter::end_array::haa9a7c07a2cac2db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4806 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_some::h3952a6ee25e47769") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6897 } Some("hashbrown::raw::RawTable::remove::hca992a7b53c29fce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1521 } Some("alloc::collections::btree::navigate::LazyLeafRange::init_front::h169acf0d2f274994") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1524 } Some("alloc::collections::btree::navigate::LazyLeafRange::next_unchecked::hb6879a609986cce1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1522 } Some("alloc::collections::btree::navigate::LazyLeafRange::init_front::h753eb083d38d6098") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1599 } Some("wasm_bindgen_test::__rt::Formatter::log_test::h6f5df053788e18c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5866 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::h05adc3685aaeec9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5867 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::h96ab1168774cfec5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5542 } Some("alloc::collections::btree::navigate::LazyLeafRange::init_front::h17c33fa59de990bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5868 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::hee0149252360369a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6900 } Some("hashbrown::raw::RawTable::remove::h53bc137077935ee4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5880 } Some("wasm_bindgen::closure::_::::into_abi::h2ad7ca548099dafc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1621 } Some("core::slice::memchr::memchr::h15770b99625f0d2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4807 } Some("serde_json::ser::Formatter::write_null::h7597cad2103ffc3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7966 } Some("core::str::::trim_matches::hefab661c90e9811f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5903 } Some("core::ptr::drop_in_place>::h0f4cb7c3c9ade067") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5543 } Some("alloc::collections::btree::navigate::LazyLeafRange::init_front::h7de23f8944a35af2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5910 } Some("core::fmt::rt::Argument::new_display::h5d7d8acda1560494") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8181 } Some("::slice_contains::h1ba7a1c89c015c95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4886 } Some("hashbrown::map::HashMap::contains_key::h84876befa84bdfe6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 667 } Some("alloc::collections::btree::search::>::find_key_index::h89d4d52069053864") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5545 } Some("alloc::collections::btree::navigate::LazyLeafRange::next_unchecked::haf4adaa55225f4f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6230 } Some("core::slice::memchr::memchr::h812f74a2e0639ada") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5458 } Some("alloc::collections::btree::search::>::find_key_index::h0704a98c6004f60a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9077 } Some("core::fmt::num::imp::::_fmt_inner::h21f77f4c8510767c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4448 } Some("core::slice::sort::stable::drift::sort::h6ab8015a6f969b54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 317 } Some("std::sync::mpmc::waker::SyncWaker::notify::h034388f80f214699") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8257 } Some("alloc::vec::into_iter::IntoIter::as_slice::heb68de9415341019") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4822 } Some("serde_json::ser::Formatter::begin_string::h2c629e4c2bf2e86c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4824 } Some("serde_json::ser::Formatter::end_string::h52facdc0944169b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4836 } Some("serde_json::ser::Formatter::begin_object_value::h8d63b126a1afd608") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7445 } Some("core::slice::memchr::memchr::h9b272e07d02632e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4845 } Some(" as serde_core::ser::SerializeStruct>::end::h3a083c20a5279e9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8171 } Some("core::slice::memchr::memchr::h46f53184da07ea98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8928 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::haeda21ffcd811ab0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4849 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::h6f64c5cb0aa9b87b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4930 } Some("wasm_bindgen::__rt::assert_not_null::h1a520c04149ebe0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8598 } Some("core::slice::memchr::memchr::hf940bf96f76bb3ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5911 } Some("core::fmt::rt::Argument::new_display::he59e6805bfb890ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5912 } Some("core::fmt::rt::Argument::new_debug::haff09de59ed594e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1307 } Some("core::str::::lines::h18d8bec72af9acf1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5037 } Some("::default::hfbd6ed7273397f5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5974 } Some("wasm_bindgen::convert::impls::::from_abi::h1690b958be7dbc50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5337 } Some("serde_json::de::Deserializer::fix_position::h3ef7b6227996e2ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 542 } Some("serde_json::de::Deserializer::parse_whitespace::h4abcdd467409db09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5981 } Some("wasm_bindgen::throw_str::he112b346723bf09c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8798 } Some("anyhow::error::::construct::h8a7840108908948c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5375 } Some(">::try_into::hcab0a6470d9182a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6018 } Some("::drop::hcc42a4ff474a91aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5376 } Some("::cmp::h6c660b27772eedbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 561 } Some("serde_json::de::Deserializer::parse_object_colon::h72fb41e331ed3f22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 557 } Some("serde_json::de::Deserializer::parse_exponent_overflow::hdacb60c116d0fa1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6105 } Some(" as core::ops::deref::DerefMut>::deref_mut::h094524436433d56e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6122 } Some("core::fmt::rt::Argument::new_display::hca5f4de9c818c50f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6124 } Some("core::ptr::drop_in_place>::h89224ef1e694888c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 257 } Some("test::formatters::terse::TerseFormatter::write_test_name::h13e0cd1f37efd7e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6167 } Some(" as core::ops::deref::Deref>::deref::h50e412adcd3d84c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5421 } Some(",alloc::collections::btree::node::marker::KV>::drop_key_val::Dropper as core::ops::drop::Drop>::drop::he05d6c9d4515bfe1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3381 } Some("alloc::collections::vec_deque::VecDeque::push_back_mut::h88eccebcdb42b58a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6177 } Some("core::f64::::is_finite::hdff8cf3cfd7ed5df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5720 } Some("serde_json::value::Value::Number::h490565014805dd2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3861 } Some("wasm_bindgen::convert::closures::_::invoke::h0ce0d1093962538e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6178 } Some("core::fmt::rt::Argument::new_display::h0b3fa67c5d7457aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5806 } Some("::write_to_zmij_buffer::hf58a5cb76225141c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5993 } Some("core::cmp::max::h83bc6da1d71e7e1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4449 } Some("core::slice::sort::stable::drift::sort::h6cecb64ff2d52a85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6103 } Some("alloc::vec::Vec::capacity::h39b6f2b29d552aa7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5351 } Some("serde_json::de::Deserializer::parse_whitespace::hb50c5436cb89c3f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6179 } Some("core::fmt::rt::Argument::new_display::h181346ab8c17349f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6413 } Some("core::ops::function::FnOnce::call_once::h2020498416d775f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3866 } Some("wasm_bindgen::convert::closures::_::invoke::h1810d1d7c3b85b3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6414 } Some("core::ops::function::FnOnce::call_once::h20aba45f69eb920b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 262 } Some("test::formatters::terse::TerseFormatter::write_test_name::h018c75d0f063d712") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6180 } Some("core::fmt::rt::Argument::new_display::h32d170401902d4d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5354 } Some("serde_json::de::Deserializer::parse_object_colon::hb99ad941769bef18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6181 } Some("core::fmt::rt::Argument::new_display::h332afc71d99d2fc6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3880 } Some("wasm_bindgen::convert::closures::_::invoke::h5760f77d89a69864") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 256 } Some("test::formatters::terse::TerseFormatter::write_progress::h873d1ee81a5580a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3882 } Some("wasm_bindgen::convert::closures::_::invoke::h5ef69c6390a412e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6415 } Some("core::ops::function::FnOnce::call_once::h433881231a2ae6b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 285 } Some("test::formatters::pretty::PrettyFormatter::write_test_name::h0fb064669adb8dd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6417 } Some("core::ops::function::FnOnce::call_once::ha5a8ae4bddb8e4a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6418 } Some("core::ops::function::FnOnce::call_once::hb5d22be879da00d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6421 } Some("core::ops::function::FnOnce::call_once::he6341df5a49d396f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6430 } Some("core::ptr::drop_in_place>::h245479b99ce623f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6608 } Some("link_cli::link_reference_validator::LinkReferenceValidator::is_composite_lino::h4bcdb35f5ff0614e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6659 } Some("std::collections::hash::map::HashMap::get::h13f1831d6768e98c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4450 } Some("core::slice::sort::stable::drift::sort::hb24ca79a4df88e20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6660 } Some("std::collections::hash::map::HashMap::get::h3f52714c2aebb4f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6661 } Some("std::collections::hash::map::HashMap::get::h82e980fd7bbdf1eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6662 } Some("std::collections::hash::map::HashMap::get::h952c6bac54a97005") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6664 } Some("std::collections::hash::map::HashMap::get::hfb02d83cc3d285c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6669 } Some("std::collections::hash::map::HashMap::insert::h2541bc602d487430") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6670 } Some("std::collections::hash::map::HashMap::insert::h564864a63f592350") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6672 } Some("std::collections::hash::map::HashMap::insert::h9c736400bc49cd64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6739 } Some("core::slice::sort::stable::drift::sort::h0d30ac8f748812c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 289 } Some("test::formatters::pretty::PrettyFormatter::write_test_name::h4130d0b7e21d94b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 668 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::next_kv::ha7f5242ca06f1852") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3883 } Some("wasm_bindgen::convert::closures::_::invoke::h629a5388a64d3f29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6677 } Some("std::collections::hash::map::HashMap::get_mut::hf1587dfde69c9ae1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6691 } Some("link_cli::lino_link::LinoLink::values_count::ha2b6dd42022254e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 261 } Some("test::formatters::terse::TerseFormatter::write_progress::hba4bf4e3489d8b30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9146 } Some("core::str::pattern::StrSearcher::new::hedfc561af0a4e4fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8099 } Some("<[char; N] as core::str::pattern::Pattern>::into_searcher::h392132978523619e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6182 } Some("core::fmt::rt::Argument::new_display::h82abbab616168c99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4959 } Some("clink_wasm::_::::serialize::h513df97e270861c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6697 } Some(" as core::iter::traits::collect::Extend>::extend::{{closure}}::h455d9ed23ba73fae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9012 } Some("core::escape::escape_unicode::hc11326ceefb5335d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6183 } Some("core::fmt::rt::Argument::new_display::h8e988df280cf9490") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3886 } Some("wasm_bindgen::convert::closures::_::invoke::h729f0b2cf96d1d6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 619 } Some("alloc::vec::Vec::push_mut::h013e711175cce24f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6698 } Some(" as core::iter::traits::collect::Extend>::extend::{{closure}}::ha7f78de9d0085a96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6184 } Some("core::fmt::rt::Argument::new_display::hc4715ad1eccf15fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3888 } Some("wasm_bindgen::convert::closures::_::invoke::h796ee541ae277877") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4960 } Some("clink_wasm::_::::serialize::hf45d7466ca4c4ea7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6186 } Some("core::fmt::rt::Argument::new_display::hdb434da88a137be4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6699 } Some(" as core::iter::traits::collect::Extend>::extend::{{closure}}::hedb64aeb5ec1832f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6187 } Some("core::fmt::rt::Argument::new_display::hf602d17694e90477") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6976 } Some("link_cli::lino_link::LinoLink::has_values::{{closure}}::hfd570690696742ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6188 } Some("core::fmt::rt::Argument::new_debug::h01f1a44834bdcaaa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6998 } Some("core::error::Error::type_id::h189a2e81c9f0db25") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6255 } Some("link_cli::query_processor::QueryProcessor::new::h63483eff0b527c31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7019 } Some("::clone::hea53d6ec7ffcba82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7024 } Some("link_cli::query_types::ResolvedLink::to_link::h657aec9d3765b1bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7035 } Some("core::error::Error::type_id::hff2cd77d71337128") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7612 } Some("links_notation::parser::double_quoted_dynamic::h510b47a405800ac1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7619 } Some("links_notation::parser::single_quoted_dynamic::hc06f35468e1be629") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 421 } Some("test::helpers::shuffle::shuffle_tests::h0d6fa7e1e03a3978") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7623 } Some("links_notation::parser::backtick_quoted_dynamic::h8ff665a2db8fcce3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6319 } Some(" as core::iter::adapters::SourceIter>::as_inner::h826d1afa1d3366d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8027 } Some(" as nom::internal::Parser>::process::{{closure}}::h9d5907a62369b667") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6320 } Some("alloc::vec::in_place_collect::needs_realloc::h1d193a533fa22aa9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5459 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::next_kv::h6af6741399955f12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8030 } Some(" as nom::internal::Parser>::process::{{closure}}::h9f634c6d4132082e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 741 } Some(" as core::ops::try_trait::Try>::branch::h445ae94118b6a0c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3892 } Some("wasm_bindgen::convert::closures::_::invoke::ha8522043f7bbaa0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7101 } Some("core::slice::sort::shared::smallsort::sort13_optimal::h54bf017749b7c554") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6426 } Some(" as core::ops::drop::Drop>::drop::h4371d77f561875fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8033 } Some(" as nom::internal::Parser>::process::{{closure}}::ha389b466ae34eabf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 756 } Some(" as core::ops::try_trait::Try>::branch::hd28ced5a98f0e52d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6449 } Some("core::ptr::drop_in_place>>::heb4ba490d4899097") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4883 } Some(" as core::iter::traits::iterator::Iterator>::next::h40526e6f90ee727a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6450 } Some("core::ptr::drop_in_place<(link_cli::link::Link,alloc::vec::Vec<(link_cli::link::Link,link_cli::link::Link)>)>::hfd72fbe4b2847229") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6451 } Some("core::ptr::drop_in_place>::h6fcd00b9876cd0f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6480 } Some("core::ptr::drop_in_place<(u32,alloc::string::String)>::hbb27ad1c4ad66698") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 635 } Some("alloc::collections::btree::node::NodeRef::push_with_handle::h1f0a462a757fc023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6486 } Some("core::ptr::drop_in_place>::h7df914ccc870ab58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6489 } Some("core::ptr::drop_in_place<(u32,link_cli::query_types::ResolvedLink)>::h4079302858aa1895") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8431 } Some("core::cmp::min::hc769713525d6d3cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6490 } Some(" as core::ops::drop::Drop>::drop::h375c553d24cff334") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8529 } Some("core::ptr::drop_in_place>>::hf6a66e3adbbde52c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6491 } Some("core::ptr::drop_in_place::h950a5bb57b12d52f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8563 } Some("core::ptr::drop_in_place::h078b355c4632fd05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6496 } Some(" as core::ops::drop::Drop>::drop::h6333e8f2f9675c55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8684 } Some("core::error::Error::type_id::h11f1da7972f81412") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8685 } Some("core::error::Error::type_id::h309b57899ca67646") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4542 } Some("alloc::vec::in_place_collect::from_iter_in_place::h0bc18969813cda07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 246 } Some("test::formatters::junit::parse_class_name::h2c9bea84a1925e00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4884 } Some(" as core::iter::traits::iterator::Iterator>::next::hbd46ea8f2d6e2f54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4918 } Some("alloc::rc::Rc::try_unwrap::ha2b88997fd632426") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8686 } Some("core::error::Error::type_id::h777ca5ec5f0c2f5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8687 } Some("core::error::Error::type_id::hca1c8f91c11bf607") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3896 } Some("wasm_bindgen::convert::closures::_::invoke::hbfe26274169fbc9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8759 } Some("core::iter::traits::iterator::Iterator::advance_by::hd318225333c059f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8866 } Some("std::rt::cleanup::h7d670c1021992e6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8891 } Some("::fmt::h79b5a0e95bf897ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8937 } Some("::fmt::h69cba1aad9b39a0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1203 } Some("wasm_bindgen_test::__rt::State::print_failure::h4db771cb857f561f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9155 } Some("core::slice::sort::stable::drift::sqrt_approx::h73d10e82bb3324f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 99 } Some(" as core::ops::deref::Deref>::deref::h38f1204f5ec8be96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 100 } Some(" as core::ops::deref::Deref>::deref::h4aa5ebae2b9abcb3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4543 } Some("alloc::vec::in_place_collect::from_iter_in_place::h360a0cb4287e5b78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7896 } Some(" as nom::internal::Parser>::process::hdc1a7611d487142a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4544 } Some("alloc::vec::in_place_collect::from_iter_in_place::h535ad2d8fdf3a56f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4545 } Some("alloc::vec::in_place_collect::from_iter_in_place::hf8919da82ee36f79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6321 } Some("alloc::vec::in_place_collect::from_iter_in_place::h79d79d908ce2b809") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7900 } Some(" as nom::internal::Parser>::process::hcffd2057742ca938") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6596 } Some("hashbrown::map::HashMap::insert::hafe65d3af7c79b2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8251 } Some("alloc::vec::in_place_collect::from_iter_in_place::hb26809365aaf52bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 462 } Some("getopts::find_opt::hbb9d4de140ffe023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4525 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern::h850b808e29366b2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5328 } Some("serde_json::de::from_trait::hdbab76423052fc13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6685 } Some("::next_back::h0ce93a0898cb2df9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5740 } Some("memchr::arch::all::memchr::Two::find_raw::hb6134941b2fd5021") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9071 } Some("core::fmt::num::imp::::_fmt_inner::he63902c806bd0202") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9010 } Some("rustc_demangle::v0::Printer::print_sep_list::h717206c187f55fee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 142 } Some(" as core::future::future::Future>::poll::h6c346e5c6c03203a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 357 } Some("core::ptr::drop_in_place>::h2912c6891003fbce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 143 } Some(" as core::future::future::Future>::poll::h9ac91b725b9c24e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 144 } Some(" as core::future::future::Future>::poll::haa027a56a3eaf26d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8703 } Some("anyhow::fmt::::debug::hfb047d64c4c4da4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 145 } Some(" as core::future::future::Future>::poll::hf059653fbcaba937") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 418 } Some("<[f64] as test::stats::Stats>::quartiles::h11434dc8c366888e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7196 } Some(" as core::ops::try_trait::Try>::branch::h084d606cc3c292a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7735 } Some(" as core::convert::From>::from::h650c93d462746d72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 465 } Some("getopts::Matches::opt_strs::h1f5c78a1e8f5ec21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5324 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hd500d2c5d4cc5b41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 415 } Some("<[f64] as test::stats::Stats>::sum::h2f67050f380fc0c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4198 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::{{closure}}::hf71bb520bf9d79df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9176 } Some("::next::he6314720ae185572") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4528 } Some("link_cli::query_processor::QueryProcessor::resolve_identifier_readonly::hfab7a8817dde3e94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6610 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_explicit_definitions::h479aa51767ac2d3a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1367 } Some("<&alloc::collections::btree::map::BTreeMap as core::iter::traits::collect::IntoIterator>::into_iter::h657a8c22eb6740a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3383 } Some("alloc::collections::vec_deque::VecDeque::handle_capacity_increase::h0b80043bdd2fc1db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4663 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h52cf41524ff3a6d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7194 } Some("core::result::Result::map_err::h9515f7c9786bb35a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7253 } Some("core::hash::sip::u8to64_le::hbe37a21de31f881a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7352 } Some("core::hash::sip::u8to64_le::h2c4c39a90f8be5b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7496 } Some("core::hash::sip::u8to64_le::hec7bc7369c97ac0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 461 } Some("getopts::Matches::opt_vals::h8c118216c2b49b1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1736 } Some("core::str::traits:: for core::ops::range::Range>::get::heb9c339d3e6f3ca4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4572 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h65ab1007d1290af0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4573 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h82e0f897a75a2d96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5097 } Some("core::slice::sort::shared::smallsort::insert_tail::h6475e77bcfe93325") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5529 } Some("core::str::traits:: for core::ops::range::Range>::get::h614bbb3658cfe943") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6553 } Some(" as core::iter::traits::iterator::Iterator>::next::h03fd2e7e8d5d8688") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6554 } Some(" as core::iter::traits::iterator::Iterator>::next::h4c4bf6468d1c1062") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6555 } Some(" as core::iter::traits::iterator::Iterator>::next::h4f14a2cb87d08ebe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6556 } Some(" as core::iter::traits::iterator::Iterator>::next::hef6757aff3a4a03b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6603 } Some("hashbrown::map::HashMap::get_mut::hc81c69df50a87737") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7330 } Some(" as core::iter::traits::iterator::Iterator>::next::hca33332599593407") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7713 } Some("alloc::vec::Vec::push_mut::h9e71123aa542d047") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9023 } Some("core::fmt::Write::write_char::h6753d16224737d2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 411 } Some("test::cli::get_color_config::h7fa2c1367f536ca7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1356 } Some("serde_json::ser::format_escaped_str::h414fe513475c7740") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4322 } Some("core::option::Option::ok_or_else::h9317edaa658e723e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4323 } Some("core::option::Option::ok_or_else::hb6001d714993b67f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4799 } Some("serde_json::ser::format_escaped_str::hf85837d059497d15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4837 } Some("serde_json::ser::to_string::hbe4723df74a263d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5959 } Some("__wbindgen_malloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5445 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split::h890105134a5d3eb5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7818 } Some(">::process::{{closure}}::h871d39fcae512ed8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7854 } Some(">::process::{{closure}}::hdf62a5429820b0cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7855 } Some(">::process::{{closure}}::he23791f78986dd52") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8854 } Some("std::io::stdio::Stderr::lock::he8fbd4ebf90ef0f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 350 } Some("core::ptr::drop_in_place::h82f5a446b491138c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 673 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_next_unchecked::hfbcac7c69cb3cec0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 918 } Some("alloc::boxed::Box::try_new_uninit_in::hfa6fd2db8c8c17d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 920 } Some("alloc::boxed::Box::try_new_uninit_in::he3d7011297a67b9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 986 } Some("wasm_bindgen::convert::impls::>::into_abi::h2e87f2b55ca029b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1670 } Some("std::sys::sync::once::no_threads::Once::call::h733a3710b0820334") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1752 } Some("alloc::raw_vec::RawVecInner::current_memory::h9e44263826560408") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4299 } Some(" as core::iter::traits::iterator::Iterator>::find_map::ha8a57d4278a21c50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 101 } Some(" as core::ops::deref::Deref>::deref::hc1689f3c3cf10fb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 102 } Some(" as core::ops::deref::Deref>::deref::he4c3199de8f6cb2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 444 } Some(" as core::iter::traits::iterator::Iterator>::next::h3f20a1673404711c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6501 } Some("core::ptr::drop_in_place<(link_cli::link::Link,alloc::vec::Vec)>::h1a8d6c70a6a41fe4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 558 } Some("serde_json::de::Deserializer::parse_any_number::hdb821955f1a222b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6705 } Some("alloc::boxed::Box::from_raw::he31f730531b71ac9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 600 } Some("serde_core::de::impls::>::deserialize::hc2e6f6d59342ebfd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6706 } Some("alloc::boxed::Box::from_raw::he41158503ec66e64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 605 } Some("alloc::vec::Vec::push::h8fdb018d889643fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 674 } Some("serde_core::de::impls::::deserialize::h127b46e0ac512d1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6709 } Some("anyhow::ptr::Own::cast::h0baef7eb13d2a208") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 720 } Some(">::into::h6c321930f2de2008") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 764 } Some(">::extend::{{closure}}::h52aa54adcd6b6256") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6710 } Some("anyhow::ptr::Own::cast::h9540b6eaa7c72d92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 777 } Some("core::ops::function::FnOnce::call_once::h821338dd0c95b042") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4590 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h38ba56f9ba0fc503") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6711 } Some("anyhow::ptr::Own::cast::hd8799fa6c2c01d8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6714 } Some("anyhow::ptr::Ref::new::hcbe89dbff0fef8b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4591 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h8c1cf9fd9ce9d458") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3900 } Some("wasm_bindgen::convert::closures::_::invoke::hcad447f620ce488c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6510 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::ha8a8263aea12ff65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 946 } Some("serde_core::de::impls::>::deserialize::h083cd765772f5369") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6715 } Some("anyhow::ptr::Ref::cast::h26be9000737064e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 947 } Some("serde_core::de::impls::>::deserialize::h6912d85e16aadf10") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6716 } Some("anyhow::ptr::Ref::cast::ha67951d6f8488e63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 987 } Some("wasm_bindgen::convert::impls::>::into_abi::h23fdb308994ad3cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6717 } Some("anyhow::ptr::Ref::cast::hc8ad7c8129f12d34") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3902 } Some("wasm_bindgen::convert::closures::_::invoke::hdcad1b411d8c4b4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1046 } Some(">::into::h0e4aeec8fed9bf4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4592 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::hab5a7e6a582a0361") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6723 } Some("core::fmt::rt::Argument::new_display::h0fb94f6b2c04e6f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3903 } Some("wasm_bindgen::convert::closures::_::invoke::he4f7288a0e3b7517") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5267 } Some("std::sys::sync::once::no_threads::Once::call::h76b7eeba83199275") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5398 } Some("alloc::boxed::Box::try_new_uninit_in::hdd5a3d74e9b4346a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3904 } Some("wasm_bindgen::convert::closures::_::invoke::hf0d18ca00b5c41ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5400 } Some("alloc::boxed::Box::try_new_uninit_in::ha9a943a66150449c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3907 } Some("wasm_bindgen::convert::closures::_::invoke::hfe6680f032cce611") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5464 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_next_unchecked::h804cd9a526cc41d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4382 } Some("core::slice::sort::stable::quicksort::PartitionState::partition_one::h53eff8f7a07aa418") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5567 } Some("serde_json::read::ignore_escape::h204a85a12e0cae63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5349 } Some("serde_json::de::Deserializer::parse_exponent_overflow::hcae447fb950cf70f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5614 } Some("alloc::raw_vec::RawVecInner::current_memory::h636c898e7c72179f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6104 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h4a416c39a4826db5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6132 } Some("alloc::raw_vec::RawVecInner::current_memory::h28299c3d5d26f023") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5480 } Some("core::char::methods::::to_digit::h88843a3da1dedd95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6161 } Some("alloc::raw_vec::RawVecInner::current_memory::h26eb4210ecdb8b83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1055 } Some("::return_abi::hb4cdfe8e49aa9b7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1072 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h7cbe1907d928a1a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1108 } Some("wasm_bindgen::JsValue::from_bool::h7843c2bcb19cc1f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 378 } Some("core::slice::sort::shared::smallsort::sort8_stable::h293e3da458aad54c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1111 } Some("wasm_bindgen::convert::impls::::ref_from_abi::hd5bcf294ea2d9396") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1139 } Some(" as core::ops::deref::Deref>::deref::h5b3b59b52929e912") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1436 } Some("serde_core::de::Visitor::visit_borrowed_str::h0aaff4a348f773a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1438 } Some("serde_core::de::Visitor::visit_borrowed_str::h64d042e0eb256743") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1440 } Some("serde_core::de::Visitor::visit_borrowed_str::haf858f874aa6afea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5597 } Some("::deserialize::ValueVisitor as serde_core::de::Visitor>::visit_map::h826b1fd3b99d025b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1453 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::hedba1b35286b5472") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6724 } Some("core::fmt::rt::Argument::new_display::h5ed9371b8a39b0da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1456 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::hf4c196bdc60e88b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1458 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::h4586f832529404d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1487 } Some("serde_core::de::Visitor::visit_borrowed_str::h116ccfa12696deb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1489 } Some("serde_core::de::Visitor::visit_borrowed_str::hf733157ad26c70a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1493 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::hbe4440dfdb14ff37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1495 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::ha3a1cb2af375d22f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6848 } Some("link_cli::changes_simplifier::remove_duplicate_before_states::h272e5d11d7cf1291") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1547 } Some("serde_core::de::Visitor::visit_borrowed_str::h7f7587f9b8429d11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1559 } Some(" as serde_core::de::Deserializer>::deserialize_f64::h8cc707f1a169aec4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6518 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h2dd968a78e47b825") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6302 } Some("core::iter::adapters::map::map_fold::{{closure}}::h4f61cd611bc79d8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6519 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h37f36a550b6cc735") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6520 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h871535b3bc72b659") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6776 } Some("alloc::vec::Vec::push::h14c67493db746a31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6778 } Some("alloc::vec::Vec::push::h50c1cb0489f76395") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7096 } Some("core::slice::sort::shared::smallsort::insert_tail::hf89f775b7e6b4ace") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6780 } Some("alloc::vec::Vec::push::h797f41754565661d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6782 } Some("alloc::vec::Vec::push::ha599b802ed9c7ef1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8882 } Some("std::thread::thread::Thread::new::hd357cc77790a9f89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6784 } Some("alloc::vec::Vec::push::ha63ae29fca69c5ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6786 } Some("alloc::vec::Vec::push::he55f9f557ad3a90a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 663 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split::hdf26d85205b9cc30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6307 } Some("core::iter::adapters::map::map_fold::{{closure}}::h8d71dcd0fcc06583") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6634 } Some("core::option::Option::map::hffd2781063c7246e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6734 } Some("core::slice::sort::stable::quicksort::PartitionState::partition_one::ha9b4175c5e74c270") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6722 } Some("anyhow::error:: for anyhow::Error>::from::hadfaeceb309135fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1560 } Some(" as serde_core::de::Deserializer>::deserialize_seq::h0349415db54fda3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1603 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::::deserialize::h9cbe1638b90ae61d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6856 } Some("core::char::methods::::to_digit::h185ea5b5d01e3f6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1606 } Some(">::into::h3d8ed102c3b16791") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1697 } Some("core::iter::traits::iterator::Iterator::peekable::heb27f98a7dbc0246") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3387 } Some("alloc::collections::vec_deque::VecDeque::push_back::hbd3c9257cfa71f04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7561 } Some("links_notation::parser::first_line::h51924a0f7619e987") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3629 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hd2b5b5fa0f8522ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9125 } Some("core::fmt::Formatter::debug_tuple_field1_finish::hf7bab4a1f0b45def") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7059 } Some("core::ptr::swap_nonoverlapping_bytes::h62c309eae02e6f0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7195 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h521ffd43c8331914") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5079 } Some("clink_execute") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4665 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h7d4e59a8bd0a7d79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6606 } Some("link_cli::link_reference_validator::LinkReferencePlan::add_missing_reference::hdd5dae81ac27a144") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7285 } Some("alloc::raw_vec::RawVecInner::current_memory::ha4d5084abc70a857") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7670 } Some(">::process::he73bb2da1b54cf6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7424 } Some("alloc::raw_vec::RawVecInner::current_memory::hb397558160e09e7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7531 } Some("alloc::raw_vec::RawVecInner::current_memory::hdb602d993d895745") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 464 } Some("getopts::Matches::opt_str::h77984ed45ebf3398") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7743 } Some("links_notation::flatten_link_recursive::{{closure}}::hbfcb0e4451df04e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3864 } Some(">::into::h2696e22e99a08a62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3895 } Some(">::into::hb48349a12b097173") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4278 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_missing_references::hfa4e1e3c74fd612a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4217 } Some(" as core::iter::traits::collect::FromIterator>>::from_iter::h2577a55aaf849309") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4218 } Some(" as core::iter::traits::collect::FromIterator>>::from_iter::hd77f086c033321fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4273 } Some("link_cli::link_reference_validator::LinkReferenceValidator::auto_create_missing_references::{{closure}}::h6fc6fd26c2e5f033") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6506 } Some(" as core::iter::traits::iterator::Iterator>::fold::h868290686029fe78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6801 } Some(" as core::ops::deref::Deref>::deref::h366589f7df769ab1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6802 } Some(" as core::ops::deref::Deref>::deref::h96fd2c2beb3a570e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5386 } Some("alloc::vec::Vec::into_boxed_slice::h5e268359d35d7c3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6803 } Some(" as core::ops::deref::Deref>::deref::hc4d8dca38f76f743") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5904 } Some("wasm_bindgen::externref::Slab::alloc::hbe885cd3f56af343") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6507 } Some(" as core::iter::traits::iterator::Iterator>::fold::hc94753e22613144b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6804 } Some(" as core::ops::deref::DerefMut>::deref_mut::h97541cafe13df6e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6096 } Some("alloc::vec::Vec::into_boxed_slice::h3dd50cf03802e3d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4343 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::hf0b5c483a0f91f18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6805 } Some(" as core::ops::deref::DerefMut>::deref_mut::hbd11ca1d70157b0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7755 } Some(" as nom::internal::Parser>::process::{{closure}}::hcadb6341485e7f51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6977 } Some("link_cli::lino_link::LinoLink::values_count::{{closure}}::hf0dcfd99bb99b8fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6992 } Some("core::mem::drop::h87e4cdbf9a1a226f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6993 } Some("core::mem::drop::hbe0b0f6b41bdc4bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7037 } Some("core::ptr::non_null::NonNull::new_unchecked::h38dbf8f82e8f70c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7038 } Some("core::ptr::non_null::NonNull::new_unchecked::hbc408dbbc0e0e7ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7045 } Some("core::cmp::impls::::eq::hd79a5af26206cb8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6097 } Some("alloc::vec::Vec::into_boxed_slice::he7b61fc2474abb07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6775 } Some("alloc::vec::Vec::pop::he83491529155bdd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7986 } Some("core::result::Result::map_err::h149c83b6abe1fdc6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4549 } Some(" as core::iter::traits::iterator::Iterator>::next::h03fbe645efc6d970") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4621 } Some("core::iter::traits::iterator::Iterator::collect::h7141a32fc4b4b46d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6933 } Some("hashbrown::raw::RawTable::insert_tagged_at_index::h5209e263b203e1c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4754 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h04babde646317576") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4756 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h0e252130951fd5b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7740 } Some(" as core::clone::Clone>::clone::h1f9cd7cef13543c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8255 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h0a8a5293350ba07a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8752 } Some("core::str::::split::h8f4f6a5bd67907c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4758 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h443ecc0b1ec171d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9168 } Some("core::panicking::assert_failed_inner::h7a49bbc1d2417104") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4759 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h5d7e254bd356b9c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4766 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h873991da86a8e447") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 589 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option::h7d077dfb815cae77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7990 } Some("core::result::Result::map_err::h2ad9e98a4eb2e6fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 590 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option::hf6f6311540c37d10") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8256 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h1a7cac58c1f986ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8419 } Some("alloc::raw_vec::RawVecInner::current_memory::h636f3432570082fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5023 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option::h7f81b307f66b326a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8495 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h30d0acb1f7b8013d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8496 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::heeb6d8099be4be3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5642 } Some("::fmt::h47d536dd55e5429a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8600 } Some("alloc::vec::Vec::extend_trusted::h295bd63ed3c0398c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8790 } Some("alloc::raw_vec::RawVecInner::current_memory::hc9ef3969b0ecc652") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 413 } Some("test::stats::percentile_of_sorted::hc6547618d1e7299a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1618 } Some("core::char::methods::encode_utf8_raw::hd1ac133bda6ad548") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3873 } Some("wasm_bindgen::convert::closures::_::invoke::h2ceefe56294a94f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3890 } Some("wasm_bindgen::convert::closures::_::invoke::h911da3dc25d78fa0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6222 } Some("core::char::methods::encode_utf8_raw::h23e4b99feb97d12d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6666 } Some("std::collections::hash::map::HashMap::keys::h53b23cc4dba85fc1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6676 } Some("std::collections::hash::map::HashMap::values::h80c26d2d7bbc5864") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6853 } Some("core::char::methods::encode_utf8_raw::h38d4a60e1a9cca89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7177 } Some("core::sync::atomic::AtomicBool::swap::h7942a894bbf96cce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7205 } Some("lino_arguments::load_env_file::{{closure}}::hcef2a9d29a0f0210") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7304 } Some("core::char::methods::encode_utf8_raw::h79a34686482b9bf4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7334 } Some("std::collections::hash::map::HashMap::keys::h524f0546a7ee8960") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8009 } Some("core::result::Result::map_err::ha50c87a362332508") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8164 } Some("core::char::methods::encode_utf8_raw::h805f2280d6d54bbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8478 } Some("core::char::methods::encode_utf8_raw::h34c65100231e33a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9114 } Some("core::fmt::builders::DebugMap::entry::hc730287ccf62b28a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 249 } Some("test::formatters::junit::JunitFormatter::write_message::h206b63b23ec43dcd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8721 } Some("anyhow::error::object_reallocate_boxed::h14407fc80baf361d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1413 } Some("core::iter::traits::iterator::Iterator::try_fold::h7ca67dfab15907e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1480 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h70b1fd46f7c390df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1620 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::hb32b94320044798e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1724 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::he7ab9529b37a7321") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3361 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h44549df571ab5ed4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4357 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h4e91491a4aadc2b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5763 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h9abe97e9272a76f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5779 } Some("itoa::divmod100::h7c89020753293ce8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5824 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h4302aa2884338ff8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5922 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h812a66f7898d0e73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6111 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::hf3bcea9e80020694") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6148 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h9d05d45cf05419a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6224 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::h128bf16013a223ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6631 } Some("core::option::Option::map::h57f5daded910d5d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6855 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::h7393077feb5d2732") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7056 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h04b8bfb31049b6b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7079 } Some("link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}::h0f8780d7911e5c8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7080 } Some("link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}::h11f9e733728a8898") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7232 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h9da6dd6ea720e001") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7268 } Some(" as core::hash::Hasher>::finish::h83d0fcf52a58011e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7306 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::he2bda60e53bb52a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7377 } Some(" as core::hash::Hasher>::finish::hec9707e0ea66c130") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7397 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::hb3809f3067463c82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7499 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h7ea0c6f382a38343") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7503 } Some(" as core::hash::Hasher>::finish::hbb69d842e1555330") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8021 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::ha19a73956dc13968") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8166 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::h3a4c7b28a13e54b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8385 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h14516ac8fb71c164") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8404 } Some(" as core::cmp::PartialEq>::eq::hf056f51ec94665c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8435 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h2abc03b42cba82b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8480 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::h847ea91d999674f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8787 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h86decbdcd1946d00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8838 } Some("::fmt::hde3decec68ee41cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 965 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h2fc1f334919b22e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1148 } Some("::next::h158564c250e4413b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5560 } Some("::next::hd0a3637788b0e65c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5584 } Some("core::slice::::chunks_exact::h59b609a6b1a2a3dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5604 } Some("core::str::traits::::cmp::ha919608381cdcc0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5838 } Some("zmij::select_if_less::hefac095b463d76be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7005 } Some("anyhow::error::object_reallocate_boxed::h52280149974c01b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8075 } Some("core::slice::::chunks_exact::he48a9d503b3bf5fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5700 } Some("zmij::Buffer::format_finite::h73abfaa435966fcd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7572 } Some("links_notation::parser::ParserState::new::hb114d43b0e8c00ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7679 } Some("::clone::h6868aec2a39fed9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7683 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h5f682f37d5a26cea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 352 } Some("core::ptr::drop_in_place::ha1836f0626a9670a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1484 } Some("::size_hint::hd35eeba505b340a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1525 } Some(" as core::iter::traits::iterator::Iterator>::next::heb8a87193144c8b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5044 } Some("clink_wasm::Clink::result::h5cf1b1efd262a4ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4768 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h97734e59d5d7d122") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4770 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h736a3c9bdfe95040") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4961 } Some("clink_wasm::_::::deserialize::h5b474c43f3be4fbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9027 } Some("core::iter::traits::iterator::Iterator::try_fold::h15bd061a8af1ae1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7992 } Some("core::result::Result::map_err::h395005d0ec232263") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4969 } Some("clink_wasm::to_json::hb450a8eba519d426") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7998 } Some("core::result::Result::map_err::h58d873c2d3b4c1d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 562 } Some("serde_json::de::Deserializer::end_map::hc66c513bee8106da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4971 } Some("serde_core::de::Visitor::visit_borrowed_str::h47fe4c8a20d4e7ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 746 } Some(" as core::ops::try_trait::Try>::branch::h6703ac1af0df8d61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5089 } Some("core::iter::traits::iterator::Iterator::collect::hf98251476d910d73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8000 } Some("core::result::Result::map_err::h6bd7d11c9a52b5d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8001 } Some("core::result::Result::map_err::h6fe7482a69f8f975") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7085 } Some("::finish::hc8442692da5e58de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7114 } Some("::deref::h447abb6af21d746c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8002 } Some("core::result::Result::map_err::h7224519403c90aed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6210 } Some("::is_contained_in::h2e3d102b0222c884") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5119 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h5574638be7c1fa85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7180 } Some("::deref::h4ae92f4faa3bed3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8005 } Some("core::result::Result::map_err::h85bc552ac8983a4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7191 } Some("core::fmt::rt::Argument::new_display::h74aedf7eb8210d6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6602 } Some("hashbrown::map::HashMap::remove::hd64ca6fbd065bd47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7208 } Some("lino_arguments::auto_init::h07b1b1cbadb2cba0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8006 } Some("core::result::Result::map_err::h997655ee04671cae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7224 } Some("core::ops::function::FnOnce::call_once::h3cf746305771eb64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6679 } Some("core::iter::traits::iterator::Iterator::try_fold::h87e4da79d82bf25a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7235 } Some("core::ptr::drop_in_place>::h74956438953a03ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6744 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h05c807fd5b5e3e12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7250 } Some("::finish::hd7389cf51637557d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7681 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h1b950d5071a3f208") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7685 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h98db33c1341c34a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8007 } Some("core::result::Result::map_err::h9ea2d5a8af520eba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7104 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::hcd0b186edef2ba9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5232 } Some(" as core::ops::drop::Drop>::drop::haa36d13fe85b105c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5246 } Some(" as core::ops::drop::Drop>::drop::h38c993e546435ec3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5259 } Some("core::clone::Clone::clone::hcd1eb2c057102c69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7283 } Some("alloc::str:: for alloc::string::String>::borrow::h9e2fa76037fab2eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5350 } Some("serde_json::de::Deserializer::parse_any_number::hdfdeb6aa97c36401") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5392 } Some("alloc::vec::Vec::push::hd2041c3d894a9d09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3996 } Some("once_cell::unsync::OnceCell::try_insert::h3285bf8a65bbc162") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5555 } Some("serde_core::de::Visitor::visit_borrowed_str::h411fb8073d497353") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5557 } Some("serde_core::de::Visitor::visit_borrowed_str::h89b62735b1c2a33b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7297 } Some("core::fmt::rt::Argument::new_display::h13e92bdc2eab9fa6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5577 } Some("serde_json::read::as_str::{{closure}}::h9eb113ebe99bbdfa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5585 } Some(">::try_into::hda85c7e16a64ad30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4002 } Some("once_cell::unsync::OnceCell::try_insert::he7981708642a0d6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7298 } Some("core::fmt::rt::Argument::new_display::h6247561b7381e71a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8008 } Some("core::result::Result::map_err::ha1132c45b1e92b5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7299 } Some("core::fmt::rt::Argument::new_display::hed498eb628d8547f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8011 } Some("core::result::Result::map_err::hb13226ffb9bf7c41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7300 } Some("core::fmt::rt::Argument::new_display::hf749a40697e70489") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5713 } Some("serde_core::de::Visitor::visit_borrowed_str::h3c8f35cd4caeaf6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7338 } Some("std::ffi::os_str:: for alloc::string::String>::as_ref::h8d9e3b9ada89186f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7350 } Some("::finish::hbf8f6797e6ea2339") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8013 } Some("core::result::Result::map_err::hc3b45fb315657b27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7366 } Some("alloc::str:: for alloc::string::String>::borrow::h434f875191346a49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8014 } Some("core::result::Result::map_err::hc85ccedc218391d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7401 } Some("core::ptr::drop_in_place>::h7dc03270325c0da9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8020 } Some("core::result::Result::map_err::hffeb0bd01455bebf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4470 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::hcec10925f2b1f272") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9014 } Some("core::str::pattern::TwoWaySearcher::next::h241d95cfea0204ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5995 } Some("core::mem::drop::h88dc72c16f38d03b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5357 } Some("serde_json::de::Deserializer::end_map::h2e03aa9e23c862fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6006 } Some(">::into::h3b690650fa7a1119") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6007 } Some(">::into::h73c3ae0b7f59e0cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6101 } Some("alloc::vec::Vec::push::hc79bd3a8003fefe0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6509 } Some(" as core::iter::traits::iterator::Iterator>::next::hcf7ffc742190001a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8089 } Some("::is_contained_in::h1957fee6a3398f41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6291 } Some("core::iter::traits::iterator::Iterator::collect::h8dc0f382d35c1bee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7408 } Some("core::ptr::drop_in_place>::h37cf8f223d2e71d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6292 } Some("core::iter::traits::iterator::Iterator::collect::hcb1f275b6e147f38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7411 } Some(" as core::ops::drop::Drop>::drop::h620f0d63e8674c05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7418 } Some("alloc::vec::Vec::push::h24d882c48519e81b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6293 } Some("core::iter::traits::iterator::Iterator::collect::hecec552b03f6e126") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8145 } Some("::into_searcher::hb28dee06816e3ffc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7428 } Some(" as core::ops::deref::Deref>::deref::h2d9778407572d65d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8146 } Some("::into_searcher::hc6257583ca9cf857") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7484 } Some("std::ffi::os_str:: for alloc::string::String>::as_ref::h9488c0fe53f0da26") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8147 } Some("::into_searcher::hdf5412e6ab67c2c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6360 } Some("core::ops::function::FnMut::call_mut::h7c04aff8ab4ddd1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7488 } Some("::deref::h5e6fc17ecabe796b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6428 } Some(" as core::ops::drop::Drop>::drop::h5c689eb7b07f8e08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7519 } Some("core::fmt::rt::Argument::new_display::h0e7410e3b16cc315") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6453 } Some(" as core::ops::drop::Drop>::drop::h85731666f2dafa9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7524 } Some("core::ptr::drop_in_place>::h1945713db71809c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7708 } Some("alloc::vec::Vec::push::h3be78b119a5e2bf5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1342 } Some(">::call::hd830b6e7ec077159") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7712 } Some("alloc::vec::Vec::push::hecd27d77285c7a33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7723 } Some(" as core::ops::deref::Deref>::deref::hc00a93934100a8e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8148 } Some("::into_searcher::he49257cc67b6ee00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 614 } Some("alloc::vec::Vec::pop::hcd1d01aecb46901c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7404 } Some("core::ptr::drop_in_place::heac54947b4013069") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1159 } Some("once_cell::unsync::OnceCell::try_insert::h593dfc71caf06e2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6497 } Some(" as core::ops::drop::Drop>::drop::hfb98b40535fb1736") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 371 } Some("core::str::pattern::TwoWaySearcher::next::h1892b8ebdad83738") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1205 } Some("wasm_bindgen_test::__rt::State::print_results::h2cd3cfa4687ceb72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6498 } Some(" as core::ops::drop::Drop>::drop::hed52c69a7c36fa98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6499 } Some(" as core::ops::drop::Drop>::drop::h0e45d64ca472a911") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6500 } Some(" as core::ops::drop::Drop>::drop::h0993a5645f1fc579") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6524 } Some("core::hash::impls::::hash::h1a2a7e3c6dc9f4de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6525 } Some("core::hash::impls::::hash::h83a5688fcf2141a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7406 } Some("core::ptr::drop_in_place>::h91004bd680bea6e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6531 } Some("core::hash::impls::::hash::h8cb3e5f063f7fb2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7410 } Some("core::ptr::drop_in_place>::h4a58a52b5446d8b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 387 } Some("alloc::str::::replace::hbccedbb307b40542") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7574 } Some("links_notation::parser::links::hf8734c21a39a0c13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5433 } Some("alloc::collections::btree::node::slice_insert::h1ec456dafe0d0848") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7441 } Some("core::ptr::drop_in_place>::h2bf0457c11d4c504") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1690 } Some(" as core::iter::traits::iterator::Iterator>::next::hd68214b2a7875667") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3865 } Some("wasm_bindgen::convert::closures::_::invoke::h16c7df88d180686a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3874 } Some("wasm_bindgen::convert::closures::_::invoke::h35f4b97a84d763df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 209 } Some(" as test::formatters::OutputFormatter>::write_result::h7f3e06afacba7b04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3877 } Some("wasm_bindgen::convert::closures::_::invoke::h4a6cd5550f76be58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4500 } Some("link_cli::query_processor::QueryProcessor::resolve_match_id::h48adbaa4cec3e63a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7724 } Some(" as core::ops::deref::Deref>::deref::hca6e3899acce8245") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6673 } Some("std::collections::hash::map::HashMap::remove::h05eca73309c0f658") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7910 } Some("core::fmt::rt::Argument::new_display::h6e984029d31f3544") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3998 } Some("once_cell::unsync::OnceCell::try_insert::h9b109a0744e5d5eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7911 } Some("core::fmt::rt::Argument::new_display::he23732a820a5dd7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7912 } Some("core::fmt::rt::Argument::new_debug::h9dc706553a236e34") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4565 } Some(" as core::iter::traits::iterator::Iterator>::fold::h3c9bbb66b9c3f33d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7947 } Some("core::ptr::drop_in_place>::h782e44b27fec64b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4566 } Some(" as core::iter::traits::iterator::Iterator>::fold::h3f50fc5e49ac702d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6674 } Some("std::collections::hash::map::HashMap::remove::h9b64912efba8395d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7950 } Some("core::ptr::drop_in_place>::h0673955da64b5b11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 608 } Some("alloc::vec::Vec::try_remove::h6d35b60bc0ea492f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7952 } Some("core::ptr::drop_in_place>>::h9cedb93317a4ae52") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7956 } Some("core::ptr::drop_in_place>>::h4dd16599e2bdb1a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7102 } Some("core::slice::sort::shared::smallsort::small_sort_network::hc453ccf410625273") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7958 } Some("core::ptr::drop_in_place>>::h42a62161f1cce1d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7959 } Some("core::ptr::drop_in_place>>::h301f42d0ca1bcde5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7128 } Some("core::slice::sort::unstable::quicksort::partition_lomuto_branchless_cyclic::h09ace4bdf788415d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7130 } Some("core::slice::sort::unstable::quicksort::partition_lomuto_branchless_cyclic::h3bba7449f074ae50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 216 } Some(" as test::formatters::OutputFormatter>::write_result::h8e7f1482d7554177") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8827 } Some("dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h0e84f108fd9f7b7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7267 } Some(" as core::hash::Hasher>::write::h2b1ee97fad441e22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7376 } Some(" as core::hash::Hasher>::write::h7271bc056fbb16a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 414 } Some("test::stats::Summary::new::h5dd691c5bb355614") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7502 } Some(" as core::hash::Hasher>::write::h6af6526326d42728") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6687 } Some("core::str::::parse::h321e080e4b79fb8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6712 } Some("anyhow::ptr::Own::boxed::h2662c5b3e09b8e42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6713 } Some("anyhow::ptr::Own::boxed::h2d84d02889d17bea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6821 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::hc891803a1625683f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5448 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_recursing::h80d918dcb717e4c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7521 } Some("core::ptr::drop_in_place::hf22c138885fa7ff5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6822 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::hcf07560299dd2ddc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7522 } Some("core::ptr::drop_in_place::{{closure}}>>::ha465ee5937db321b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6824 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::hfe4f92a3e0bbce64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7047 } Some(" as core::iter::traits::iterator::Iterator>::next::h31d6715de3a12d6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7048 } Some(" as core::iter::traits::iterator::Iterator>::next::h71564b441e5d4f44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7199 } Some(" as core::ops::drop::Drop>::drop::h8e339ae0d70eac06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7275 } Some("core::intrinsics::rotate_left::hc675c2015866332d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7277 } Some("core::hash::impls::::hash::hc93087e94d14ce66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9140 } Some("core::num::flt2dec::strategy::dragon::mul_pow10::h29c922d5b323c1a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7339 } Some("::to_string::ha04193a1dc8926d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7341 } Some("core::intrinsics::rotate_left::hb2ba6e108b9279cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7518 } Some("core::intrinsics::rotate_left::h85a91dd12149f30c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7710 } Some("alloc::vec::Vec::push::h57ee12d383ae66de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7731 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h91c50c991023f078") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7733 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::haa973be745a53f51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7961 } Some("core::ptr::drop_in_place>>::h6ae680867e8e588c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8233 } Some("core::iter::traits::iterator::Iterator::collect::h9b48aac75eff5ef4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7962 } Some("core::ptr::drop_in_place>>::ha311fef77df68e3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8234 } Some("core::iter::traits::iterator::Iterator::collect::he810f9b63f71e8e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8052 } Some("::haystack::had3f311adfe2c82a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8319 } Some("nom::character::complete::char::hbfde76d52e2c19fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8323 } Some("::to_string::h48c3e4f0f92db9d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8092 } Some("::drop::h89611007ef4d2b47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8362 } Some("core::iter::adapters::zip::TrustedRandomAccessNoCoerce::size::he32ab9587c943870") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8093 } Some("::drop::h2432985e27ebdfbd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8377 } Some("<&str as nom::traits::Input>::input_len::h9889b32a09640e68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8107 } Some(" as nom::internal::Parser>::process::{{closure}}::h450344623e5c27f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8616 } Some("anyhow::ptr::Own::boxed::h5f7784b024a12b8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4567 } Some(" as core::iter::traits::iterator::Iterator>::fold::h8fd7c7237c665c24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8126 } Some("::len::h60ca2ccb75428900") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4707 } Some("alloc::vec::Vec::pop::h8ba8a6943649a326") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8127 } Some("core::char::methods::::len_utf8::h477cca5eb3049464") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4709 } Some("alloc::vec::Vec::push_mut::h108613c199814a5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8199 } Some(" as core::ops::drop::Drop>::drop::h3979b26f76ed6f59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8201 } Some(" as core::ops::drop::Drop>::drop::h67cd9c8b79bed396") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4736 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h081b4aa997811dbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8252 } Some(" as core::iter::adapters::SourceIter>::as_inner::h7b166e8e55994493") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4737 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h7a0c95fdb0f4cc88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7523 } Some("core::ptr::drop_in_place::h093b8eceaeb3b3a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4738 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h911327a0894768cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7525 } Some("core::ptr::drop_in_place>::he20487b78d7fcf8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7594 } Some("links_notation::parser::count_indentation::{{closure}}::h6be3656115ba0fc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4869 } Some("hashbrown::raw::RawTableInner::drop_elements::hd88836e01ed115c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7931 } Some("core::ptr::drop_in_place>>::h288b148da5fcd38b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7932 } Some("core::ptr::drop_in_place>>::h44b27173dac0a197") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7933 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h642871880ea15c93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6872 } Some("hashbrown::raw::RawTableInner::drop_elements::h06a707a21d99f4b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7934 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard,alloc::alloc::Global>>::hcb80c1483e41b60c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6875 } Some("hashbrown::raw::RawTableInner::drop_elements::h30a5008a299bc5b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7625 } Some("links_notation::parser::parse_multi_quote_string::h21e65101094408ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6877 } Some("hashbrown::raw::RawTableInner::drop_elements::h739c7b34979fc7d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7935 } Some("core::ptr::drop_in_place::extend_trusted,alloc::str::replace_ascii::{{closure}}>>::{{closure}}>::h110d5db044b060b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6879 } Some("hashbrown::raw::RawTableInner::drop_elements::h8b0b4f7f2be47c8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6107 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::hb6fb11ac3eda37a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7936 } Some("core::ptr::drop_in_place::h7187391452988623") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6777 } Some("alloc::vec::Vec::push_mut::he3faa4a788a39572") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7937 } Some("core::ptr::drop_in_place, as core::convert::From>::from::{{closure}}>>::h1252d3fe4952b3d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7938 } Some("core::ptr::drop_in_place>::h7a58737846ed256e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6785 } Some("alloc::vec::Vec::push_mut::h6c6e0a528afe078c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7939 } Some("core::ptr::drop_in_place>::extend_trusted,links_notation::flatten_link_recursive::{{closure}}>>::{{closure}}>::h6ef8433d09000381") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6807 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h096cdf169af941ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7940 } Some("core::ptr::drop_in_place>::extend_trusted,links_notation::flatten_link_recursive::{{closure}}>>::{{closure}}>::h8f4058c8c1106b1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6808 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h9fd1542ff98aa86f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7941 } Some("core::ptr::drop_in_place::extend_trusted,alloc::str::replace_ascii::{{closure}}>>::{{closure}}>::{{closure}}>::h6e360e2af1dac626") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6809 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::hc260adac3b603d2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7942 } Some("core::ptr::drop_in_place::heaea727b7594c5ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8617 } Some("anyhow::ptr::Own::boxed::hdb1d363d72925bc9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7943 } Some("core::ptr::drop_in_place,alloc::vec::Vec>::extend_trusted,links_notation::flatten_link_recursive::{{closure}}>>::{{closure}}>::{{closure}}>::h18bf39f00f1e7e7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8618 } Some("anyhow::ptr::Own::boxed::hf3688385ce49c061") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8619 } Some("anyhow::ptr::Own::boxed::hf3b62c6d277f6e30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5108 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::hcfcbf0e03d054962") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8784 } Some("core::option::Option::is_some::hf22ac27d17f38e91") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8890 } Some("std::thread::local::panic_access_error::h51965b3f73a3f6a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8909 } Some("<&T as core::fmt::Debug>::fmt::h7b11e432fd0b7a0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9117 } Some("core::fmt::builders::DebugSet::finish::ha3db38f7e921b22c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9118 } Some("core::fmt::builders::DebugList::finish::hc753708777d978b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9130 } Some("core::fmt::Formatter::debug_map::ha7cef5bea3cd87ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5110 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::hb872653e0741af9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7025 } Some("link_cli::query_types::Pattern::new::h036607b594cf31e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7206 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h278d2991e377bfb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7944 } Some("core::ptr::drop_in_place,alloc::vec::Vec>::extend_trusted,links_notation::flatten_link_recursive::{{closure}}>>::{{closure}}>::{{closure}}>::h32fbf84491df1019") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7945 } Some("core::ptr::drop_in_place::h1281f7285e2c9671") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7707 } Some("alloc::vec::Vec::pop::h9707fd425605032b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7946 } Some("core::ptr::drop_in_place::extend_trusted,alloc::str::replace_ascii::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::he57fe0a7e061a1c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7948 } Some("core::ptr::drop_in_place>::h9cb3d1ba59594346") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7726 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h2d72611512939f8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8350 } Some("alloc::str:: for alloc::string::String>::borrow::h308b70933a8dee18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7727 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h7513180da1fb8707") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8354 } Some("::deref::h2f60e97b59a99da3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8031 } Some(" as nom::internal::Parser>::process::{{closure}}::hf8bbf57812a7c899") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7951 } Some("core::ptr::drop_in_place::h62c737cafbc0dc99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7953 } Some("core::ptr::drop_in_place,(),links_notation::flatten_link_recursive::{{closure}},core::iter::traits::iterator::Iterator::for_each::call,alloc::vec::Vec>::extend_trusted,links_notation::flatten_link_recursive::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::hd347b3a6dec8bf58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7320 } Some("hashbrown::raw::RawTableInner::drop_elements::ha0d809c721144449") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7954 } Some("core::ptr::drop_in_place,(),links_notation::flatten_link_recursive::{{closure}},core::iter::traits::iterator::Iterator::for_each::call,alloc::vec::Vec>::extend_trusted,links_notation::flatten_link_recursive::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::he13c856d823c1edd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8387 } Some("core::ptr::drop_in_place>::hb66462d34036497f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8500 } Some("::deref::haef8ec221e5262b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8517 } Some("core::mem::drop::h21834aeee0e49b3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9147 } Some("core::cell::panic_already_borrowed::hed79291954bfa6ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7957 } Some("core::ptr::drop_in_place>::h4c3fd7e9d9576af4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9149 } Some("core::cell::panic_already_mutably_borrowed::hacc25964e8eff904") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10681 } Some("__wbgtest_coverage_path.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5112 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h0300aa22dc799016") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 170 } Some("core::ops::function::FnOnce::call_once::hbc72bba245b64b8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 192 } Some("core::ptr::drop_in_place::{{closure}}>>::hf04a03ef944db990") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 193 } Some("core::ptr::drop_in_place::{{closure}}>>::haea226b5ca864313") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7960 } Some("core::ptr::drop_in_place>>::hd02ff28625876080") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 194 } Some("core::ptr::drop_in_place::{{closure}}>>::hf09c418326810b35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7980 } Some("core::str::::is_empty::had05f8a8380ca008") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 195 } Some("core::ptr::drop_in_place::{{closure}}>>::h98abc1282210cc61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8083 } Some("core::option::Option::is_none::h9409a6f02591d9ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 264 } Some("::fmt::h34b4e6fd96ade791") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8386 } Some("core::ptr::drop_in_place::h830c0c85bdb33430") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 158 } Some("core::slice::raw::from_raw_parts::precondition_check::hf3d4ad2c17fafba5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8389 } Some("core::ptr::drop_in_place>::hb7a7a11f4d2d8d4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8530 } Some("core::ptr::drop_in_place>::h99a8e95f00eb9633") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 342 } Some("core::ptr::drop_in_place::h3e8daba0772d81c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9009 } Some("rustc_demangle::v0::Printer::print_sep_list::h3d577f1ff5506d67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5114 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h27f603a9a1ffaeae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 545 } Some("serde_json::de::Deserializer::parse_number::ha8721d81daf6007e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 715 } Some("core::result::Result::map::h8d7ae2ee9e0414da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4451 } Some("core::slice::sort::stable::driftsort_main::h3c6c5401c163858a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4453 } Some("core::slice::sort::stable::driftsort_main::h52bfab2e248ed5a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4455 } Some("core::slice::sort::stable::driftsort_main::h730597b5d787801b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4456 } Some("core::slice::sort::stable::driftsort_main::h74139c48dcd1a9c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4457 } Some("core::slice::sort::stable::driftsort_main::h7a5f753f720a367a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4458 } Some("core::slice::sort::stable::driftsort_main::hb4a1a8f889b4e5dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4459 } Some("core::slice::sort::stable::driftsort_main::hbc92efcbb745e9b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5339 } Some("serde_json::de::Deserializer::parse_number::h2da8dbc4c392b14c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6526 } Some("core::slice::sort::stable::driftsort_main::h19171446eec28af1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 222 } Some(" as test::formatters::OutputFormatter>::write_run_start::h164c9bb51aec0c81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 223 } Some(" as test::formatters::OutputFormatter>::write_run_start::h688265b4b8ca46a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4371 } Some("core::slice::sort::shared::pivot::choose_pivot::h306766bc714206df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4372 } Some("core::slice::sort::shared::pivot::choose_pivot::h32de77fa7ef76fac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4373 } Some("core::slice::sort::shared::pivot::choose_pivot::h598bf9d2b8710fb0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4374 } Some("core::slice::sort::shared::pivot::choose_pivot::h5cfe7ed15eb1632b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4375 } Some("core::slice::sort::shared::pivot::choose_pivot::h7e3bd172b47c3b82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4376 } Some("core::slice::sort::shared::pivot::choose_pivot::hb99b27cfe3ac3cad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4377 } Some("core::slice::sort::shared::pivot::choose_pivot::hed7640f07c204c47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6730 } Some("core::slice::sort::shared::pivot::choose_pivot::h0fa12dc15ff1b9b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6731 } Some("core::slice::sort::shared::pivot::choose_pivot::hf9a3b8f2a50cf126") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8900 } Some("std::panicking::default_hook::h25a21008cb57516b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 389 } Some("test::types::TestDesc::padded_name::h4eb837148d4df704") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1234 } Some("wasm_bindgen_test::__rt::Context::new::h87b7da0765be37be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4345 } Some("core::slice::::reverse::revswap::h24710e800d256056") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4364 } Some("core::slice::sort::shared::pivot::median3_rec::h1430650f450d855a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4365 } Some("core::slice::sort::shared::pivot::median3_rec::h505e8b7248944499") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4366 } Some("core::slice::sort::shared::pivot::median3_rec::h547bd96f627f3ead") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4367 } Some("core::slice::sort::shared::pivot::median3_rec::h650cbf178c1edcff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4368 } Some("core::slice::sort::shared::pivot::median3_rec::h6ba3fc480ca913db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4369 } Some("core::slice::sort::shared::pivot::median3_rec::h6c109df8028fe73e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4370 } Some("core::slice::sort::shared::pivot::median3_rec::h77350594e7b4ed18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6728 } Some("core::slice::sort::shared::pivot::median3_rec::h3c4931c370252036") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6729 } Some("core::slice::sort::shared::pivot::median3_rec::h8e4cdd7339b5b634") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7143 } Some("core::slice::::reverse::revswap::hc2dec22fd1057acd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8918 } Some("core::fmt::Write::write_char::h7354d8f8882ad2d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 112 } Some("web::reports_invalid_options::hf77037286ce6553e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4701 } Some("alloc::vec::Vec::extend_desugared::h579803fc9c24e3bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 379 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h4bbc8f76870865ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 373 } Some("core::hash::BuildHasher::hash_one::hbd2715a159f88c4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6889 } Some("hashbrown::raw::RawIterRange::fold_impl::h68d9cc7c0692b110") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 703 } Some(">::deserialize::MapVisitor as serde_core::de::Visitor>::visit_map::h88aa1b009cf825b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7489 } Some("std::sys::thread_local::no_threads::LazyStorage::initialize::hd6d764771aec398d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 471 } Some("getopts::OptGroup::long_to_short::h1351d7342c15ee04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9002 } Some("core::str::iter::SplitInternal

::next::h755c87a1783cac64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 769 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::hdc85e13e2c0413a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5734 } Some("alloc::collections::btree::map::BTreeMap::insert::h6aaff3a204e07d66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6599 } Some("hashbrown::map::HashMap::insert::hf0d4614c64d5297d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8778 } Some("core::slice::index::range::h774cb6f6404967ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 645 } Some("alloc::collections::btree::node::NodeRef::ascend::h679c88eac498b4b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 661 } Some("alloc::collections::btree::node::NodeRef::ascend::h3bedf4a5adfa0b12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8519 } Some("core::mem::drop::h4d5479176deb1dda") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8535 } Some("core::ptr::drop_in_place::extend_trusted<&mut core::str::iter::Bytes>::{{closure}}>::h024a78941d3da6e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 451 } Some("::fmt::h7135bb139f5893c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8536 } Some("core::ptr::drop_in_place::he44c0ada42aea17c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 689 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h01b24a2d588f44e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 690 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h0436d2019fb70b11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8537 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h664b091c433e8e63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 691 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h68d694365e90d7c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8538 } Some("core::ptr::drop_in_place>::h5b9b369918c7946b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 653 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::kv_mut::h49565e2f5045c86e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8540 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h45e56c391b97b5c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 692 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hb88a3e4471223a89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8541 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard<&dyn core::error::Error,alloc::alloc::Global>>::h7eddb4ef61452c9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 712 } Some("core::slice::raw::from_raw_parts::precondition_check::hf3f4161ed74edfe7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8543 } Some("core::ptr::drop_in_place::extend_trusted<&mut core::str::iter::Bytes>::{{closure}}>::{{closure}}>::hd12b40bf255ecd73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8521 } Some("core::mem::drop::h6f17681c47dc4f67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 693 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hc8e8e33fc8ac911f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8523 } Some("core::mem::drop::he21445f846a5f170") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 694 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hd360ad7bd3135ce4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8527 } Some("core::ptr::drop_in_place>>::h310cd0d0fc4a8b9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 695 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hd6d6308327eae44b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8533 } Some("core::ptr::drop_in_place>>::ha8c52420d77cfd4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 696 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hdbeadfb1597bf8a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8534 } Some("core::ptr::drop_in_place>>::hdaff1d191d998a5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 768 } Some(" as serde_core::de::Visitor>::visit_some::ha1604d729d2d04e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8548 } Some("core::ptr::drop_in_place>::hfa8ae871a3067270") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 776 } Some(" as core::ops::function::FnOnce<()>>::call_once::h868f3d23d696aa66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8551 } Some("core::ptr::drop_in_place>::h6ac2882d8dd1c5fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 793 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hf1525c7ce509d7b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 871 } Some("core::ptr::drop_in_place::hce661dffa5958b40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8556 } Some("core::ptr::drop_in_place>::h5d753c76de3b2a33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 887 } Some("core::ptr::drop_in_place>::h7583b04c3361f266") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8562 } Some("core::ptr::drop_in_place>::h1a153d89c8d8e332") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 890 } Some("core::ptr::drop_in_place>::h7e1c8b6281a7d862") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8573 } Some("core::ptr::drop_in_place>::h8526f8b99397b9d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 891 } Some("core::ptr::drop_in_place<(wasm_bindgen_test::__rt::Test,wasm_bindgen_test::__rt::Failure)>::h60f33b91e63ece53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 980 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hee896869bfdaa846") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8577 } Some("core::ptr::non_null::NonNull::new_unchecked::h0a8eeaaf07af0ec9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1000 } Some("wasm_bindgen_test::__rt::browser::_::::from_abi::hc786f5d88f3c0fa0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8580 } Some("core::ptr::non_null::NonNull::new_unchecked::h655e06701f3b050c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1005 } Some("wasm_bindgen_test::__rt::browser::_::::from_abi::hec21b13622758810") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 665 } Some("alloc::collections::btree::node::NodeRef::ascend::h63b3d0831fff83ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8581 } Some("core::ptr::non_null::NonNull::new_unchecked::hd78da90c507fddab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 713 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::hb3eac709b671d47d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8544 } Some("core::ptr::drop_in_place::wrap_mut_2<(),u8,core::iter::traits::iterator::Iterator::for_each::call::extend_trusted<&mut core::str::iter::Bytes>::{{closure}}>::{{closure}}>::{{closure}}>::h85574f3e4aa5b860") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1451 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::serialize::h05e8eb1af50e3c74") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8545 } Some("core::ptr::drop_in_place::h12e8934632efe93e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1457 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::serialize::hf14cc88a74934339") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8547 } Some("core::ptr::drop_in_place::ha220be9a4c6dde85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8550 } Some("core::ptr::drop_in_place::h1728f796d03a8534") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1010 } Some("wasm_bindgen_test::__rt::browser::Browser::new::{{closure}}::hd106a0fd7d2ff598") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1743 } Some("core::slice::raw::from_raw_parts::precondition_check::h239ef9ae3b53e554") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8553 } Some("core::ptr::drop_in_place>::h8bce09e300d43d84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1098 } Some("wasm_bindgen::JsThreadLocal::with::h4606e92c80f68bd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8554 } Some("core::ptr::drop_in_place>::h2cbd410f7ad74581") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1099 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h216811ab17f17cba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8555 } Some("core::ptr::drop_in_place::h71f71c02f3534156") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1952 } Some("js_sys::global::get_global_object::h48bdecd4bcb09f8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8558 } Some("core::ptr::drop_in_place>::hc362e2b390d599a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3695 } Some("core::slice::raw::from_raw_parts::precondition_check::h731ab4299c4bba8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1100 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h4561427d67628706") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1491 } Some("wasm_bindgen_test::__rt::criterion::_::::serialize::hd1c9d24596a73d79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5116 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h9412b4fe71f330ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4423 } Some("core::slice::sort::stable::merge::merge::h03242e88bcf45b25") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4424 } Some("core::slice::sort::stable::merge::merge::h9c97a36cbaa12a88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1101 } Some("wasm_bindgen::cast::JsCast::unchecked_into::hd0c3a990dd7af35f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5118 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h07cd0c34d81fe081") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1102 } Some("wasm_bindgen::JsValue::is_undefined::h4f3402b1e9433c9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1110 } Some("wasm_bindgen::convert::impls::::into_abi::h52bd22e248cff767") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4425 } Some("core::slice::sort::stable::merge::merge::ha6b1a6a5fbb85a8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4426 } Some("core::slice::sort::stable::merge::merge::haa07b029417c5813") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 453 } Some("alloc::str::join_generic_copy::hcc5aad49c05721d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4427 } Some("core::slice::sort::stable::merge::merge::hc3de733999c6b7bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4428 } Some("core::slice::sort::stable::merge::merge::hf49a111ca24127c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4429 } Some("core::slice::sort::stable::merge::merge::hff1608d1f6ffb068") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5840 } Some("zmij::to_decimal_fast::h2bc8b4a511e59cd4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4290 } Some("core::iter::traits::iterator::Iterator::try_fold::h2150db9d9bc6f66c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1131 } Some("::clone::h9b566de55a02468d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5061 } Some("::ensure_created::h045eb6a2caf2a813") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1135 } Some(">::from::h1380faf232385ab2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8582 } Some("core::ptr::non_null::NonNull::new_unchecked::hff98e386e0089358") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1176 } Some("wasm_bindgen_test::__rt::context_arg::hc62bb07d1f2f506d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5134 } Some("core::slice::raw::from_raw_parts::precondition_check::hbb86b341ca62ebd4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8610 } Some("anyhow::ptr::Own::cast::h3f209f5d0f4b2c19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5135 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h2ca9bf396db83319") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8611 } Some("anyhow::ptr::Own::cast::h5801ead7af24c190") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8612 } Some("anyhow::ptr::Own::cast::h7d46493a9c3e9bd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1231 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::_::::from_abi::h94702c2d0d56d8a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5302 } Some("core::slice::raw::from_raw_parts::precondition_check::h5d366f6117c1b86f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8613 } Some("anyhow::ptr::Own::cast::h7f1de5e6340a5223") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5432 } Some("alloc::collections::btree::node::NodeRef::ascend::ha1cfd9e480860024") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8561 } Some("core::ptr::drop_in_place::h093b5c34cc22d043") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8614 } Some("anyhow::ptr::Own::cast::hb8d1398fb8201a2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8615 } Some("anyhow::ptr::Own::cast::he2fd2217be61600b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5450 } Some("alloc::collections::btree::node::NodeRef::ascend::h7cd2949c6568bc3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8621 } Some("anyhow::ptr::Ref::new::h13498d228247baba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8566 } Some("core::ptr::drop_in_place>::hcca15ecbb1ed711e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5454 } Some("alloc::collections::btree::node::NodeRef::ascend::h72e631fcf18cc97a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8567 } Some("core::ptr::drop_in_place>::hf3048af840fc256e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8623 } Some("anyhow::ptr::Ref::new::he84d89b544472f11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7159 } Some("core::slice::sort::stable::merge::merge::h2e3831aeb89247c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8569 } Some("core::ptr::drop_in_place>::h12d3c356b8febe15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8570 } Some("core::ptr::drop_in_place>::h828e13a501bca75f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7584 } Some("links_notation::parser::push_indentation::h317d9eaa27939ef0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8572 } Some("core::ptr::drop_in_place>::h996dd1e7ecc2f3de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4510 } Some("link_cli::query_processor::QueryProcessor::find_all_solutions::ha2caf552de6d9c71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8625 } Some("anyhow::ptr::Ref::cast::h062e8f067775ea2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6249 } Some("link_cli::query_processor::QueryProcessor::create_pattern_from_lino::h813b2c36d7be774d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8626 } Some("anyhow::ptr::Ref::cast::h0bfe36fc005cb4c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8627 } Some("anyhow::ptr::Ref::cast::h13288625c576da97") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 235 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h0806eeb36676f291") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8628 } Some("anyhow::ptr::Ref::cast::h360bb3847da1ce1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5442 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::kv_mut::h8b79532a33cd199d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8629 } Some("anyhow::ptr::Ref::cast::h447ff4f8eefb719b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8630 } Some("anyhow::ptr::Ref::cast::hb038d3aae8cdd356") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5602 } Some("::compare::h6994a71d8d11227c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8631 } Some("anyhow::ptr::Ref::cast::hb4e9be6b05f01f1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5610 } Some("core::slice::raw::from_raw_parts::precondition_check::h7b7857b8835e4878") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1245 } Some("core::num::nonzero::NonZero::new_unchecked::precondition_check::hd3fc14bb2e3149eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5914 } Some("core::slice::raw::from_raw_parts::precondition_check::h0a5e9b4884df564d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8632 } Some("anyhow::ptr::Ref::cast::hdfbca24db77029e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1258 } Some(" as core::ops::drop::Drop>::drop::hbea019a1e490a66d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8647 } Some("core::fmt::rt::Argument::new_display::h49a64ffbaee72206") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1364 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h1fac36e4a69fb35a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8648 } Some("core::fmt::rt::Argument::new_display::h67112bfcc2445519") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8649 } Some("core::fmt::rt::Argument::new_display::hd85dda2468088bfb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8650 } Some("core::fmt::rt::Argument::new_display::hfd21dce32c97d50a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8693 } Some("alloc::boxed::Box::from_raw::h31833bd9f62efdff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1443 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h845870cfea8b4a6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8694 } Some("alloc::boxed::Box::from_raw::h4c46c91cc34de4e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5934 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h6b349fe6a96d60ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1586 } Some("wasm_bindgen_test::__rt::detect::_::::from_abi::h6465218efe675c1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8574 } Some("core::ptr::drop_in_place>::h0a825d562df2e670") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1587 } Some("wasm_bindgen_test::__rt::detect::_::::from_abi::h37e770dfc2d34236") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1592 } Some("wasm_bindgen_test::__rt::detect::_::::from_abi::h344bd319b53f8444") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4975 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::hadb8c7b9b82c3400") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1653 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hbd1c58f552827905") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1656 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h0d43aac0905e4f04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1663 } Some("js_sys::futures::task::singlethread::Task::spawn::{{closure}}::hd8adc8ae2f073f40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8575 } Some("core::ptr::drop_in_place>::hd27536453e48eaf4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8576 } Some("core::ptr::drop_in_place::h1d68a51bdffd536d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6192 } Some("core::slice::raw::from_raw_parts::precondition_check::he2b6bc53ce532018") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8660 } Some("core::fmt::Formatter::alternate::hc0c05c7ba12ececb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1676 } Some("core::hint::unreachable_unchecked::precondition_check::h761f538b10fa9872") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8779 } Some(" as core::ops::range::RangeBounds>::end_bound::h150bfa60ff7f39ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1696 } Some("core::iter::traits::iterator::Iterator::enumerate::h3a8ce90d2c573f8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1709 } Some("core::ops::range::RangeInclusive::new::h9d4bc2e560cd73aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1728 } Some(" as core::ops::drop::Drop>::drop::h027fcaabc5a773ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1734 } Some("core::hint::unreachable_unchecked::precondition_check::h823bddbecff21af4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8695 } Some("alloc::boxed::Box::from_raw::h61dc193f63d2fe8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1764 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h97d2e5a251d55c36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6225 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h8b535c7a6a4fa6c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8696 } Some("alloc::boxed::Box::from_raw::h8fd306ba5db43828") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8756 } Some("::haystack::h4249ef6714e17a23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6653 } Some("std::collections::hash::map::HashMap::new::h1bafeb6a415dc87b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8774 } Some("core::iter::traits::iterator::Iterator::enumerate::h62532bb26a756048") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6654 } Some("std::collections::hash::map::HashMap::new::h3a60e5133b6866bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8806 } Some("<&mut I as core::iter::traits::iterator::Iterator>::size_hint::h9a3949b6c27ff00f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8832 } Some("std::alloc::rust_oom::hbbbc0258d349aa94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10684 } Some("clink_reset.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 236 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h18a78c4ba884b098") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10687 } Some("clink_snapshot.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 63 } Some("core::option::Option::take::h1e147af21b7e7493") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4501 } Some("link_cli::query_processor::QueryProcessor::match_link_against_pattern::h06acaf120f9be10a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8851 } Some("<&std::io::stdio::Stderr as std::io::Write>::write_fmt::hb88020ac45491cb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8858 } Some("<&std::io::stdio::Stdout as std::io::Write>::write_fmt::h7ff45d3b91107c4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1892 } Some("js_sys::_::::from_abi::h55e90d3c0830305b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4503 } Some("link_cli::query_processor::QueryProcessor::matched_links::h7b6988717566f72f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1893 } Some("js_sys::_::::from_abi::h711ca77b73290e18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1894 } Some("js_sys::_::::from_abi::he5163d248e129e9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6655 } Some("std::collections::hash::map::HashMap::new::h60621f73bc690c8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1895 } Some("js_sys::_::::from_abi::hd12e5082a92dbb3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1896 } Some("js_sys::_::::from_abi::h1d8893f04a68be38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 358 } Some("core::ptr::drop_in_place>::h50335bdd639ce577") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6656 } Some("std::collections::hash::map::HashMap::new::hf6fa4e581b88baa2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6892 } Some("hashbrown::raw::RawTable::remove_entry::h8a32436a31060740") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4571 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h5b07f710fbe9f3e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4574 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h83e2d2fa0b9b4169") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4283 } Some("link_cli::link_reference_validator::LinkReferenceValidator::validate_links_exist_or_will_be_created::h565c44dd52f39c1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1897 } Some("js_sys::_::::from_abi::h314c51fe7cf0521d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1898 } Some("js_sys::_::::from_abi::hf024cf8fa7f9a732") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1899 } Some("js_sys::_::::from_abi::h8d482ce30896201c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1900 } Some("js_sys::_::::from_abi::h50e7c1f498dac9ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1901 } Some("js_sys::_::>::from_abi::h5fc955d54ed75fed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 319 } Some("std::sync::mpmc::zero::Channel::send::{{closure}}::h174393c24bbcc4a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1902 } Some("js_sys::_::::from_abi::h9018af148f2d2ccb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 64 } Some("core::option::Option::take::h421d8110c79004dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 65 } Some("core::option::Option::take::hb324188efdd9fc9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4657 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h00c0534320564a2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6986 } Some("core::slice::raw::from_raw_parts::precondition_check::h40ea379e0db9be19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 66 } Some("core::option::Option::take::he8a3c679ee956a1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6987 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h70baba8c58f688b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 187 } Some("core::ptr::drop_in_place::{{closure}}>::ha570bca1237dd5a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 189 } Some("core::ptr::drop_in_place::{{closure}}>::h805a2a7a12792783") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3375 } Some("core::slice::index::range::he839996fe21c2fca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 190 } Some("core::ptr::drop_in_place::{{closure}}>::hb042bf5ba892dbdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 191 } Some("core::ptr::drop_in_place::{{closure}}>::hcab9b1f861ad103e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8810 } Some(" as core::ops::drop::Drop>::drop::h27e87be9b7f66518") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8811 } Some(" as core::ops::drop::Drop>::drop::h6790a39a98daf8a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7126 } Some("core::ptr::swap::hd01391b251720df4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7160 } Some("std::collections::hash::map::HashMap::new::hcd05ec16ed0aac56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 687 } Some("alloc::string::String::from_utf8_unchecked::h39732026ef877ce1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8812 } Some(" as core::ops::drop::Drop>::drop::h8f3c8770a17ad1dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7165 } Some("core::slice::raw::from_raw_parts::precondition_check::h0ff297ab9d40bba7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8849 } Some("std::io::stdio::set_output_capture::h1744639dfda214a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7183 } Some("lino_env::LinoEnv::new::h71c5c1124af1f1a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9119 } Some("core::fmt::Formatter::debug_list::h25e734e3365b69f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7218 } Some("core::slice::raw::from_raw_parts::precondition_check::h6dc2605b7e80a142") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9121 } Some("core::fmt::Formatter::debug_struct::h0241484531271418") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7258 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h3e8ad603d59244d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9131 } Some("core::fmt::Formatter::debug_set::h85c9cacafda1a594") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7576 } Some("links_notation::parser::multi_line_link::{{closure}}::h2bf9057c0043bec8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 698 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_i64::h378126aa394208d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7589 } Some("links_notation::parser::single_line_link::{{closure}}::h208fd582df287fc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 699 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_u64::h135b4e2aca68b790") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8247 } Some("core::slice::raw::from_raw_parts::precondition_check::hbd6054eef9869ed9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 729 } Some("alloc::string::String::into_bytes::hf7292e65eb0505b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1021 } Some(" as core::iter::traits::iterator::Iterator>::next::h93bb3029384f4877") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6594 } Some("hashbrown::map::HashMap::insert::h74609c24d724561e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1035 } Some("core::option::Option::is_some::h572730ca82a21e00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1036 } Some("core::option::Option::is_some::h58a2567908477e49") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8916 } Some("::write_all::h917f15af3d2e6187") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1041 } Some("core::option::Option::is_some::hf9f193467977ce54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1044 } Some("core::option::Option::Some::h47e795847581e7d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5571 } Some("serde_json::read::decode_four_hex_digits::h1032d6784e8cddc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1053 } Some("::into_iter::hb7a9d40e362048d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1903 } Some("js_sys::_::::from_abi::h3d3f1120b7b1e7b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1247 } Some("::into_future::h0aa6e831c5133486") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1906 } Some("js_sys::_::>::from_abi::h0c8b347de20c9329") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10669 } Some("__wbgtest_console_debug.command_export externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10670 } Some("__wbgtest_console_error.command_export externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6327 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h68ecd88567c759e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10671 } Some("__wbgtest_console_info.command_export externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10672 } Some("__wbgtest_console_log.command_export externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10673 } Some("__wbgtest_console_warn.command_export externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1909 } Some("js_sys::_::::from_abi::hbaf4bf953d439f69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10678 } Some("wasm_bindgen::convert::closures::_::invoke::hf37dd20d5c6460d2 externref shim multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1929 } Some("js_sys::_::::from_abi::h65a431e18d279aac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 472 } Some("serde_core::de::EnumAccess::variant::h0edda6f3f898b064") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1941 } Some("js_sys::_::>::from_abi::h44ae4f21dc1370c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 474 } Some("serde_core::de::EnumAccess::variant::h99af21aee351f7b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1944 } Some("js_sys::_::>::from_abi::hbf7eb5d9c89a8aeb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8248 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::he3fd200b07f933bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1945 } Some("js_sys::_::>::from_abi::h7cde8aab55ac6eb0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8447 } Some("core::slice::raw::from_raw_parts::precondition_check::he38d2a10ca9331c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1946 } Some("js_sys::_::>::from_abi::h8d6f0fda4fefc942") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6328 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::hc32261510f22bc1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 403 } Some("test::cli::optgroups::hc7c877517f45af62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7098 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::ha67faa7cd04c418d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1947 } Some("js_sys::_::>::from_abi::h9a87582d068c17cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3249 } Some("wasm_bindgen::cast::JsCast::unchecked_into::he1bc8661283183bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3250 } Some("wasm_bindgen::cast::JsCast::unchecked_into::hf80102bf5e2ad6eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3251 } Some("wasm_bindgen::JsValue::is_function::hc93ae4ce0b395283") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5546 } Some("::fmt::h5596c17fd63acc44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4990 } Some("link_cli::named_type_links::NamedTypeLinks::format_structure_recursive::h6376c43c29abbea2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3252 } Some("wasm_bindgen::JsValue::is_undefined::h83f6ad53b5a133c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 476 } Some("serde_core::de::MapAccess::next_entry::h338fd7f535b885e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3257 } Some("wasm_bindgen::closure::_::::from_abi::h2b556a6e3b7aaac5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8481 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h6619b76e639800dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 478 } Some("serde_core::de::MapAccess::next_value::h086c679ed2069d5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8485 } Some("core::slice::raw::from_raw_parts::precondition_check::hab1b5b2a1055099b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 480 } Some("serde_core::de::MapAccess::next_value::h18b06ef903a69c87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 482 } Some("serde_core::de::MapAccess::next_value::h1be71e3d23f7c5a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8999 } Some("rustc_demangle::v0::Printer::print_pat::h29bc1584a45baeeb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 484 } Some("serde_core::de::MapAccess::next_value::h20c7bb6c2536bace") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3911 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h0475497ef7dd8796") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3264 } Some("wasm_bindgen::convert::impls::::into_abi::hbd0296bf17182cf8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4180 } Some("core::ops::control_flow::ControlFlow::Break::h2d0b1c1d04aa8321") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3369 } Some("core::cell::Cell::replace::h4d52994b295e7e47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4203 } Some("::into_iter::h2f7c92591c3b4a61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3388 } Some("::clone::h0d41aa0c33228b30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4240 } Some(" as core::ops::try_trait::Try>::from_output::h469986b08193b0fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3411 } Some("js_sys::futures::task::singlethread::Task::force_wake::{{closure}}::h990527744d6f875a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4242 } Some(" as core::ops::try_trait::Try>::from_output::h8e7ae46506ecf9bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3475 } Some(" as core::ops::drop::Drop>::drop::ha5812551b47aceff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4635 } Some("::into_iter::h0141d69b9a839d9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 620 } Some("alloc::vec::Vec::remove::h504bf8565b00f60e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4637 } Some("::into_iter::h26375beb104fda2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4639 } Some("::into_iter::h69144ed9d0bbdfad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7182 } Some("lino_env::read_lino_env::h89147a3f46e56772") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4640 } Some("::into_iter::h8e45e0e6638d07d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4643 } Some("::into_iter::ha4878faadd991c7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7592 } Some("links_notation::parser::check_indentation::h5a29c02feb511bec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4644 } Some("::into_iter::hb8bfac56cc779518") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4777 } Some("alloc::string::String::from_utf8_unchecked::h6ac842981bd88492") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5725 } Some("::fmt::h019aa1bde985f642") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4921 } Some("core::cell::RefCell::into_inner::h494b27f6ec97319e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5278 } Some("alloc::string::String::from_utf8_unchecked::h599e1bbeeea4b4ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4163 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::hb9988a8e214cacad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3680 } Some("core::ptr::drop_in_place::h815620f84f0ca78a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5283 } Some("alloc::string::String::into_bytes::h3802607a41e33e58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4334 } Some("core::option::Option::ok_or::heeb018999babe76e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5640 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hff2d91da82e84805") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 486 } Some("serde_core::de::MapAccess::next_value::h43b087edc3f0a2de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4494 } Some(" as core::default::Default>::default::h100035b1a509c684") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 488 } Some("serde_core::de::MapAccess::next_value::h47e43bc68c09f73e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4495 } Some(" as core::default::Default>::default::h16e5fa4378a52aa0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 490 } Some("serde_core::de::MapAccess::next_value::h486f6858230907b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3682 } Some("core::ptr::drop_in_place::h8901d3423b9d0509") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3692 } Some("core::hint::unreachable_unchecked::precondition_check::he5fe414bc070b722") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3743 } Some("js_sys::futures::queue::Queue::push_task::h554dae4f68f0b7b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3955 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha9b84645cd742f67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3956 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::haace0c1ab8976c2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 494 } Some("serde_core::de::MapAccess::next_value::h7d4c61ab15474c2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3957 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hb3d1b675180638b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7889 } Some(" as core::ops::try_trait::Try>::branch::h8186489bd4a4f62b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 496 } Some("serde_core::de::MapAccess::next_value::he9e84008929eabb3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 500 } Some("serde_core::de::MapAccess::next_key::h231c495a3ccd222e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4496 } Some(" as core::default::Default>::default::h7564694376bdb0cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 502 } Some("serde_core::de::MapAccess::next_key::hac8ad0bf6265be36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5723 } Some(" as core::iter::traits::iterator::Iterator>::next::h078d8c846475c599") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 504 } Some("serde_core::de::MapAccess::next_key::hc5e60265f797aff6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 506 } Some("serde_core::de::MapAccess::next_key::hd6e62bf88b442ace") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6169 } Some(" as core::iter::traits::iterator::Iterator>::next::h4fd7f8be8f4d4b01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 508 } Some("serde_core::de::MapAccess::next_key::hea6d46c910f0fd63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7325 } Some("hashbrown::raw::RawTable::clear::{{closure}}::hf210c16f7abaed09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 510 } Some("serde_core::de::SeqAccess::next_element::h0da6e5726370363b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 512 } Some("serde_core::de::SeqAccess::next_element::h284ae6475ee140b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7505 } Some("hashbrown::raw::RawTableInner::prepare_resize::{{closure}}::h5297bc3fddab8b46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 514 } Some("serde_core::de::SeqAccess::next_element::h67336baf8605097f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8277 } Some(" as core::iter::traits::iterator::Iterator>::next::h51d0fd8f6c5aa105") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 516 } Some("serde_core::de::SeqAccess::next_element::h7a84cfa72ff49209") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 518 } Some("serde_core::de::SeqAccess::next_element::h929dbd88e61d73dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8278 } Some(" as core::iter::traits::iterator::Iterator>::next::h9dffb23f554443df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5897 } Some("alloc::string::String::from_utf8_unchecked::hc95ecf3a498e75b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 280 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h416c80480ee109a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6150 } Some("::drop::hbebc2e62802433a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 281 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h4e83947a0d8066a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6236 } Some("::into_iter::h523b87b5ef68217b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8040 } Some(" as core::ops::try_trait::Try>::branch::hee3dda8718ca2d3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4221 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h118407d272a0c50b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6312 } Some("::into_iter::h373a99d3d5703f60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4223 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h2a354ea3c2104174") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6314 } Some("::into_iter::h6a744a52eded736d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4224 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h5a14e14ce7cc9f55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6317 } Some("::into_iter::hbad14e44c64fb40a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6718 } Some("anyhow::ptr::Ref::as_ptr::hae43a4186ae4ad07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4870 } Some("hashbrown::raw::RawIterRange::next_impl::h165a0c4a914f2a3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6743 } Some("::into_iter::h9ba040fd30121c5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7017 } Some("core::any::TypeId::of::h0f806c186ff547b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4874 } Some("hashbrown::raw::RawIterRange::next_impl::h1ed246f1e0f79dca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7052 } Some("core::iter::traits::iterator::Iterator::cloned::h20339cf4dff69452") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7062 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h56d642fc9b4543e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6869 } Some("hashbrown::raw::RawIterRange::next_impl::h8b591b0876ededfe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 284 } Some(" as test::formatters::OutputFormatter>::write_result::h51576783103de78e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6873 } Some("hashbrown::raw::RawIterRange::next_impl::hc6998ab78814309d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4225 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h7c36278fdbef0797") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6876 } Some("hashbrown::raw::RawIterRange::next_impl::h3d977dfc6308084c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6878 } Some("hashbrown::raw::RawIterRange::next_impl::ha9f5f2315a35423a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 288 } Some(" as test::formatters::OutputFormatter>::write_result::hb3049cb776a807c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 520 } Some("serde_core::de::SeqAccess::next_element::ha08dc62bd6ceda11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4226 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h8047bcffe19ee424") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 522 } Some("serde_core::de::SeqAccess::next_element::hc53b2191ff3f2b2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4227 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h9b609d3eb3d92887") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4228 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha150d632c41ce6c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4232 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hc38c959387aaf052") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4233 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::he62c61fe06751ce7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 524 } Some("serde_core::de::SeqAccess::next_element::hce6bd194fcaae47a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4234 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hff117f0aeba19d35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4363 } Some("core::hint::unreachable_unchecked::precondition_check::h6b578c92abec878c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 526 } Some("serde_core::de::SeqAccess::next_element::hea3ae5c86e712bd3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4481 } Some("::clone::hd9f9c370fe13b841") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 573 } Some(" as serde_core::de::Deserializer>::deserialize_string::hc917989a1c82ef6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4484 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h6eefe9c6955e7633") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 574 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h024f54a360cd8edb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 302 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h97351fa23cc0a968") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 575 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h3bab256dceaae654") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 303 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::ha6f6e860ea2404e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 716 } Some("core::result::Result::map::hd656ae75dd47f0bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 576 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h8fef077745fda9f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6880 } Some("hashbrown::raw::RawIterRange::next_impl::hb76302c099268af3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5587 } Some("serde_json::read::SliceRead::parse_str_bytes::h7bbe02a2a71d9645") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4550 } Some(" as core::iter::traits::iterator::Iterator>::next::hb89afd3deeec0dd8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7527 } Some("::drop::h585057c0522afbaf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4787 } Some("alloc::slice::::sort::he7aa8a03ccca54ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1127 } Some("core::fmt::Formatter::write_fmt::h4f252553edcd0807") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7765 } Some(">::process::{{closure}}::{{closure}}::h2eb0407f0cbcde28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1904 } Some("js_sys::Promise::then_map::ha5b04448d6bbf3aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5518 } Some("core::fmt::Formatter::write_fmt::h6a4c86ce547b05cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5537 } Some("core::option::Option::map_or::he60c037b92e7f764") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5907 } Some("wasm_bindgen::externref::Slab::dealloc::h9c256a4a01a67eb6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5918 } Some("core::fmt::Formatter::write_fmt::hac3c29092f53752f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6200 } Some("core::fmt::Formatter::write_fmt::h0a880f041e9a8928") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6703 } Some("core::fmt::Formatter::write_fmt::habe917557f3a8124") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7221 } Some("core::fmt::Formatter::write_fmt::h28730e421c01eade") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7583 } Some("links_notation::parser::Link::new_indented_id::h1b7639082074b656") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7617 } Some("links_notation::parser::Link::new_singlet::h8041bf85ee5ed373") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7890 } Some(" as core::ops::try_trait::Try>::branch::h0531037f81f4533c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8158 } Some("core::fmt::Formatter::write_fmt::h25dc1981ca2eb449") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8661 } Some("core::fmt::Formatter::write_fmt::h074284b53734ad07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8689 } Some("::write_fmt::ha08703e755bd56cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1326 } Some("alloc::rc::Rc::try_unwrap::hc5e7f12be2bb4aad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4570 } Some(" as core::iter::traits::iterator::Iterator>::next::hed3ac5fac9a7de76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4632 } Some("core::iter::adapters::map::map_fold::{{closure}}::h04251e31b12345a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4633 } Some("core::iter::adapters::map::map_fold::{{closure}}::h32a1795bcd278363") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4634 } Some("core::iter::adapters::map::map_fold::{{closure}}::h8ef393472e784c19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5759 } Some("core::ptr::const_ptr::::offset::precondition_check::hb3687d012f82b6b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7162 } Some("std::env::set_var::h026c3746970a2057") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8440 } Some("core::ptr::const_ptr::::offset::precondition_check::hcbfa70fb02a23995") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9000 } Some("rustc_demangle::v0::Printer::print_lifetime_from_index::ha53286208e1da926") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 380 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::hfc9138ee31bbfdf0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 475 } Some(" as serde_core::de::EnumAccess>::variant_seed::h21489ac113ec38b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1312 } Some("core::slice::::ends_with::hc8014454939f55c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3738 } Some("js_sys::futures::queue::Queue::schedule_task::hb5cc39ae132a7bc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5300 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h19b5394f572bf8d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5368 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::hce0724224db63a47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5498 } Some("serde_json::error::starts_with_digit::h5f57f649bd081276") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6190 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::hdd0087d7f4a1d91c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8144 } Some("::into_searcher::haa34a6a2a4a5ce61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8328 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h09012b4818b6fb43") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8473 } Some("::into_searcher::h9e464cf7cc307823") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8475 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::hb3b1216b0cc03fd3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8654 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h5de9d2f62e0a5c60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9045 } Some("alloc::ffi::c_str::CString::_from_vec_unchecked::h3ba32dfc76be2b71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3405 } Some("js_sys::futures::task::singlethread::ConsoleTask::run::h4f21f3c4b313c9fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4193 } Some(" as core::iter::traits::iterator::Iterator>::next::hb36018ede5335cea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4483 } Some(" as core::iter::traits::iterator::Iterator>::fold::hf557bda2fd699410") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7151 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h08d13357d2faaedf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7153 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h2feeabb896bea2ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8881 } Some("std::thread::current::init_current::ha0d793c23a88e575") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8897 } Some("std::panicking::panic_with_hook::h77afe0ddfda2cb89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6758 } Some("alloc::vec::Vec::insert_mut::hbb02f6a2dbe462d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5093 } Some("core::slice::sort::shared::smallsort::insert_tail::h0cfaa29446e453ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5094 } Some("core::slice::sort::shared::smallsort::insert_tail::h20bbce712bbf9c81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5095 } Some("core::slice::sort::shared::smallsort::insert_tail::h36358574e93158bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5096 } Some("core::slice::sort::shared::smallsort::insert_tail::h5c725b6285c0253c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5098 } Some("core::slice::sort::shared::smallsort::insert_tail::h7a050c17ef4a654f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5099 } Some("core::slice::sort::shared::smallsort::insert_tail::hb1bd713f52144c69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 219 } Some(" as test::formatters::OutputFormatter>::write_timeout::h2ae4fb5936b50691") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 221 } Some(" as test::formatters::OutputFormatter>::write_timeout::hec17045fbc8e4904") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 226 } Some(" as test::formatters::OutputFormatter>::write_test_start::h7c0409b34bc4326b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 227 } Some(" as test::formatters::OutputFormatter>::write_test_start::h8547ff2977a21950") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4866 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h5faba49a0d5ccdc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6326 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h62b78c4b6cabb6b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6870 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::ha844568d27b37193") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 498 } Some(" as serde_core::de::MapAccess>::next_key_seed::h3f1eb9cf8e9d7cf1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 515 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h4db276e26c180547") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 517 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h68390c20d67f41fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 551 } Some("serde_json::de::Deserializer::f64_from_parts::hb335fac981862eb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5322 } Some(" as serde_core::de::MapAccess>::next_key_seed::h8dac7f2c93ff9128") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5346 } Some("serde_json::de::Deserializer::f64_from_parts::h4ca4d4e665898ae8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5415 } Some(" as serde_core::de::MapAccess>::next_key_seed::h263ac2c6de52b5eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 460 } Some("getopts::Name::to_string::hdc5512bfcac5a4d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1161 } Some("once_cell::unsync::OnceCell::try_insert::hd9cee7d20538a9b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1401 } Some("serde_json::ser::Formatter::write_char_escape::h36014853c69a4d7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4197 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::{{closure}}::h2fb208072b4273b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4346 } Some("core::slice::::reverse::revswap::h6a03c6dcabad5c2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4347 } Some("core::slice::::reverse::revswap::h99c2ba389e02f31a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4858 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hcba2f05aa566e7c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4864 } Some(" as hashbrown::raw::RawTableClone>::clone_from_spec::h16c6527cf25d6b20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5143 } Some("core::ops::function::Fn::call::hf621f61c156a8d45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5146 } Some("core::ops::function::FnMut::call_mut::hb7306f3bdd02c9e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7767 } Some(">::process::{{closure}}::{{closure}}::h75ef82467dc7cf14") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5148 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h999ccb229180fe64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5182 } Some("core::ptr::drop_in_place<(core::option::Option,core::option::Option)>::haf38a324fd6cf56f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7771 } Some(">::process::{{closure}}::{{closure}}::hc030998a1fe6be53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5209 } Some("core::ptr::drop_in_place::h803bd96ea1b15c84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7773 } Some(">::process::{{closure}}::{{closure}}::h3f87602d4fe3cf30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6890 } Some("hashbrown::raw::RawIterRange::next_impl::h9ac71576eef108f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7776 } Some(">::process::{{closure}}::{{closure}}::h8aa5de4a4a635896") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7778 } Some(">::process::{{closure}}::{{closure}}::h01be2d349bc16f92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6891 } Some("hashbrown::raw::RawIterRange::next_impl::hb0257e777aa8b554") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7781 } Some(">::process::{{closure}}::{{closure}}::h5651265edb615fb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7783 } Some(">::process::{{closure}}::{{closure}}::ha62edeca1b6f867d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7321 } Some("hashbrown::raw::RawIterRange::next_impl::h2b0b337b11cc34ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7786 } Some(">::process::{{closure}}::{{closure}}::h3585a1f88bcee435") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5230 } Some("core::ptr::drop_in_place>::h0bc825634fe86004") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5285 } Some("console_error_panic_hook::_::::from_abi::hd54e7a5e09fd3918") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5369 } Some("core::num::nonzero::NonZero::new_unchecked::precondition_check::h8873024a0be6694f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5588 } Some("serde_json::read::SliceRead::parse_str_bytes::hc21324c78fdd4a67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5474 } Some("::matching::h034572b9f2da8515") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9047 } Some("alloc::fmt::format::format_inner::h17065fade03a5f8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5476 } Some("::rejecting::hb8461d68e2a9eaee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5478 } Some("::matching::h893137b738ff0b8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5509 } Some("::spec_to_string::hde92ded9d1366b57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5579 } Some("serde_json::read::SliceRead::new::h968385cbdf097ee9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5580 } Some("serde_json::read::Reference::Copied::h4830b22bce53ad58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7573 } Some("links_notation::parser::parse_document::h3daa85265e942dea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5581 } Some("serde_json::read::Reference::Borrowed::h6ef1548ba62f3fa3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5632 } Some(" as core::ops::drop::Drop>::drop::hebc58680938d636e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5762 } Some("core::hint::unreachable_unchecked::precondition_check::h9882b9b1c1878d50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5801 } Some("::wrapping_sub::h598da47e0bc28b46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5889 } Some("wasm_bindgen::convert::slices::::is_none::he36a2ae3f6db577b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5925 } Some(" as core::ops::drop::Drop>::drop::h661f070b33a4a045") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5449 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert::h7f24012bab6e3f78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6003 } Some("core::hint::unreachable_unchecked::precondition_check::h68f4bcd0663ae901") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6126 } Some(" as core::ops::drop::Drop>::drop::haa8b0a1cf76dd430") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7788 } Some(">::process::{{closure}}::{{closure}}::h7a3b58faea2f4daf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6209 } Some("core::hint::unreachable_unchecked::precondition_check::hc3f5c93e34684b0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6216 } Some("::matching::h19c509d5da3973b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6218 } Some("::rejecting::h531b633f9fc8ae3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6220 } Some("::matching::h243f99473581df5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6226 } Some("core::iter::traits::iterator::Iterator::enumerate::hdc6fb187b24952de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8992 } Some("rustc_demangle::v0::Printer::print_type::h4d6776181fdd92c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6325 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h85a273b34b3a866f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6345 } Some("link_cli::changes_simplifier::simplify_changes::{{closure}}::h39a48f2cfd9b2443") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6478 } Some(" as core::ops::drop::Drop>::drop::hba762072c4aec4be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6646 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h9abffbce9345f65e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6648 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h75b0ddc03999670d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6708 } Some("anyhow::ptr::Own::new::h598b465c32b16512") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8989 } Some("::fmt::h337531cd2bca8803") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6978 } Some("link_cli::lino_link::LinoLink::is_empty::{{closure}}::hfda619fa16309cf4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7033 } Some("core::error::Error::source::h0c4a2dbf2645a986") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7063 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h7255b094d1b74f17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 577 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::haff1309212140c76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7064 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h7ad0b64948ac69f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 578 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::hb6ed6b1f20f89b1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7065 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h8aec774ee453e28d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 582 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_f64::h8fd6946e0d49574d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7173 } Some("core::ptr::drop_in_place::h374f4ab1fb20e81b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 591 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_string::h8fce1e440f5d95f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7189 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h5d99032d9022398f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 597 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_identifier::hbeffd1575da9ef66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7255 } Some("core::hint::unreachable_unchecked::precondition_check::h70b66317af896037") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7294 } Some(" as core::ops::drop::Drop>::drop::he6dead072976cf6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 599 } Some("serde_core::de::impls::>::deserialize::haa42fb898c4bb842") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7329 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h3f7a13ee9f05053d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 675 } Some("serde_core::de::impls::::deserialize::h62ba6a9532ba794d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 677 } Some("serde_core::de::impls::::deserialize::h02fa33d116c4483f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1068 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::h22d2201b76c7c253") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 678 } Some("serde_core::de::impls::::deserialize::hd81c02126ed487bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 779 } Some("::to_string::h1e941b4d7df38a13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4828 } Some("serde_json::ser::Formatter::write_char_escape::h50a81bf66a1a5502") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 795 } Some("core::ops::function::FnOnce::call_once::h637374cc008c701f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1319 } Some("alloc::rc::Rc::new::ha704ce55cb049469") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 948 } Some("serde_core::de::impls::>::deserialize::hbaf215b538e5f157") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7790 } Some(">::process::{{closure}}::{{closure}}::h091079a6e3d4dd8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7792 } Some(">::process::{{closure}}::{{closure}}::hf2a1396798a579a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7794 } Some(">::process::{{closure}}::{{closure}}::h0a1194c37a07e7a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7748 } Some("nom::internal::Parser::parse::h5337d47dfca81103") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7799 } Some(">::process::{{closure}}::{{closure}}::h9b35015f9b4dbcbc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7802 } Some(">::process::{{closure}}::{{closure}}::h18e7395763ad2ae4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7313 } Some("::fmt::h76286fe58db1e5fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7807 } Some(">::process::{{closure}}::{{closure}}::h031d6632567769bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7808 } Some(">::process::{{closure}}::h68ca74accbe081a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7812 } Some(">::process::{{closure}}::h799061dcb7019113") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7814 } Some(">::process::{{closure}}::{{closure}}::ha20e2e300246a3b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 69 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::h60fbf9fa6d0a0d8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7815 } Some(">::process::{{closure}}::h7dfaa7a3cdc903b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5010 } Some("serde_json::de::from_trait::hcf2adae0f22f1889") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7817 } Some(">::process::{{closure}}::{{closure}}::h7bf13dfd4b26505b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 70 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::ha5219ef3d48e59ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7820 } Some(">::process::{{closure}}::{{closure}}::hb008300c59129d3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7821 } Some(">::process::{{closure}}::h8bd9657c7522e1c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7823 } Some(">::process::{{closure}}::{{closure}}::h53fb962f07d04bd2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 71 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::habfef0404879421e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7825 } Some(">::process::{{closure}}::{{closure}}::h94eb196037c18186") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7828 } Some(">::process::{{closure}}::{{closure}}::h1012dea799c11f0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 72 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::hd12706df56dc9702") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7830 } Some(">::process::{{closure}}::{{closure}}::h6c37c57f61a96faf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7831 } Some(">::process::{{closure}}::h97f7c8a3b454523b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4699 } Some("alloc::vec::Vec::extend_desugared::h5658dffbe243f44d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7833 } Some(">::process::{{closure}}::{{closure}}::h8117dd62c1f1cf1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7835 } Some(">::process::{{closure}}::{{closure}}::hc9d8a104d75b253d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7837 } Some(">::process::{{closure}}::{{closure}}::h746f11e475af5ba9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4703 } Some("alloc::vec::Vec::extend_desugared::h9e2db807acb60f76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7839 } Some(">::process::{{closure}}::{{closure}}::he4ae98b2d68d9c99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 949 } Some("serde_core::de::impls::>::deserialize::hf0f2b5fe24ddbe12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5946 } Some("alloc::raw_vec::RawVecInner::try_reserve_exact::h68e76f74fb553f28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1024 } Some("core::iter::traits::iterator::Iterator::for_each::h79bd4286e759da05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1096 } Some("core::fmt::Arguments::new::h42ff47f209b138db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7661 } Some(">::process::h8950b83b707c6e81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1107 } Some("wasm_bindgen::JsValue::as_string::ha4a91bf255369e52") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1114 } Some("core::fmt::Arguments::new::h089d474c26a33710") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6597 } Some("hashbrown::map::HashMap::insert::hbcaaa12617715cfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1115 } Some("core::fmt::Arguments::new::h0a0251ab8c716400") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7841 } Some(">::process::{{closure}}::{{closure}}::h77a7fbb6e4c9684d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7845 } Some(">::process::{{closure}}::{{closure}}::h660c5c0b9fcebeb8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 369 } Some("core::ptr::drop_in_place>::h9bb380a8bf818edc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7847 } Some(">::process::{{closure}}::{{closure}}::h97945083096c7e4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7665 } Some(">::process::hb01624ea4343fdfa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7849 } Some(">::process::{{closure}}::hb9e801ab0563cef4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7850 } Some(">::process::{{closure}}::hc47355a79c0e7ed9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7667 } Some(">::process::hc7b07e21103a59ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7852 } Some(">::process::{{closure}}::hde930ca82d17856a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7857 } Some(">::process::{{closure}}::{{closure}}::hbe102e714887ed06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8022 } Some(">::process::hc3700c0488bfe659") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7859 } Some(">::process::{{closure}}::{{closure}}::hcd1c4d8fd3ea0cac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1116 } Some("core::fmt::Arguments::new::h4023ce72446bc6bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7407 } Some(" as core::ops::drop::Drop>::drop::h8f65aee694c9882c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1117 } Some("core::fmt::Arguments::new::h5ca8ea59e549d12e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7412 } Some("core::ptr::drop_in_place<(alloc::string::String,alloc::vec::Vec)>::hcc9cdca57deff27b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1118 } Some("core::fmt::Arguments::new::h81de59070b70f0b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7467 } Some("::rejecting::h7a82c628df2e2445") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 396 } Some("test::console::get_formatter::hf2c6432538f95473") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1119 } Some("core::fmt::Arguments::new::h8de3f0519f4b3dc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1120 } Some("core::fmt::Arguments::new::h8f311a53d42211a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1133 } Some("js_sys::Function::call1::h7addfd2b8d1ac2b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1121 } Some("core::fmt::Arguments::new::hb06ccdd2739ea57b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1122 } Some("core::fmt::Arguments::new::hb67af3d54f417b5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1141 } Some("js_sys::Function::call1::h01244bda9eeb7589") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7862 } Some(">::process::{{closure}}::{{closure}}::he4e73307d0a234c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1891 } Some("js_sys::Function::call1::h879796884bc354ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7863 } Some(">::process::{{closure}}::hf834e4f7a80f80da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8221 } Some("nom::error::ParseError::or::hcd1539f2cbe1795a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6680 } Some("core::iter::traits::iterator::Iterator::chain::h0f6eb52dcc51f186") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7469 } Some("::matching::h185c9afb01d1ea6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8258 } Some("::into_iter::hea35445ac403763a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7473 } Some("::matching::h292c0e93b71f987c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8265 } Some("::drop::hf3cebda8cb71db73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7526 } Some(" as core::ops::drop::Drop>::drop::h3c81efbc122b07c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8291 } Some("nom::branch::alt::h25c780c66e1fd725") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7529 } Some("core::hint::unreachable_unchecked::precondition_check::h07d980fd515caf6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8365 } Some(" as core::iter::traits::iterator::Iterator>::__iterator_get_unchecked::h8ea37a1f733bfd16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8045 } Some(" as core::str::pattern::ReverseSearcher>::next_back::h234a47ef8ca9ffca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8514 } Some("core::any::TypeId::of::hac7a81927251b30f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8064 } Some(" as core::str::pattern::Searcher>::next::h76a53fa39fb3a429") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8515 } Some("core::any::TypeId::of::hedbb4ec70c9631a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8635 } Some("anyhow::ptr::Ref::as_ptr::h004ac99a63c2d121") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8301 } Some(">::process::h36d02cb30e491f9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8636 } Some("anyhow::ptr::Ref::as_ptr::h21e543d1377760bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8109 } Some("::next::h0424c26351df4952") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 466 } Some("getopts::Options::usage_items::hfa0ba417b9bc9679") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8842 } Some("std::io::error::::fmt::hfb2347e593b03b1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9187 } Some("compiler_builtins::int::specialized_div_rem::u128_div_rem::h8d9ba2662c058ede") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9126 } Some("core::fmt::Formatter::debug_tuple_field2_finish::h7744194aa8215896") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8068 } Some("core::cell::RefCell::new::h4deea4b550c3b037") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8170 } Some("core::hint::unreachable_unchecked::precondition_check::h6ed4eb55ba8e7711") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7266 } Some("::d_rounds::h0a445a6a4f5e1480") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8200 } Some(" as core::ops::drop::Drop>::drop::h3a14d3edffbad409") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8342 } Some(">::process::h1ab2358335bd0c9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8343 } Some(">::process::hb473f9c459b59c12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8238 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h0d043d2684851d9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7375 } Some("::d_rounds::h871edc68dc1bd331") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8390 } Some(" as core::ops::drop::Drop>::drop::h4d72df185bc05ffb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8637 } Some("anyhow::ptr::Ref::as_ptr::h2ffdd34e7aa8f1d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8394 } Some("core::hint::unreachable_unchecked::precondition_check::h21816a8b5d379558") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8638 } Some("anyhow::ptr::Ref::as_ptr::h842ea096b7d83f06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8396 } Some("::rejecting::h7c40fcd436c06899") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8815 } Some("::drop::h1797b8ca8f22e0fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8398 } Some("::matching::h8ac0c153434edec0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8975 } Some("::count::h26738dc6304cbc41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 310 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h1b5ef44954eeb030") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10679 } Some("__wbgtest_cov_dump.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1123 } Some("core::fmt::Arguments::new::hd2315f9e9249f021") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4409 } Some("core::slice::sort::stable::merge::MergeState::merge_down::h0a87da5e2d1996ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1124 } Some("core::fmt::Arguments::new::hd250e3dfbb0133d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4410 } Some("core::slice::sort::stable::merge::MergeState::merge_down::h14c49f83764ac95b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1125 } Some("core::fmt::Arguments::new::hfb8df169a0c3198b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1260 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h0bd751837d6991b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4411 } Some("core::slice::sort::stable::merge::MergeState::merge_down::h2c8292973db1eee8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1261 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h0d1322071ce26ba0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1262 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h2e7ae2b601159aee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1263 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h45b1a0b4d95fadcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4412 } Some("core::slice::sort::stable::merge::MergeState::merge_down::h7ea203ecf52a2176") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1264 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h50180d1183710ee8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1265 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h60c3c3ba44e1d27a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4413 } Some("core::slice::sort::stable::merge::MergeState::merge_down::hb5b8e7ebfa04a8c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1266 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h742e92a5eda0213b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4414 } Some("core::slice::sort::stable::merge::MergeState::merge_down::hd451f3271eb6997d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1267 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h78e53501c621543e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1268 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h847aeeb337c3f267") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10680 } Some("__wbgtest_module_signature.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8826 } Some("dlmalloc::dlmalloc::Dlmalloc::unlink_chunk::h16ef10954c05020c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1269 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h8bf0d50053e9c076") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1270 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h9630ad3de3e26516") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1271 } Some(" as serde_core::de::DeserializeSeed>::deserialize::ha22903b82efcc385") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8740 } Some(" as core::str::pattern::ReverseSearcher>::next_back::h2afd526f67d6cc58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10682 } Some("__wbgbench_dump.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10683 } Some("clink_rustCoreVersion.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8865 } Some("std::sys::sync::once::no_threads::Once::call::he60262da18d264df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1272 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hb86cb822e7e56737") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10686 } Some("clink_version.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 240 } Some("::clone::h4eb0badbf3ff785d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 67 } Some("core::option::Option::is_some::h7128132c30a4f07f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8402 } Some("::matching::h250836216ff96b46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 533 } Some("serde_json::de::MapAccess::new::hfa622a4cc5bb2856") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8441 } Some("core::hint::unreachable_unchecked::precondition_check::h18ce90ce430ac595") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8510 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h90ebbf25d3301f41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 534 } Some("serde_json::de::SeqAccess::new::h2d6c640ba4ee2cb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 621 } Some("alloc::vec::Vec::is_empty::h2c195cfcfd7517f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 622 } Some("alloc::vec::Vec::is_empty::h2e31f0c01965f5d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 339 } Some("core::ptr::drop_in_place>::h2447aea380799364") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 697 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_f64::hcada2ad0726ed37b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3380 } Some("alloc::collections::vec_deque::VecDeque::slice_ranges::hef314eed7d21942f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 717 } Some("core::result::Result::is_ok::h6fe020d7be4fab72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8525 } Some("core::ops::function::FnMut::call_mut::h9db32f08793201cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 718 } Some("core::result::Result::is_ok::hcf4d36162c8243ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8594 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h0e346770f76a9405") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 899 } Some("core::cell::Cell::set::h281cfca0e9ae59dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8595 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h20c8ece4feb8bbf6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 900 } Some("core::cell::Cell::set::h95111c0eb29684e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8820 } Some("dlmalloc::dlmalloc::Dlmalloc::memalign::h4d574c3a3414c418") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 910 } Some("core::cell::RefCell::new::h630d10772da21914") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8608 } Some("anyhow::ptr::Own::new::h173f636b6ad0c0be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 960 } Some("wasm_bindgen::__rt::WasmWord::is_zero::hd2d2ede27b562339") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8609 } Some("anyhow::ptr::Own::new::hfc279e4d6de5ab19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1404 } Some("serde_json::ser::Formatter::end_object_key::hf9d18e193a65e778") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8664 } Some("core::hint::unreachable_unchecked::precondition_check::h211148a4c54e2ee7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1405 } Some("serde_json::ser::Formatter::end_array_value::hd83794e089a6b99b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8677 } Some("core::error::Error::source::h3df1c708bba71563") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 253 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h5c7479fe29b95e1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1407 } Some("serde_json::ser::Formatter::end_object_value::h062f47aaecabed35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1418 } Some("alloc::collections::btree::map::BTreeMap::is_empty::h52831746570e02cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 555 } Some("serde_json::de::Deserializer::ignore_exponent::h10bc6e75a023b6ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1529 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h9d42beefbed3b41b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1591 } Some("wasm_bindgen_test::__rt::detect::_::::is_none::hbbaa417be99f3837") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5015 } Some("serde_json::de::Deserializer::ignore_exponent::hf4483fd07509241b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1593 } Some("wasm_bindgen_test::__rt::detect::_::::is_none::hef244cebc3528d5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8054 } Some(" as core::str::pattern::Searcher>::next::hdcc68839f8111f89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1273 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hceed852cc90f5c7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8679 } Some("core::error::Error::source::hb576a3af56cd8366") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8745 } Some("core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}}::h4b955bbba179f51c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8746 } Some("core::ops::try_trait::NeverShortCircuit::wrap_mut_2::{{closure}}::h76036c5507bf2099") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8813 } Some(" as core::ops::drop::Drop>::drop::h9f48442dde7b185e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8814 } Some(" as core::ops::drop::Drop>::drop::heb87e077945df6fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9120 } Some("core::fmt::Formatter::debug_tuple::h193d988937616dd3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10685 } Some("clink_execute.command_export multivalue shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 113 } Some("web::creates_a_clink_instance::h6298423b21981721") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 169 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h05f79619fce62b7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 343 } Some("core::ptr::drop_in_place::{{closure}}::{{closure}}>::h167929b84d4be949") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 409 } Some("test::cli::get_nocapture::h31d732b9287cef59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 537 } Some("serde_json::de::Deserializer::next_char::hf6ab5d4011eb9975") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 549 } Some("serde_json::de::Deserializer::peek::h354cf8ffd7821765") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 760 } Some(" as core::ops::try_trait::Try>::branch::he988cd5e0877060e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 994 } Some("wasm_bindgen_test::__rt::worker::_:: for wasm_bindgen_test::__rt::worker::WorkerError>::from::h2a984785f736405f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1006 } Some("wasm_bindgen_test::__rt::browser::_:: for wasm_bindgen_test::__rt::browser::BrowserError>::from::h9da6b43c43ce7c8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1129 } Some("js_sys::_:: for wasm_bindgen::JsValue>::from::h17d0de94a64cd3eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1134 } Some(">::from::h1f56b70705328449") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1136 } Some("js_sys::_::::unchecked_from_js::h8adb022a3ee9889d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1143 } Some("js_sys::_:: for wasm_bindgen::JsValue>::from::hbecf6539209161e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1144 } Some("js_sys::_:: for js_sys::Error>::from::hae4d002e022ff9c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1153 } Some("once_cell::unsync::Lazy::force::h156ce1b1437609b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1155 } Some("once_cell::unsync::Lazy::force::h36d4944e2a6d1b0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1189 } Some("wasm_bindgen_test::__rt::_::::unchecked_from_js::h4e2451d2dcfde0f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1190 } Some("wasm_bindgen_test::__rt::_::::unchecked_from_js::h015c5122f52e81b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1306 } Some("core::str::::chars::hf25b3c9599fa9bee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1435 } Some("::set::Reset as core::ops::drop::Drop>::drop::h07c7738fc1abf798") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1562 } Some(" as serde_core::de::Deserializer>::deserialize_option::h20f1945a207c463d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1563 } Some(" as serde_core::de::Deserializer>::deserialize_option::h42c061436d8a95b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1575 } Some("wasm_bindgen_test::__rt::node::_:: for wasm_bindgen_test::__rt::node::NodeError>::from::h079cc441ec653aa2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1594 } Some("wasm_bindgen_test::__rt::detect::_::::unchecked_from_js::h9213baa42ffafb7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1607 } Some("wasm_bindgen_test::__rt::criterion::baseline::BASELINE::{{closure}}::h1057adb1cb7a1d57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1695 } Some("core::str::::chars::h048e6e1fcf473c8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1712 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::h18e454ec2198a60b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1713 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::h56cb37a323e7f439") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1714 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::h9c9ba7401f741377") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1717 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::hf46e87c03a50ad75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1913 } Some("js_sys::_::::unchecked_from_js::hc699155c6dfbb066") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1914 } Some("js_sys::_::>::unchecked_from_js::hda80ac8030b1de2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1916 } Some("js_sys::_::>::unchecked_from_js::h679bbb133717c2c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1940 } Some("js_sys::_:: for js_sys::Object>::from::hf366a8bfeb473b0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3403 } Some("js_sys::_::> for wasm_bindgen::JsValue>::from::hf2d201271ab58c9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3737 } Some("js_sys::futures::queue::_::::unchecked_from_js::ha372bfc1cb15ff99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3972 } Some(" as core::ops::try_trait::Try>::branch::h7de51dcb8b9906d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3976 } Some("once_cell::unsync::Lazy::force::h97d4cdabf668f1f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3978 } Some("once_cell::unsync::Lazy::force::h62fa89e38252d505") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3988 } Some("once_cell::unsync::Lazy::force::hcb2031188b5defba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3990 } Some("once_cell::unsync::Lazy::force::hd0a7090213f3260c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4535 } Some("link_cli::query_processor::QueryProcessor::solution_is_no_operation::{{closure}}::h14ffe4c8deab4a1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4536 } Some("link_cli::query_processor::QueryProcessor::solution_is_no_operation::{{closure}}::h36edce873a66f394") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4581 } Some("core::iter::traits::iterator::Iterator::map::h50fce724e1ba0ce1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4582 } Some("core::iter::traits::iterator::Iterator::map::h63684ee46e32eb1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4583 } Some("core::iter::traits::iterator::Iterator::map::h76d013487a68f2e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4584 } Some("core::iter::traits::iterator::Iterator::map::h89df7f6d6befb690") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4585 } Some("core::iter::traits::iterator::Iterator::map::hd38ae7dce66da3cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4682 } Some("alloc::vec::Vec::dedup_by_key::h0682f5d86a615cef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4684 } Some("alloc::vec::Vec::dedup_by_key::h929ae7ca2c348dbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5165 } Some("core::ptr::drop_in_place>::h970e5bdcd9fca531") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5335 } Some("serde_json::de::Deserializer::next_char::hdb2dacd0a142d123") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5343 } Some("serde_json::de::Deserializer::peek::h9e3c3400dbe0836e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5655 } Some("core::ops::function::FnOnce::call_once::he152c93512ab358e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5657 } Some("core::ptr::drop_in_place>::h29e52e371b493adb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5671 } Some("core::ptr::drop_in_place>::ha06cde2839ddb0b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6419 } Some("core::ops::function::FnOnce::call_once::hc19cf1699b76848e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6429 } Some("core::ptr::drop_in_place>>::h1f3a857092ac8349") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6460 } Some("core::ptr::drop_in_place>>>::h146f452db3980896") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6515 } Some("core::iter::traits::iterator::Iterator::map::h456a0edfdf241f1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6516 } Some("core::iter::traits::iterator::Iterator::map::h727ef681c6c19cc8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6517 } Some("core::iter::traits::iterator::Iterator::map::hc3e5c3d0e3f2075e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6924 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h06affdfe38753089") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6925 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h4736259ca818a0f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6926 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h4d5d34715e594f5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6927 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h90b0fece09b3891e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6928 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::haac594bb38565e8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6929 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::hf3d70272e41a2828") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7004 } Some("anyhow::error::ErrorImpl::erase::hb651fa3e0670c1fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7226 } Some("core::ptr::drop_in_place>::hb1d0548a72aa2791") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7393 } Some("core::ptr::drop_in_place>::h847cdedeaf721c6a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7399 } Some(" as core::ops::drop::Drop>::drop::h599692c2e7156ab7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7554 } Some(" as core::ops::drop::Drop>::drop::hc6f909e96c34bd92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7978 } Some("core::str::::chars::h3721b191b56e030f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8142 } Some("<&char as nom::traits::AsChar>::len::h5e9bda9b96c6b1ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8183 } Some("::slice_contains::{{closure}}::hfff47d589a38bd56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8230 } Some("core::iter::traits::iterator::Iterator::map::hf81a9c82b2cc4e0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8279 } Some(" as core::iter::traits::iterator::Iterator>::fold::he4d78b62ce784535") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8296 } Some("nom::internal::Parser::map::h2b16ed1fba4e9754") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8297 } Some("nom::internal::Parser::map::h490df18a0b9d2e40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8437 } Some("core::ptr::const_ptr::::read_unaligned::h28a7a3a3e60d1c47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8518 } Some("core::ptr::drop_in_place>>>::h953cb742913879bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8520 } Some("core::ptr::drop_in_place>>>::hfc761d035e9dcd35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8522 } Some("core::ptr::drop_in_place>>>::h56e80fdf899c4c5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8524 } Some("core::ptr::drop_in_place>>>::had128e52eb7414e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8719 } Some("anyhow::error::ErrorImpl::erase::h34c4e975c6798fd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8720 } Some("anyhow::error::ErrorImpl::erase::h5d6c3684fd739b7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8751 } Some("core::str::::chars::h285e027291a50c60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8828 } Some("__rustc[16f1505adc47261a]::rust_begin_unwind") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8939 } Some("::write_fmt::hd8a7e2c6b9add45d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8942 } Some("::write::ha16c49d65fddac8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8944 } Some("::write_all::hcc7a74248ec9ba5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 165 } Some("core::panic::location::Location::file::h73c651417c25fcac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 202 } Some("::deref::h3a5514b801abfc8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 492 } Some("serde_core::de::MapAccess::next_value::h56517ff5dd6cde92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 543 } Some("serde_json::de::Deserializer::eat_char::h9e67d5cc3e337757") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 580 } Some(" as serde_core::de::VariantAccess>::unit_variant::h92be634c935d9708") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 615 } Some("alloc::vec::Vec::push::h7518d0ffbfa15be4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 618 } Some("alloc::vec::Vec::push::hb6214aed7d001409") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 628 } Some(" as core::ops::deref::Deref>::deref::hb0f6ad446115c441") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 676 } Some("serde_core::de::impls::::deserialize::h009883cc34585419") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 685 } Some("::deref::h848a3a35f7d6faf9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 731 } Some("alloc::string::String::as_str::h9a3113033e7f8f09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 799 } Some("core::ops::function::FnOnce::call_once::hbaef6a2b986104b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 802 } Some("core::ptr::drop_in_place>>::hfd273f8d7bf57538") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 806 } Some("core::ptr::drop_in_place>::ha16dd5d21628c5ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 816 } Some("core::ptr::drop_in_place>::h64c937a84ccb69bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 824 } Some("core::ptr::drop_in_place>>::h6b6891d899ba8fdd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 826 } Some("core::ptr::drop_in_place>>::hd044720397e633ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 827 } Some("core::ptr::drop_in_place>>::h2a6b8d81300fbf86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 833 } Some("core::ptr::drop_in_place>>::h491e19c3965665ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 834 } Some("core::ptr::drop_in_place>>::h44433c9e49ed6f3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 835 } Some("core::ptr::drop_in_place>>::h210383c946118ea2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 847 } Some("core::ptr::drop_in_place>::h44a3c6aecd3dbd6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 854 } Some("core::ptr::drop_in_place::h9c312460611eb977") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 874 } Some("core::ptr::drop_in_place>::hc7cfeaa836e88e41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 875 } Some("core::ptr::drop_in_place>::h7ef43ccde0161c59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 876 } Some("core::ptr::drop_in_place>::hf4fe398df18d5f6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 877 } Some("core::ptr::drop_in_place>::h71438363db78e2d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 879 } Some("core::ptr::drop_in_place>::hde417d0cffec7a2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 880 } Some("core::ptr::drop_in_place>::h68a53edc3b89a956") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 896 } Some("core::ptr::drop_in_place>>::h20d3b40a46028273") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 939 } Some(" as core::ops::deref::DerefMut>::deref_mut::h43992ef69efe3371") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 956 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::hcee4f7c0a2efca65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 958 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h37a72130a8951499") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 961 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::hdf17e16a43f9c470") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 962 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::hc2c727700104946b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 991 } Some("wasm_bindgen_test::__rt::worker::_::::into_abi::hc49438f4b706a6ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 997 } Some("wasm_bindgen_test::__rt::browser::_::::into_abi::hab873b5472f47ab5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 999 } Some("wasm_bindgen_test::__rt::browser::_::::into_abi::h289925c7ea4671d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1004 } Some("wasm_bindgen_test::__rt::browser::_::::into_abi::h323de9b304af85ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1058 } Some(" as core::ops::deref::Deref>::deref::hbd4c0a7d6ec1643f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1059 } Some(" as core::ops::deref::Deref>::deref::hbf55affd86ea141f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1060 } Some(" as core::ops::deref::Deref>::deref::hd7eb36083543636c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1061 } Some(" as core::ops::deref::Deref>::deref::hdbcb90449f29abf4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1062 } Some(" as core::ops::deref::DerefMut>::deref_mut::h2b4147d909969cee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1063 } Some(" as core::ops::deref::DerefMut>::deref_mut::h78ac8be9d650c0fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1075 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::hcc2b6319780864b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1105 } Some("wasm_bindgen::JsValue::from_f64::h8fed12449325a305") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1109 } Some("wasm_bindgen::convert::impls::::from_abi::h7a8d9a3758dd3d3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1128 } Some(">::into::h15d022fb28487fa8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1137 } Some("::return_abi::hd6883fc455511de3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1138 } Some("js_sys::_::>::into_abi::ha67636508059eddb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1145 } Some("js_sys::_::>::into_abi::h278dbda7be54182b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1151 } Some(">::from::habec1ddc1d4a3dc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1165 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h457c5ce19ce2d692") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1173 } Some("wasm_bindgen_test::__rt::_::::into_abi::hbcc022d008b114b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1178 } Some("wasm_bindgen_test::__rt::_::::into_abi::h582375504098e859") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1232 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::_::::into_abi::h6fcd152e56655bc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3708 } Some("alloc::rc::Rc::new::hb44c4a1c6d970eee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1274 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hcf00f0997096b448") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4706 } Some("alloc::vec::Vec::extend_desugared::hf3f46619df864642") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5435 } Some("alloc::collections::btree::node::slice_insert::h6f3d1516fed275c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7501 } Some("::d_rounds::h62098a5fb2222daf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8344 } Some(">::process::hedc0f1c4cadb10bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1254 } Some("::return_abi::hd9f3ff42222c9b6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1256 } Some(" as core::ops::drop::Drop>::drop::h41e40040f892330a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1469 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::h5f702cfd27caff26") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1257 } Some(" as core::ops::drop::Drop>::drop::ha9203cd34bcacf40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1259 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h0a20c9565a392046") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1322 } Some("alloc::rc::Rc::from_raw::hcfb92abc56460cb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1275 } Some(" as serde_core::de::DeserializeSeed>::deserialize::he7d31856ba2f0b34") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1341 } Some("::deserialize::h9d9984b324cc25dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1911 } Some("js_sys::_::>::is_none::h9a92a67a792167b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8056 } Some(" as core::str::pattern::Searcher>::next::hb132211e07c31caa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1912 } Some("js_sys::_::>::is_none::hf05c170ff963a80e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1276 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hf1515fba5de8888e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1365 } Some("serde_core::de::impls::>::deserialize::hafdf64b2c7074e8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8952 } Some("::write::h16ce720ab35d31e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1466 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::hc36f523399395c44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3364 } Some("core::cell::Cell::set::h4a1f966884652eca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3610 } Some("wasm_bindgen::__rt::WasmWord::is_zero::h5fcc197687f3d937") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9179 } Some("::fmt::fmt_decimal::{{closure}}::h9435ade04a2f43e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1467 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h5edcfc64bc2ec38c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3624 } Some("wasm_bindgen::convert::closures::_::+Output = R> for T>::unsize::hc58be81eb0a7acee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3966 } Some("core::result::Result::is_ok::hb469b311c72611b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 334 } Some("test::test_main_with_exit_callback::{{closure}}::h35290c0e614a1732") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4168 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h6aa069785a0fe37a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4214 } Some("::visit_bool::h71266bd57cc3cdf3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4863 } Some("hashbrown::raw::RawTable::new_uninitialized::hae5cce5fd4d9e13d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4340 } Some("core::option::Option::Some::h9379394612c237da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4713 } Some("alloc::vec::Vec::is_empty::h4fe8d85d2476e64b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4714 } Some("alloc::vec::Vec::is_empty::h5e98461f5d4154ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4897 } Some(" as core::fmt::Debug>::fmt::h01b7bf44fe9d14b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4715 } Some("alloc::vec::Vec::is_empty::hb7220e2d7597cf00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4779 } Some("alloc::string::String::is_empty::hf0d156c810425c89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8058 } Some(" as core::str::pattern::Searcher>::next::hb5c1491f8071f12e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1471 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h1596f8cb7bc48654") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1479 } Some("core::task::wake::Waker::from_raw::h51a9eb0dbf8d0267") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4831 } Some("serde_json::ser::Formatter::end_object_key::hd4bb0fd2ce1184c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8060 } Some(" as core::str::pattern::Searcher>::next::h80a570be41918ddb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4898 } Some(" as core::fmt::Debug>::fmt::h09df8131ee92ee41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8043 } Some("::next_back::hac79f216ee5057a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8739 } Some("::next_back::h9b8de5561ea98788") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9011 } Some("rustc_demangle::v0::Printer::print_path_maybe_open_generics::hf723e4ce536d5864") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 237 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h43cbf826de979a5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 238 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h4560573a551db474") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5693 } Some("itoa::::write::hfc8585db2a6f34af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 404 } Some("alloc::vec::Vec::extend_trusted::he637e56218dae5d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5850 } Some("zmij::write_significand::hece44e36f1d9c6b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5403 } Some("alloc::string::String::truncate::h3735420569cdae75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8498 } Some("alloc::string::String::truncate::h7854fe078fc6fcdb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 563 } Some("serde_json::de::Deserializer::end_seq::ha50450c80be0758a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5358 } Some("serde_json::de::Deserializer::end_seq::hce6c6516b5726f6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3908 } Some("wasm_bindgen::convert::closures::_::invoke::hff6fdbaf3892895a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7737 } Some("links_notation::flatten_links::hdb20eb89021c4c4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8843 } Some("std::io::impls::>::write_vectored::hd075a45def475b91") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9100 } Some("core::num::flt2dec::digits_to_dec_str::h8999c0e105d2a98f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 727 } Some("alloc::collections::btree::map::entry::VacantEntry::insert_entry::{{closure}}::h343418e0a8e5b936") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6651 } Some("std::collections::hash::map::Entry::or_default::h7ba4a341a669e34b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6652 } Some("std::collections::hash::map::Entry::or_default::h970b0288c4aa8f57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7449 } Some("core::array::iter::iter_inner::PolymorphicIter<[core::mem::maybe_uninit::MaybeUninit]>::next::h1485fb1dfbe6cfaa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8983 } Some("rustc_demangle::v0::Parser::integer_62::hbe2dbddfe2890d14") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 739 } Some(" as core::ops::try_trait::Try>::branch::h3a8d9d7369ca88da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 762 } Some(" as core::ops::try_trait::Try>::branch::hfc5e64ee09c8a580") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1097 } Some("serde_json::error::Error::fix_position::hf9b053c7f0c91879") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1619 } Some("core::char::methods::encode_utf8_raw_unchecked::h71d122e85f0d473f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1739 } Some("core::char::methods::encode_utf8_raw_unchecked::hb98d7ba9847ca805") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5136 } Some("core::char::methods::encode_utf8_raw_unchecked::h222a6eafb4b05de7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5305 } Some("core::char::methods::encode_utf8_raw_unchecked::h97189a7e7efaca64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5479 } Some("core::char::methods::encode_utf8_raw_unchecked::h939bf7240e8befd4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5500 } Some("serde_json::error::Error::fix_position::h0b859aa9b4dc0d6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6223 } Some("core::char::methods::encode_utf8_raw_unchecked::h8d1668969172fbd3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6854 } Some("core::char::methods::encode_utf8_raw_unchecked::hb28ea30aba8067ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7305 } Some("core::char::methods::encode_utf8_raw_unchecked::he3499bfa851dd708") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8165 } Some("core::char::methods::encode_utf8_raw_unchecked::hcaaca3b88451c1c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8479 } Some("core::char::methods::encode_utf8_raw_unchecked::h6330d4977fbd712e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1202 } Some("wasm_bindgen_test::__rt::tab::h5d96cebd60f1837a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3878 } Some("wasm_bindgen::convert::closures::_::invoke::h4e51df3084e59e6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3889 } Some("wasm_bindgen::convert::closures::_::invoke::h837c49b181a822aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3899 } Some("wasm_bindgen::convert::closures::_::invoke::hc7456de884201f45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8980 } Some("rustc_demangle::v0::HexNibbles::try_parse_uint::h86f911c72dcaed25") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 519 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h52a175e52148f584") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1244 } Some("::fmt::hafc0bf7cd7f946a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4705 } Some("alloc::vec::Vec::extend_desugared::hc1712a81ca342d92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5622 } Some("::ignore_str::h38a3db467f5247d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7416 } Some("alloc::vec::Vec::extend_desugared::h637ebf7076973c60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7616 } Some("links_notation::parser::multi_line_value_link::{{closure}}::h698ede63213234ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8915 } Some("core::fmt::Write::write_char::h0ad8f881b04072d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9157 } Some("core::slice::memchr::memrchr::h62034f51fac0c7ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 266 } Some(" as test::formatters::OutputFormatter>::write_run_start::ha51a8411b9feb64f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 267 } Some(" as test::formatters::OutputFormatter>::write_run_start::hc3ad6740261a71ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9151 } Some("core::unicode::unicode_data::grapheme_extend::lookup_slow::h40490b0ac92efe4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4000 } Some("once_cell::unsync::OnceCell::try_insert::hcdc107217b32ff89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8845 } Some("std::io::impls::>::write_all_vectored::h4c97cbe937de11a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 348 } Some("core::ptr::drop_in_place::hec047852b45e67a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4418 } Some("core::slice::sort::stable::merge::MergeState::merge_up::h669cad818e14b458") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9123 } Some("core::str::count::do_count_chars::ha059beff1dcfd22f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4378 } Some("core::slice::sort::stable::quicksort::stable_partition::h0b8fb015787a0d83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4383 } Some("core::slice::sort::stable::quicksort::stable_partition::h1e327d669882c768") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4384 } Some("core::slice::sort::stable::quicksort::stable_partition::h1ee18ed4e5aaee94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4386 } Some("core::slice::sort::stable::quicksort::stable_partition::h24e760d649927e84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4391 } Some("core::slice::sort::stable::quicksort::stable_partition::h47d15a1bbf608927") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4392 } Some("core::slice::sort::stable::quicksort::stable_partition::h712a8705d39dd04a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4393 } Some("core::slice::sort::stable::quicksort::stable_partition::h7302ebbed47a76f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4395 } Some("core::slice::sort::stable::quicksort::stable_partition::h952fb51b70a8d4b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4396 } Some("core::slice::sort::stable::quicksort::stable_partition::h9f654e8f723ed245") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4398 } Some("core::slice::sort::stable::quicksort::stable_partition::hb2e4525701fe3c24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4399 } Some("core::slice::sort::stable::quicksort::stable_partition::hccc8a8534f4d7194") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4401 } Some("core::slice::sort::stable::quicksort::stable_partition::hd99f2cad1b7f355d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9181 } Some("::fmt::h70826c1471ad6aa5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 254 } Some(" as test::formatters::OutputFormatter>::write_result::h85aea6eaa72e4472") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1357 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_none::h1006742d2526c6de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7888 } Some("nom::internal::Parser::parse::h1746c3def94ec69b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8062 } Some(" as core::str::pattern::Searcher>::next::h9ae455728ba3ae79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1500 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h433a1c1cdf709e03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8492 } Some("alloc::vec::splice::>::fill::h140ad30884b22a60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1503 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::hc9c2fa57cbb2ca98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1398 } Some("serde_json::ser::Serializer::new::h8468178671215670") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1508 } Some("core::f64::::is_infinite::h73d7ea2869544ce2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8833 } Some("::type_id::h054965a0d695c3ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8493 } Some("alloc::vec::splice::>::fill::h7a1d3dbeda604f8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1510 } Some("core::mem::transmute_copy::h05a6325382826b5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1511 } Some("core::mem::transmute_copy::h11d380cf3baf0795") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1512 } Some("core::mem::transmute_copy::h13523368a711ba3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 259 } Some(" as test::formatters::OutputFormatter>::write_result::hf115f8ebbe67647d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1513 } Some("core::mem::transmute_copy::h58d564529b91d661") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1539 } Some("::into_iter::he660b90ba0aa4ee9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1615 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h43908e570fdf8b1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8974 } Some(" as core::iter::traits::iterator::Iterator>::next::h06ac467fa6821447") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 127 } Some("wasm_bindgen_test::__rt::Context::execute::ha36435b288f554d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 530 } Some("serde_json::de::from_trait::h7529698eb036ef02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 613 } Some("alloc::vec::Vec::pop::h47d00b12970305d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 129 } Some("wasm_bindgen_test::__rt::Context::execute::hed44a1faed7f7992") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4832 } Some("serde_json::ser::Formatter::end_array_value::hce92b01ea45e6651") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8834 } Some("::type_id::h81f53a1fd46151f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8954 } Some("::fmt::h34a62ccd975ec13b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9044 } Some("alloc::raw_vec::handle_error::h9ace31a903e6893e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9170 } Some("core::panicking::panic_nounwind::hae8ddcec6116b725") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 131 } Some("wasm_bindgen_test::__rt::Context::execute::ha18226af39294f5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9183 } Some("::fmt::h5269b82f68123205") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4834 } Some("serde_json::ser::Formatter::end_object_value::h0a6b6e5ae7372361") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5274 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h0f5b5f7d0c27dcb8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4519 } Some("link_cli::query_processor::QueryProcessor::check_id_match::h98879b3be70bd449") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5331 } Some("serde_json::de::MapAccess::new::h5812284e0c298e0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5332 } Some("serde_json::de::SeqAccess::new::hd45ead3e0ac28095") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6770 } Some("alloc::vec::Vec::extend_desugared::hb1425d29235327ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5396 } Some("alloc::vec::Vec::is_empty::h4214e7a5c4f140a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7265 } Some("::c_rounds::ha1f52229439d78e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 133 } Some("wasm_bindgen_test::__rt::Context::execute::hc1d26c44e39ba858") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7374 } Some("::c_rounds::h1ba04d7a7de651aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7500 } Some("::c_rounds::hafe41a4ba808029a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 429 } Some("test::console::list_tests_console::h0bc75c9d5b2996c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 426 } Some("hashbrown::map::HashMap::remove::h4f7941f79147628f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4415 } Some("core::slice::sort::stable::merge::MergeState::merge_down::hf463703e17669594") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4568 } Some(" as core::iter::traits::iterator::Iterator>::next::h45c8de5bb9be5022") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5526 } Some("core::num::::from_ascii_radix::hc34eb0c6dc068ae4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5069 } Some("::set_name::hfd8f7b6e71923ac8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4499 } Some("link_cli::query_processor::QueryProcessor::match_pattern::hd7825f61af81b6a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5766 } Some("alloc::collections::btree::map::entry::VacantEntry::insert_entry::{{closure}}::h5467d1dac69ab6d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 84 } Some("wasm_bindgen::__rt::WasmWord::from_usize::hb671257f6679be5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 85 } Some("::split::h1a61599270ead273") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 95 } Some("alloc::boxed::convert::> for core::pin::Pin>>::from::h0837e4d6d9df6a8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 96 } Some("alloc::boxed::convert::> for core::pin::Pin>>::from::h7f13bc9ddcda2ca1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 559 } Some("serde_json::de::Deserializer::peek_invalid_type::ha485777204777746") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 97 } Some("alloc::boxed::convert::> for core::pin::Pin>>::from::hc1a7fa5fdc5c8a28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5472 } Some("::rejecting::h814262037e5ade48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 98 } Some("alloc::boxed::convert::> for core::pin::Pin>>::from::hefb642c8009f7b3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5797 } Some(" as core::ops::range::RangeBounds>::start_bound::h615bb5bcab457dbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 105 } Some(" as core::ops::deref::DerefMut>::deref_mut::h1fc58711095370e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5812 } Some("::bitor::h2287585090a49a07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7157 } Some("core::slice::sort::stable::merge::MergeState::merge_down::hf54bf26622aa4d9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5813 } Some("::bitand::hb07d3bca4311f3fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5872 } Some("wasm_bindgen::__rt::WasmWord::is_zero::h8a037344db8fa208") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5891 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h47ed07a55321f389") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9137 } Some("core::num::flt2dec::strategy::grisu::format_exact_opt::possibly_round::h6d2a0d3ecc48ff3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6214 } Some("::rejecting::h688683bf997f1f73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 106 } Some(" as core::ops::deref::DerefMut>::deref_mut::h31a3317095b96689") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1617 } Some("core::str::converts::from_utf8_unchecked::h95fe52054f6a73c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 107 } Some(" as core::ops::deref::DerefMut>::deref_mut::h72cbbe1ce0bdd4c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1702 } Some("::to_string::ha7b36e7013fc2050") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 108 } Some(" as core::ops::deref::DerefMut>::deref_mut::h7b56f4cdb118e721") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 109 } Some(" as core::ops::deref::DerefMut>::deref_mut::h89d5fc7bb0c39077") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 110 } Some(" as core::ops::deref::DerefMut>::deref_mut::hf22205472acb71d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 564 } Some("serde_json::de::VariantAccess::new::hf397fae2f7998b69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 565 } Some("serde_json::de::UnitVariantAccess::new::hb08eb3a71fcaca39") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 581 } Some(" as serde_core::de::VariantAccess>::unit_variant::hcd38858665249245") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5352 } Some("serde_json::de::Deserializer::peek_invalid_type::h12b33a87ead75452") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 921 } Some(" as core::default::Default>::default::h799bd11062dfe713") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 941 } Some(" as core::ops::deref::Deref>::deref::hcff648ecb42bd97f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 957 } Some("wasm_bindgen::__rt::WasmWord::from_usize::h86d49461068a9cdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 959 } Some("wasm_bindgen::__rt::WasmWord::into_usize::hcd0932b6fe5b2c37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1069 } Some("::join::h86cbb34797abae99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1070 } Some("::split::hf0546252ad572458") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6251 } Some("link_cli::query_processor::QueryProcessor::simplify_changes_list::h7915e492f0ed58a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1073 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::hf921c5faf4ffe900") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1103 } Some("wasm_bindgen::JsValue::_new::hc94deea84c4632dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6639 } Some("core::option::Option::is_some::h0d0f86d2428f07f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1199 } Some("wasm_bindgen_test::__rt::__wbgtest_console_debug::{{closure}}::h73062b59162238e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6792 } Some("alloc::vec::Vec::is_empty::h25589c42f5bae99b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6793 } Some("alloc::vec::Vec::is_empty::h30643e6cf19b2c12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 588 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_unit::h3e73241d164740df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6794 } Some("alloc::vec::Vec::is_empty::h6677d8343939b7fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6994 } Some("core::error::Error::description::h1018543bbe38cc87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6997 } Some("core::error::Error::provide::h1d04ae47c72da7f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 468 } Some("getopts::Options::optopt::h96994add22a3146a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1711 } Some("::to_string::h15c4e0341138fac7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1761 } Some("core::fmt::Arguments::new::hf3efbc3c18f9b081") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3255 } Some("wasm_bindgen::JsValue::as_string::hf7541416849fdc04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 470 } Some("getopts::Options::optmulti::hf40659164b5ee392") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3359 } Some("core::fmt::Arguments::new::h6bf142d9e23983f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3415 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_drop::h521272d150175c47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3631 } Some("core::ops::function::FnOnce::call_once::h5c8fbc0e573149cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1241 } Some("::into_future::h973a4722c4db129f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3694 } Some("core::task::wake::RawWaker::new::h59ebae12c4ec5591") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1399 } Some("serde_json::ser::Serializer::with_formatter::h13090744348f955f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1664 } Some("wasm_bindgen::convert::impls::>::into_abi::{{closure}}::h4afe89c40979b8ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1665 } Some("wasm_bindgen::convert::impls::::from_abi::h700a8614f86338a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7680 } Some("::to_vec_in::ConvertVec>::to_vec::h68db18ebd9f4ba86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1666 } Some("wasm_bindgen::convert::impls::::from_abi::h3d63d9617da7105f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4617 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hf112dcdb43645ff1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4636 } Some("::into_iter::h0b932a0712cc5e61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4650 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha6f871300954ed66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4660 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hdd2eff005c3fa74d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3909 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h018371ded313f36d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4662 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h8cdba136ebb26e1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3940 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h8200044627029aa6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4664 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hae1615f75c7345d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3945 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::ha2ccdddead128f53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4668 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h49d5c46227030fad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3949 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hd0fb79da5b848de4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4670 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hb9c95ea0177e2323") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4022 } Some("core::mem::transmute_copy::h079f6d535465cf6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4716 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::h2ab94da700edb9a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4023 } Some("core::mem::transmute_copy::h27f5b4a8d7edf15b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5455 } Some("alloc::collections::btree::search::>::search_tree::h0e38bcf036906765") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4024 } Some("core::mem::transmute_copy::h473e8261ac6bc92f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 322 } Some("std::sync::mpmc::list::Channel::recv::h0ab5a14b6862d1f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4402 } Some("core::slice::sort::stable::quicksort::quicksort::h2de2d9f4c9f56701") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4403 } Some("core::slice::sort::stable::quicksort::quicksort::h5499d07bae7f84d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4404 } Some("core::slice::sort::stable::quicksort::quicksort::hd0fb23b121797d89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4405 } Some("core::slice::sort::stable::quicksort::quicksort::hd662a7efba6b343a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4406 } Some("core::slice::sort::stable::quicksort::quicksort::hdd58d8fa3e407802") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4407 } Some("core::slice::sort::stable::quicksort::quicksort::hed0999d476305564") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9057 } Some("::fmt::hdabd1f682409e9fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9141 } Some("core::str::slice_error_fail_rt::he82115ffb6428cf1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 666 } Some("alloc::collections::btree::search::>::search_tree::h75ea26ff6ab630b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4717 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::hb63319416421f0fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1667 } Some("wasm_bindgen::convert::impls::::from_abi::hd372efbb83ed15d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7031 } Some("core::error::Error::description::hb969d9cbe164ba4c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4025 } Some("core::mem::transmute_copy::h52d675f8d8a2d8ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1669 } Some("wasm_bindgen::convert::impls::::from_abi::hc4e7880b3f8ca59f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4026 } Some("core::mem::transmute_copy::h5a5c033e69f8097e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1766 } Some(" as core::ops::deref::Deref>::deref::h1969727988069872") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4027 } Some("core::mem::transmute_copy::h679ddae619f990bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3253 } Some("wasm_bindgen::JsValue::_new::h2d9d27bb3c974fef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7034 } Some("core::error::Error::provide::h20abeacf5b648c06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4718 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::hc7968dfaee0b2d12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7440 } Some("core::cell::Cell::set::h36f0ad00d1c48000") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4719 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::hdcbbeaf81d981c6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7144 } Some("core::num::::from_ascii_radix::hf07d4a7680ef3291") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4720 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::hf6637b28954512e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4743 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h80414a8ab29695a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3363 } Some("core::cell::Cell::new::hf693f4c01cd75ebe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3608 } Some("wasm_bindgen::__rt::WasmWord::from_usize::h38f66c81251c06c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7471 } Some("::rejecting::hab71fc530aa6ee0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3609 } Some("wasm_bindgen::__rt::WasmWord::into_usize::h9354154f62b94b7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3741 } Some(" as core::ops::deref::Deref>::deref::h872ef021a00e2a3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7715 } Some("alloc::vec::Vec::is_empty::h36b4a0cb7c5f50c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3758 } Some("::split::hb31ccf63c618f1b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7716 } Some("alloc::vec::Vec::is_empty::h8090643fc3cbe865") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3763 } Some(" as core::ops::deref::DerefMut>::deref_mut::hddc4308128779bb8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8025 } Some(" as nom::internal::Parser>::process::{{closure}}::h7deac7eb9a4252e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3832 } Some("wasm_bindgen::convert::impls::::split::h9d923a57b05744ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8028 } Some(" as nom::internal::Parser>::process::{{closure}}::he2a2562dc3a463c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3835 } Some("wasm_bindgen::convert::impls::::into_abi::h66930b5430c93694") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8102 } Some(" as core::ops::try_trait::Try>::from_output::h36179d92a86411cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3838 } Some("wasm_bindgen::convert::impls::::into_abi::h7c881cfe98bd89f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8219 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h1ed968735989eb60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3842 } Some("wasm_bindgen::convert::impls::::join::hc73695fa00377cb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8220 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hcddb7e66d0779b17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4746 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hd93acea87509166c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4749 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hdd05280cb8bb830e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4029 } Some("core::mem::transmute_copy::hc792ae3beb350b6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4755 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h088c56c3dac3271f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4761 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h60e7bf41a380489c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8956 } Some("::fmt::h15c4bfdfd49dff55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4762 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h7ca41237c662fbaf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4764 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h7f5eb15c05dfb536") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4790 } Some("core::str::converts::from_utf8_unchecked::hf5578139a2bf6cd4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4941 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7176eaac6a0c17cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5582 } Some("serde_json::read::SliceRead::skip_to_escape::h7fed717e4c808762") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4944 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hfc101d25554ddbc7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4976 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h78e89114457ee8ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3843 } Some("wasm_bindgen::convert::impls::::join::he918dd88d2b4a095") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3844 } Some("wasm_bindgen::convert::impls::::join::he981bb1be776eb8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4995 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h51d0c39f5c50d8be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4996 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h9e84dee7c3d826e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4997 } Some(" as serde_core::de::DeserializeSeed>::deserialize::ha06c6b92f2c4ed1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4030 } Some("core::mem::transmute_copy::hcf8a7adb8ce5af9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3845 } Some("wasm_bindgen::convert::impls::::split::h3de4f21538f3dfa5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4998 } Some("serde_core::de::MapAccess::next_value::h328bba76cb919895") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4031 } Some("core::mem::transmute_copy::hf8676dee3b63b31c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 548 } Some("serde_json::de::Deserializer::parse_exponent::h845c3ac585edb38d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3846 } Some("wasm_bindgen::convert::impls::::from_abi::hea2d6a38a07f0d2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3847 } Some("wasm_bindgen::convert::impls::::from_abi::h4f23ccae663c963f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5002 } Some("serde_core::de::MapAccess::next_value::h8d5f3ad8ba4bedf3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5004 } Some("serde_core::de::MapAccess::next_key::h360790d5ea786e06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5006 } Some("serde_core::de::SeqAccess::next_element::h0d78c757d35fe635") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5342 } Some("serde_json::de::Deserializer::parse_exponent::hc9b67e5097647233") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5008 } Some("serde_core::de::SeqAccess::next_element::h4e0e13244c7c942b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5020 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::hf56feb62650b7b71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5030 } Some("::to_string::h62ac706d5693422e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5090 } Some("::into_iter::hf7444fdc1f9b65d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5149 } Some("core::ops::function::FnOnce::call_once::h2c524fca949968ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7647 } Some(">::process::h1a047b3afeb0b917") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5295 } Some("::to_string::h4c077a89ac2417a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3848 } Some("wasm_bindgen::convert::impls::::from_abi::h044b029be0743f55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3849 } Some("wasm_bindgen::convert::impls::::from_abi::h09100a84327cf5b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3850 } Some("wasm_bindgen::convert::impls::::from_abi::habf645614e935aa0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3851 } Some("wasm_bindgen::convert::impls::::from_abi::hfc8f8b902864e3c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7648 } Some(">::process::h33289c63eea17021") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3852 } Some("wasm_bindgen::convert::impls::::from_abi::h16bd5a6c6faa34f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4207 } Some("serde_core::de::impls::::deserialize::hf2c942906afd031c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3853 } Some("wasm_bindgen::convert::impls::::from_abi::h4c321303899e0185") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8269 } Some(" as core::ops::try_trait::Try>::from_output::hc022e2fc61dad094") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5316 } Some("serde_core::de::impls::::deserialize::h40f60adbcc828a08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8380 } Some("core::cmp::impls::::eq::h7c5184fe66025017") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5317 } Some(" as serde_core::de::Deserializer>::deserialize_string::hd070bcc0dae35581") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8400 } Some("::rejecting::h69332f9b54d09053") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5318 } Some("serde_core::de::MapAccess::next_entry::haf585aeb78307bc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5320 } Some("serde_core::de::MapAccess::next_value::h02e9b76c53bea680") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5323 } Some("serde_core::de::SeqAccess::next_element::h957c5a502f99ec06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5418 } Some(" as serde_core::de::Deserializer>::deserialize_str::h46b225cff15229ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5467 } Some("core::f64::::is_infinite::he40e226a4e3c74eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5506 } Some("::to_string::h2304e99d8a919350") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5508 } Some("::to_string::h55dde782f9fe26a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5512 } Some("core::fmt::Arguments::new::h41b84f2b5894d597") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5513 } Some("core::fmt::Arguments::new::h6a36a75b2ba8b40a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5514 } Some("core::fmt::Arguments::new::h6f2c1e4a9343df5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5515 } Some("core::fmt::Arguments::new::h76b779fbf75f26be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5516 } Some("core::fmt::Arguments::new::hca4456b6de4eafd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5517 } Some("core::fmt::Arguments::new::hd4f5efaef3d071ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5596 } Some(">::into::hee863480d2a93f1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5600 } Some(">::into::h752b0cb57f528b0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5625 } Some("::next::h30bc5d9cb1f65b47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5626 } Some("::peek::h0dc4751ebe2de699") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5634 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h4abf4833d7055d9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5635 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hac78b1f527979eed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5636 } Some("::deserialize::h78b4a8393a39a13d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5683 } Some("core::str::converts::from_utf8_unchecked::hd5a2d3f0d9c583ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5705 } Some("::into_iter::h5cbc3c35711f38b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5717 } Some("serde_json::value::de::::deserialize::hc3fad3043c00cbb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5785 } Some(">::try_into::hb45e59d3f0f5c8bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5789 } Some("core::str::converts::from_utf8_unchecked::h21eebb66fbd53c9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5915 } Some("core::fmt::Arguments::new::h18979dd8bc7c695e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5916 } Some("core::fmt::Arguments::new::h6831f402c89936ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5917 } Some("core::fmt::Arguments::new::hb5bb5be3d7c8d49b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5982 } Some("wasm_bindgen::JsValue::as_debug_string::hfa4dc4348174ffea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6193 } Some("core::fmt::Arguments::new::h0a9735c484b51941") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6194 } Some("core::fmt::Arguments::new::h17b137d1a8622f79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6195 } Some("core::fmt::Arguments::new::h2a452d14d46e81d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6196 } Some("core::fmt::Arguments::new::h50e1865c89352378") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6197 } Some("core::fmt::Arguments::new::h61b70e856ccc474c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6198 } Some("core::fmt::Arguments::new::hb9da5f0e446cc549") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6199 } Some("core::fmt::Arguments::new::hd94972dee8467e65") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6260 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h09dfffa1a73e79d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6261 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h4670739c5326f945") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6262 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h747b0d8da4efabc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6280 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h1293caaeca1d030f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6281 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h4dc83b0f2edc9455") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6282 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h57b7ca100ec79a41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6283 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h78e80591d0c4c114") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6284 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h870222020fc4e224") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6285 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hcc4423f45ff4bca4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6286 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha56e52edeee87eac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6287 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hb456be7b0cb2cea0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6288 } Some("core::iter::traits::iterator::Iterator::map::h1cb0a7a05ddc66ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6289 } Some("core::iter::traits::iterator::Iterator::map::hc236734421714c3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6295 } Some("core::iter::traits::iterator::Iterator::for_each::h42c161ece27a5bcc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6309 } Some("::into_iter::h006caa64316fb231") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6310 } Some("::into_iter::h27cc8359689b5223") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6311 } Some("::into_iter::h33920e3f462593bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6315 } Some("::into_iter::h975ea7df27a7e35f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6316 } Some("::into_iter::h99309dcc86cfda15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6618 } Some("::to_string::h1dc0c57f650b263b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6649 } Some(" as core::iter::traits::iterator::Iterator>::next::ha7272f07cda304b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6741 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h3cb76ae700ff6587") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6747 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hdd1fd4d590417e04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6749 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h5be593ea8122559f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6751 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h124c020f56fc48bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6795 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::hf416c4fdba47c371") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6811 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h6de6b25716406821") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6813 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hd6ff94eb86ab1103") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6817 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h2239054d82f7b2e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6818 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h8c36e6e6bff8317e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6826 } Some("core::iter::traits::iterator::Iterator::map::h2d83d48555a7ed22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6827 } Some("core::iter::traits::iterator::Iterator::map::h77f4fec6b5cec6ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6828 } Some("core::iter::traits::iterator::Iterator::map::h8e7bfd35db102526") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6833 } Some("::into_iter::h19186d6ba74e3558") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6834 } Some("::into_iter::hda2635b0e23d1854") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6989 } Some("::to_string::h91291c5b4c003351") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7069 } Some(" as core::ops::try_trait::Try>::from_output::hcb67bce17d15af94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7117 } Some("core::fmt::Arguments::new::h485185f1f2844f2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7118 } Some("core::fmt::Arguments::new::h6594d1e37f90d31c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7119 } Some("core::fmt::Arguments::new::hb4d0d8a05f43d876") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7166 } Some("core::fmt::Arguments::new::h831cc95524402957") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7167 } Some("core::fmt::Arguments::new::hb21c746d9d7226a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7219 } Some("core::fmt::Arguments::new::h23534fe6091c6767") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7220 } Some("core::fmt::Arguments::new::h42423068856c29be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7296 } Some("std::ffi::os_str:: for str>::as_ref::hed1a0b62ddcc2cbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7328 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h20137a3bc6bb482b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7385 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hfcf84597022134cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7386 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h18bcf2cb61b902ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7415 } Some(">::as_ref::h50266f325b187b8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7429 } Some(" as core::ops::try_trait::Try>::branch::hde8c8e467616de2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7434 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h575a9cf9efaaecc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7450 } Some("core::fmt::Arguments::new::h6297e622585af97c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7451 } Some("core::fmt::Arguments::new::h417f57bbcf7e7604") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7452 } Some("core::fmt::Arguments::new::h71ac6286b3a848eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7453 } Some("core::fmt::Arguments::new::he027e8e6b80683da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7454 } Some("core::fmt::Arguments::new::h67c4ba40e9738530") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7457 } Some("core::fmt::Arguments::new::h222cd3827a9e9c1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7458 } Some("core::fmt::Arguments::new::h82b0ffe07c58b0ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7459 } Some("core::fmt::Arguments::new::ha320886b11988bed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7460 } Some("core::fmt::Arguments::new::ha786693b0ef9ee89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7461 } Some("core::fmt::Arguments::new::hb71f650d1048b505") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7462 } Some("core::fmt::Arguments::new::he146168def6d41e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7588 } Some("nom::internal::Parser::map::hd84124898857aa83") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7684 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::hf4c4f8ee66b5f6b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7717 } Some("alloc::vec::in_place_collect:: for alloc::vec::Vec>::from_iter::h8bd58dd34f871fe4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7734 } Some(" as core::iter::traits::collect::FromIterator>::from_iter::h6b483eb0c6b6cc5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7768 } Some(">::process::{{closure}}::h034ba99fd8569062") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7779 } Some(">::process::{{closure}}::h2cfcc8d7160c0207") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7803 } Some(">::process::{{closure}}::h54c0050f079c7a4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7804 } Some(">::process::{{closure}}::h570966678782da9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7842 } Some(">::process::{{closure}}::ha7b05a8bba562877") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7843 } Some(">::process::{{closure}}::haad43ff8453427c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7860 } Some(">::process::{{closure}}::hec41b0fd74502a57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7909 } Some("nom::sequence::preceded::hed5acef60bde1db3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7982 } Some("core::str:: for str>::as_ref::he170b5525d8b8584") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8035 } Some(" as core::ops::try_trait::Try>::from_output::h51f170da56f28649") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8046 } Some(" as core::str::pattern::ReverseSearcher>::next_reject_back::h9fe763f51c078984") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8110 } Some(" as core::str::pattern::Searcher>::next_reject::ha92550b99b479561") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8111 } Some(" as core::str::pattern::Searcher>::next_match::h0c6bad591ed3819f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3854 } Some("wasm_bindgen::convert::impls::::from_abi::he20a9707f64750d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3855 } Some("wasm_bindgen::convert::impls::::from_abi::h66e8db7dc33ff26b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4219 } Some(" as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}}::h6dc1f0b07ae5de73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3856 } Some("wasm_bindgen::convert::impls::::into_abi::ha9d7148e3a499240") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4164 } Some("wasm_bindgen::__rt::WasmWord::from_usize::hfc3804330bcb5b23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4220 } Some(" as core::iter::traits::collect::FromIterator>>::from_iter::{{closure}}::hf5af1a5eefa89598") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8668 } Some("core::error::Error::description::h1bd5808b356c1216") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8669 } Some("core::error::Error::description::h4ec3959c28afd0c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8112 } Some(" as core::str::pattern::Searcher>::next_match::hd29f072ae0969900") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8670 } Some("core::error::Error::description::h56780d1a0d06d475") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4165 } Some("wasm_bindgen::__rt::WasmWord::into_usize::h1462835f4e555235") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8671 } Some("core::error::Error::description::haf01ff389d2b3591") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4166 } Some("::join::h957ac1dea797a8fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8680 } Some("core::error::Error::provide::h1094067989abd1a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4167 } Some("::split::hfb48644871bbd28f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8681 } Some("core::error::Error::provide::h159d7f77ed30dcee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4579 } Some(" as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::h1117337697fa8b33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8682 } Some("core::error::Error::provide::hd0079437c4b6fb59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4580 } Some(" as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::hbfa0f4087fbd32a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8683 } Some("core::error::Error::provide::hf4f9d32aee544c2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4598 } Some(" as core::iter::adapters::SourceIter>::as_inner::h3c47803a8b0e5202") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8780 } Some(" as core::ops::range::RangeBounds>::start_bound::h7c22b6bb195035f0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8113 } Some(" as core::str::pattern::Searcher>::next_match::hdeb725025c13e970") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8783 } Some("core::option::Option::is_some::h8e5ec54dcc9a464e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4599 } Some(" as core::iter::adapters::SourceIter>::as_inner::h98b5e3def5b74df2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4241 } Some(" as core::ops::try_trait::Try>::from_output::h6ff04af2ecf733bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8114 } Some(" as core::str::pattern::Searcher>::next_match::hedcbbd8dedef04f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4265 } Some("core::fmt::Arguments::new::h1441447bf075405c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8115 } Some(" as core::str::pattern::Searcher>::next_reject::h5d8e6f967b83d233") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4266 } Some("core::fmt::Arguments::new::h7404174d316b67fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8152 } Some("core::fmt::Arguments::new::h3538a4c771dd3df2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8153 } Some("core::fmt::Arguments::new::h503a5d0c63792361") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8154 } Some("core::fmt::Arguments::new::h9a5a0a4dcbaeeea5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4826 } Some("serde_json::ser::Serializer::with_formatter::hc09ff02d30550ace") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4908 } Some("anyhow::__private::must_use::hdb05333c0f711ba7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7649 } Some(">::process::h35d0d798111bfdc1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4925 } Some("wasm_bindgen::convert::impls::::into_abi::h8c67f61fc95c7f48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5062 } Some("::save::h1086f3dc35a450a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5268 } Some("wasm_bindgen::__rt::WasmWord::from_usize::he3587522c19d7b50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4267 } Some("core::fmt::Arguments::new::h7552d2ffb674bde8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5269 } Some("wasm_bindgen::JsValue::_new::hed2a3c78809df3f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5312 } Some("::split::hdb39610540596bc7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7652 } Some(">::process::h61baa8a330ad829f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5374 } Some(">::borrow::h49644f1aa7668da1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8155 } Some("core::fmt::Arguments::new::hb5d5d0552d16959b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5803 } Some("::truncate::h75c97dca8274fa3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5804 } Some("::to_signed::h6f65a6ab7ef54685") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7653 } Some(">::process::h665aed26a51107dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5862 } Some("wasm_bindgen::__rt::WasmWord::from_usize::h9083f1291dfed705") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5864 } Some("wasm_bindgen::__rt::WasmWord::into_usize::hc70b0337089cb9ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7654 } Some(">::process::h67e6d8d47b70f63f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5879 } Some("wasm_bindgen::convert::impls::::split::h51d9ce292784827c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5883 } Some("wasm_bindgen::convert::impls::::split::h40d17424b5fa532a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5885 } Some("wasm_bindgen::convert::impls::::join::h88fa68e7475c4e08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5886 } Some("wasm_bindgen::convert::impls::::join::hd309032bd73d10e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4268 } Some("core::fmt::Arguments::new::hc851afb44885a529") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5887 } Some("wasm_bindgen::convert::impls::::join::hf90137bad67fb82d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4269 } Some("core::fmt::Arguments::new::he9be30c595f8b128") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5950 } Some("::join::h265c560520a3d589") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4284 } Some("core::iter::traits::iterator::Iterator::filter_map::h3e75ac8827d5807e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5951 } Some("::split::h4471846690866a9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5983 } Some("wasm_bindgen::JsValue::_new::he79cd61ebcafa2d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4289 } Some("core::iter::traits::iterator::Iterator::filter::haf1e3d00da86d75e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6026 } Some(">::from::h5e5da8f09695cb7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4307 } Some("link_cli::named_type_links::NamedTypeLinks::format_reference::{{closure}}::h473806655db89ea1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6514 } Some(" as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::hefa5f5de08727e7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4310 } Some("serde_core::de::impls::>::deserialize::h711013a0d5090297") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6523 } Some(" as core::iter::adapters::SourceIter>::as_inner::hc88101c5bdce7003") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4486 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::heaa77f3f9d362242") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6538 } Some(">::borrow::hfd5646243422f832") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4491 } Some("core::iter::traits::iterator::Iterator::for_each::h56a232ce3f03661c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6604 } Some(">::borrow::h1979fbcbe3ef5f89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4520 } Some("link_cli::query_processor::QueryProcessor::check_id_match::{{closure}}::h4f69753abae5f9be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8156 } Some("core::fmt::Arguments::new::hef49042650f5c45c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4555 } Some("core::iter::traits::iterator::Iterator::map::h824cf9b1a60289bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8208 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h0fb17d7122da79ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4610 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h1d95fc14a3de63ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8209 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h362c5da92d9705d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6707 } Some("alloc::boxed::Box::into_raw::h9aaf47f51c7a5aa5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7657 } Some(">::process::h6dea7ebbd135c081") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6719 } Some("anyhow::ptr::Ref::from_raw::h82d27286cbdf96bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6979 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h745d845597f9212f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7039 } Some("core::ptr::non_null::NonNull::cast::h14f9e767a3fc3126") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7040 } Some("core::ptr::non_null::NonNull::cast::h6f64913851ee6c06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7659 } Some(">::process::h808151bed34eac21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7041 } Some("core::ptr::non_null::NonNull::cast::h8091b05680a00964") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7042 } Some("core::ptr::non_null::NonNull::cast::h8e0af472f9d715d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7043 } Some(" as core::convert::From<&T>>::from::h400f63a66de7fdf3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7280 } Some(">::borrow::h429cdeea97af09db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7660 } Some(">::process::h80dcc0b624797f69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7581 } Some("nom::internal::Parser::map::h8e798b75423abf47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8210 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hb61ed49e45784f51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8259 } Some("::into_iter::hf4189491b2bd2599") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7663 } Some(">::process::h9fcb46a83c97e5c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8260 } Some("::into_iter::hf651e6c249b31c62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8288 } Some("nom::bytes::complete::take_while1::ha09dada0addfa9c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7620 } Some("nom::internal::Parser::map::h327f926118bb84d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7811 } Some(">::process::{{closure}}::h79863b6b20e18117") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7885 } Some("nom::multi::many0::hc06fe608fc799a04") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7664 } Some(">::process::ha3be0b12fb7ed598") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7886 } Some("nom::multi::many0::hee12a788104d07e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4611 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h4dd61e6b244f7769") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7887 } Some("nom::multi::many1::he135ed7f5c085c16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8935 } Some("core::ptr::drop_in_place::hf7b8d0e0fb4c83c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7901 } Some("nom::sequence::terminated::h3c439b477a86b0bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9028 } Some("core::slice::::starts_with::hc617a7dc4a4c42b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7902 } Some("nom::sequence::terminated::h3f2343505cfc83cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7903 } Some("nom::sequence::terminated::hc042a53cce84780e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4612 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h5bb78cb7fa095bd2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8290 } Some("nom::branch::alt::h249f9fea89d35bf6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9035 } Some("hashbrown::raw::Fallibility::alloc_err::h6877d27c2240a353") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7904 } Some("nom::sequence::terminated::he7912340d0eba79b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8294 } Some("nom::branch::alt::hc6682eab9138efcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9078 } Some("core::fmt::num::imp::::_fmt::hcea67b2fcef29dc9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8325 } Some("::to_string::hc393d351d0778a69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9079 } Some("core::fmt::num::imp::::_fmt::h1ee9792adc5eb5dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8357 } Some("core::iter::traits::iterator::Iterator::map::h6cccdbfae5a03db7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10675 } Some("wasm_bindgen::convert::closures::_::invoke::hf0d18ca00b5c41ba externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8358 } Some("core::iter::traits::iterator::Iterator::map::h8e84fc8d56d3a99c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 172 } Some("core::ops::function::FnOnce::call_once::hab9376c3cf222c20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4613 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h6aa002a7336a2aa7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8381 } Some("core::fmt::Arguments::new::h191e281762322033") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 174 } Some("core::ops::function::FnOnce::call_once::h6afdd095519dd246") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8413 } Some("::into_iter::h2df5e52d543a4efe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 176 } Some("core::ops::function::FnOnce::call_once::h739e5123d0721c42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 178 } Some("core::ops::function::FnOnce::call_once::h7ef6f4252c4094c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7905 } Some("nom::sequence::preceded::h2636963d2e86592e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 922 } Some(" as core::default::Default>::default::hcafaf929cc84a818") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8444 } Some("core::iter::traits::iterator::Iterator::rev::h9496ded3a19a26b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 955 } Some("core::ptr::mut_ptr::::is_null::he0d26042e542ce89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8455 } Some("::into_iter::h67e56ba518d33830") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 970 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h647cd076764c3567") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8512 } Some("::to_string::hf16c8c6fda6ba9c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 971 } Some("wasm_bindgen_test::coverage::_::__wasm_bindgen_generated___wbgtest_module_signature::{{closure}}::h873d647d211b4d47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8640 } Some("anyhow::ptr::Ref::from_raw::he386ab5f84dbb2a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 972 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h663c5dfb5617c145") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4614 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h7ff9596bf91992f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8644 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h5ec7098f2bd46c51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8656 } Some("core::fmt::Arguments::new::h04902b93cc958487") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4615 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha20c5bba06deade8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8657 } Some("core::fmt::Arguments::new::h3b99e488d3012329") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4616 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hdf04e8caec285175") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8658 } Some("core::fmt::Arguments::new::h9e2a94595ac262d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3757 } Some(">::end_bound::heae03f58b3248502") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8741 } Some(" as core::str::pattern::ReverseSearcher>::next_reject_back::h88d1ff3b3f08ade2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4215 } Some(" as serde_core::de::Visitor>::visit_none::h060f3c0137e65180") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8766 } Some("<&mut I as core::iter::traits::iterator::Iterator>::fold::h300179e0820d9e93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 973 } Some("wasm_bindgen_test::coverage::_::__wasm_bindgen_generated___wbgtest_cov_dump::{{closure}}::hd9071f5d0999b353") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8807 } Some("::size_hint::h6911b9e71e89203f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4916 } Some("alloc::rc::Rc::into_raw::h2ecff803dbbb0552") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8940 } Some("::flush::hb35626ad083d119e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5275 } Some("core::mem::forget::h07a800d957d48972") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7907 } Some("nom::sequence::preceded::hbb0d7c3bd5d0cae9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5990 } Some("core::mem::forget::h4cdfa425527c4e0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8041 } Some(" as core::ops::try_trait::Try>::from_output::h0ce4520739bc970a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 978 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hdc1833b11b048114") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 57 } Some("alloc::rc::RcInnerPtr::strong::h0fdd30443078ad42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1020 } Some("core::ptr::const_ptr::::is_null::hb13d05d9d2a56017") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 79 } Some("std::sys::backtrace::__rust_begin_short_backtrace::h9437514235ee6923") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1604 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::__wasm_bindgen_generated___wbgbench_dump::{{closure}}::hea2e1c0d1b0db1b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 171 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h1dce4dca71898206") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1622 } Some(">::into::h4db87617ee70774f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 173 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h4838a7f2f25e24a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1668 } Some("wasm_bindgen::convert::impls::::from_abi::haac1eadd3aa6b97d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 175 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h49589d6fd935b3c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1688 } Some("::drop::h11a9b3598e1be2d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 177 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hb9f2501b32919474") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3379 } Some("alloc::collections::vec_deque::VecDeque::new::hfee0dedd60d0d9ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 181 } Some("core::ops::function::FnOnce::call_once::h8035349092a1e058") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3857 } Some("wasm_bindgen::convert::impls::::from_abi::hb855fcbd5667cd54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 196 } Some("core::ptr::drop_in_place::set::Reset>::hca015c5e69243965") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4305 } Some("link_cli::named_type_links::NamedTypeLinks::lino_lines::{{closure}}::hed50f0310a0dd978") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 446 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hffced0322a5431e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4516 } Some("link_cli::query_processor::QueryProcessor::process_query::{{closure}}::h697d9fcf1f8ece16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 798 } Some("core::ptr::drop_in_place::{{closure}}>::h0b5c9813d142bc02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4517 } Some("link_cli::query_processor::QueryProcessor::process_query::{{closure}}::hc4de673b9f89e184") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8819 } Some("__rustc[16f1505adc47261a]::__rdl_alloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 800 } Some("core::ops::function::FnOnce::call_once::hd2ff6533687c2bb0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8903 } Some("core::ptr::drop_in_place>>::hd8232a1684e31e26") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4523 } Some("link_cli::query_processor::QueryProcessor::apply_operation::{{closure}}::h706601451e869b09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 801 } Some("core::ptr::drop_in_place>>::hd60f48a4aecf3285") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4524 } Some("link_cli::query_processor::QueryProcessor::apply_operation::{{closure}}::he964341b837a7bec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 803 } Some("core::ptr::drop_in_place>>::h017724f15d7b6d74") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8042 } Some(" as core::ops::try_trait::Try>::branch::h9796243e9d4e81ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4534 } Some("link_cli::query_processor::QueryProcessor::solution_is_no_operation::{{closure}}::h0005d1518cdf6b46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8048 } Some("nom::character::char::h7a7529a3b7d93e2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4537 } Some("link_cli::query_processor::QueryProcessor::solution_is_no_operation::{{closure}}::hc5d25cd1dc4e75fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5457 } Some("alloc::collections::btree::search::>::search_tree::hec082d37ae5ec258") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8128 } Some("::as_char::h9c2179de1a4500a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8906 } Some("<&T as core::fmt::Debug>::fmt::h21ffb6f0cd9e9cb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8215 } Some(" as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::h80c577297cd3b479") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8917 } Some("core::fmt::Write::write_char::h228193457b3d0032") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8272 } Some(" as core::iter::adapters::SourceIter>::as_inner::h90f9b5f0794aea19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8931 } Some("core::ptr::drop_in_place::h5f918006ef5d0ce0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8293 } Some("nom::branch::alt::h8f48d6100bbfcf3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8932 } Some("core::ptr::drop_in_place>::h030fd0d7289f7c8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8299 } Some("nom::internal::Parser::map::he29082e6609aca7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8933 } Some("core::ptr::drop_in_place::h8ea6a71b912c9b01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8376 } Some("core::num::nonzero::NonZero::new::hcb464e6d99d64ab1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8961 } Some(" as core::fmt::Write>::write_str::h5208c35ce97bc633") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8453 } Some("<*const T as memchr::ext::Pointer>::as_usize::hfcb13e981f6555b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9015 } Some("<&T as core::fmt::Debug>::fmt::h0826d01f6c679d5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8583 } Some("core::ptr::non_null::NonNull::cast::h1b8c64626d0d9182") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9038 } Some("core::ptr::drop_in_place::ha81d5d6d1f64702a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8584 } Some("core::ptr::non_null::NonNull::cast::h24206bedbfd0b337") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9194 } Some("fmin") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8585 } Some("core::ptr::non_null::NonNull::cast::h483948fad03f56cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9195 } Some("fmax") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8586 } Some("core::ptr::non_null::NonNull::cast::h4927e23e0120f656") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10632 } Some("wasm_bindgen_test::__rt::browser::HTMLDocument::getElementById::__wbg_getElementById_ef2cf6fa058f410a::hf7bdd3357da34ecf externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8587 } Some("core::ptr::non_null::NonNull::cast::h5f0fe17ce15b0d50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10651 } Some("js_sys::Promise::then_map::__wbg_then_20a157d939b514f5::h451b52c58f3cbf21 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4931 } Some("core::ptr::mut_ptr::::is_null::hd974fd57330065e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8588 } Some("core::ptr::non_null::NonNull::cast::h7a49cf85490c3263") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4938 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3ef1b5c5191526b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8589 } Some("core::ptr::non_null::NonNull::cast::ha5d3689224ec3871") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4939 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3f3af806decd691b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8590 } Some("core::ptr::non_null::NonNull::cast::ha9fdb292be6f0120") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4940 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h4ce0a24eeb6d6c87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8591 } Some("core::ptr::non_null::NonNull::cast::hf429073c821277df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4958 } Some("clink_wasm::BrowserStorage::snapshot::{{closure}}::heb291e1bbaf98dbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4962 } Some("clink_wasm::Clink::rust_core_version::_::__wasm_bindgen_generated_Clink_rustCoreVersion::{{closure}}::hb19dddb615327b70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 138 } Some("<&mut T as core::ops::deref::Deref>::deref::hb6d8da673f8ab087") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 139 } Some("<&mut T as core::ops::deref::Deref>::deref::hbb8d2b6fa9f02251") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 547 } Some("serde_json::de::Deserializer::parse_decimal::h2586cb8cf763f579") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7666 } Some(">::process::hb4f0a488c1475084") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5341 } Some("serde_json::de::Deserializer::parse_decimal::h0d557d549168fa81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 804 } Some("core::ptr::drop_in_place>::heb540f44981102e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 808 } Some("core::ptr::drop_in_place::h438b6f261e8ed57c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7668 } Some(">::process::hcb15e650188e9585") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 812 } Some("core::ptr::drop_in_place>>::h14368370cc0ae900") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 813 } Some("core::ptr::drop_in_place>>::h33d7cc38655e1a1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 817 } Some("core::ptr::drop_in_place>::h5fab63ac9ff1cb2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 818 } Some("core::ptr::drop_in_place wasm_bindgen::sys::Undefined>>::h7a28888f3d083af2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7669 } Some(">::process::hdeee6da1f4b5a8fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 819 } Some("core::ptr::drop_in_place>>::h4d6555c66adb4ad6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 820 } Some("core::ptr::drop_in_place>::h7c144f3c5f49d5ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 822 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::hddb8c36751b61199") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 823 } Some("core::ptr::drop_in_place::extend_trusted>::{{closure}}>::hd247e223be465798") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7674 } Some(">::process::hfecfc2fff20c6f31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6238 } Some("::fmt::h496d06ce26270544") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9013 } Some("::next::h6bf67b7957dc178c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5319 } Some("serde_core::de::MapAccess::next_entry_seed::h2d43e3f53f5f9345") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8592 } Some("core::ptr::non_null::NonNull::cast::hf714180a5f474a02") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 140 } Some("<&mut T as core::ops::deref::Deref>::deref::hbed1f53a925c1c5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4963 } Some("clink_wasm::Clink::new::_::__wasm_bindgen_generated_Clink_new::{{closure}}::h252941aaf1bced57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 825 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::hcb7cdd393ec02307") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4967 } Some("clink_wasm::Clink::version::_::__wasm_bindgen_generated_Clink_version::{{closure}}::hf7a9d6d47cd361fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 828 } Some("core::ptr::drop_in_place>>::h35b4f8cdfaf4bf11") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 141 } Some("<&mut T as core::ops::deref::Deref>::deref::he55bf344b2b04bd7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 829 } Some("core::ptr::drop_in_place>::h15664e195b66cee7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 166 } Some("core::panic::location::Location::line::h9673d63383efc5f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 167 } Some("core::panic::location::Location::caller::h4078281c5d8f7380") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 830 } Some("core::ptr::drop_in_place>::h5cb9868190029aac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5802 } Some("::enlarge::h50c7acf9ff73dba3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 836 } Some("core::ptr::drop_in_place>>::h61ffe095ca0c218b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5888 } Some("wasm_bindgen::convert::impls::::from_abi::h1af1ad30b1dd4ddb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 837 } Some("core::ptr::drop_in_place::into_abi::{{closure}}>::hbee8404c9fc3d118") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 168 } Some("core::panic::location::Location::column::hd77ec318c9acf79d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8622 } Some(" as core::convert::From<&T>>::from::h86e9488c7d166b9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 313 } Some("::type_id::h1eef8976e6fdc501") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8624 } Some(" as core::convert::From<&T>>::from::h182815016411969b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 611 } Some("alloc::vec::Vec::len::h47d34df7cde9a402") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8639 } Some("anyhow::ptr::Ref::from_raw::h5c73e76e04af097c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 612 } Some("alloc::vec::Vec::len::hb8855ccc530f6077") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 623 } Some(" as core::default::Default>::default::h0061d250da5e790f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 624 } Some(" as core::default::Default>::default::ha2f8551ba3e65201") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9096 } Some("core::fmt::float::float_to_decimal_common_exact::hdea1d2c294e1b44a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 897 } Some("core::cell::Cell::get::h464120839b27eb5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 898 } Some("core::cell::Cell::get::hd1b67dc2eae4704e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 923 } Some(" as core::ops::deref::Deref>::deref::h14ee237e080f9c1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 924 } Some(" as core::ops::deref::Deref>::deref::h47a6f0feee1360db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 925 } Some(" as core::ops::deref::Deref>::deref::h85034a8c6202f9ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 926 } Some(" as core::ops::deref::Deref>::deref::h988aee45e2eb1f0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6985 } Some("link_cli::named_type_links::escape_lino_reference::h3afbac2535da9573") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 929 } Some(" as core::ops::deref::Deref>::deref::h8ad56b6e3152ea2a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 930 } Some(" as core::ops::deref::Deref>::deref::hee9aed0d9a392b42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 931 } Some(" as core::ops::deref::DerefMut>::deref_mut::h2cd2ea5cf11f8558") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 932 } Some(" as core::ops::deref::DerefMut>::deref_mut::h379c24ebf6cf4f85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8825 } Some("__rustc[16f1505adc47261a]::__rdl_realloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 933 } Some(" as core::ops::deref::DerefMut>::deref_mut::h774d04c3a274c1c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 934 } Some(" as core::ops::deref::DerefMut>::deref_mut::h7bb43a553dc1570d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 935 } Some(" as core::ops::deref::DerefMut>::deref_mut::h8c4a7ef6d7bfc3c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1112 } Some("wasm_bindgen::convert::impls::::into_abi::ha3fb05c3b0a0c1f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8738 } Some(" as core::ops::drop::Drop>::drop::hb9aa78e581836b8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1246 } Some("<&mut T as core::ops::deref::Deref>::deref::h61d0397da11d2d1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1678 } Some("core::panic::location::Location::line::h95e956a5861270c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 839 } Some("core::ptr::drop_in_place>>>::h640f344c74360b9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1679 } Some("core::panic::location::Location::caller::h68db96384e33ae3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 842 } Some("core::ptr::drop_in_place>::he61a73e99ff5c64f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1680 } Some("core::panic::location::Location::column::h13d6ff3ae530b18a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 844 } Some("core::ptr::drop_in_place::extend_trusted>::{{closure}}>::{{closure}}>::h20c546b761772e3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3259 } Some("wasm_bindgen::convert::impls::::into_abi::hdc43219a3c0e40e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 845 } Some("core::ptr::drop_in_place,alloc::collections::btree::node::marker::KV>::drop_key_val::Dropper>::hd1391049292b17fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3384 } Some("alloc::collections::vec_deque::VecDeque::len::h44123600ff95a0a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 846 } Some("core::ptr::drop_in_place::h205d80a7290d8804") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3402 } Some(" as core::ops::deref::Deref>::deref::h8e4ec4c2d59e3b26") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8641 } Some("anyhow::ptr::Ref::from_raw::he4a47f55bb7220d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3420 } Some(" as core::ops::deref::DerefMut>::deref_mut::h73e164033b3a614f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5926 } Some("core::ptr::mut_ptr::::is_null::h6df0b3f3491b100d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8697 } Some("alloc::boxed::Box::into_raw::h37dc40660febf3a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6247 } Some("link_cli::query_processor::QueryProcessor::is_any::hec9a1cce2922c986") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8698 } Some("alloc::boxed::Box::into_raw::haa837b6627c79350") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7243 } Some("::drop::h20dc5b42d1024e3d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8712 } Some("anyhow::error::no_backtrace::hafbdcc3682c555b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7520 } Some("core::ops::function::FnOnce::call_once::h6314b49b8c86957b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8764 } Some("core::iter::traits::iterator::Iterator::by_ref::h6951b2353777a7fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 848 } Some("core::ptr::drop_in_place>::h4bd8ce55be10623e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8892 } Some("std::thread::scoped::ScopeData::decrement_num_running_threads::hcf156ef603e44dae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 849 } Some("core::ptr::drop_in_place::hfaf9bb7589271448") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9069 } Some("::fmt::h0de301c805326a7a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 855 } Some("core::ptr::drop_in_place::h2c7113c8633d2f4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10638 } Some("js_sys::Function::call1::__wbg_call_a41d6421b30a32c5::h7ff8218e1ddf0aef externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 856 } Some("core::ptr::drop_in_place::h500c05df3e962aea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10677 } Some("wasm_bindgen::convert::closures::_::invoke::h35f4b97a84d763df externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 858 } Some("core::ptr::drop_in_place::h4e0a4ca9d2b08f64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 73 } Some("core::cell::Cell::get::hfb8530b9248586bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 861 } Some("core::ptr::drop_in_place::h4ccc440c17d33301") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 179 } Some("core::ops::function::FnOnce::call_once::h35e4ca4c01a6d3c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8318 } Some("nom::character::complete::line_ending::hf979c63ec934635a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 862 } Some("core::ptr::drop_in_place::h259b91c10e14f9e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 863 } Some("core::ptr::drop_in_place::ha8cbdc8e505a71a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 864 } Some("core::ptr::drop_in_place::he8bb12a27a2972be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 865 } Some("core::ptr::drop_in_place::h31e0c01a00f993da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8769 } Some(" as core::ops::try_trait::Try>::from_output::h68cbf6da313b61cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 180 } Some("core::ops::function::FnOnce::call_once::h5a25b98e150ae159") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 182 } Some("core::ops::function::FnOnce::call_once::h8ee256a3ff29d0a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9097 } Some("core::panicking::panic::h0149fc8f1656305a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9172 } Some("::fmt::hbcd850b988e2ebc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9244 } Some("__wbgtest_coverage_path.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10629 } Some("wasm_bindgen_test::__rt::worker::WorkerError::stack::__wbg_stack_e914725ec1a4a021::h4b4e55b569c82419 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10631 } Some("wasm_bindgen_test::__rt::browser::BrowserError::stack::__wbg_stack_5f3026c9cb27e9a3::h48cf5464605c3e1c externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10639 } Some("js_sys::Promise::new_typed::__wbg_new_typed_1137602701dc87d4::h3b75a1ecbbd4f0dd externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10641 } Some("wasm_bindgen_test::__rt::Global::performance::__wbg_performance_3550bf29533f0eae::h4edc60a994134e6b externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10649 } Some("wasm_bindgen_test::__rt::detect::Scope::constructor::__wbg_constructor_d15f058d68158e7a::h2e08b88b8b32d13f externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10652 } Some("js_sys::Error::name::__wbg_name_bf92195f4668ab6e::h7ada1019f138b08c externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10653 } Some("js_sys::Error::message::__wbg_message_d5628ca19de920d3::hca2dceab1f645f67 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10654 } Some("js_sys::Promise::resolve::__wbg_resolve_9feb5d906ca62419::h52328e3d1b9aba5a externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10657 } Some("js_sys::futures::queue::Global::hasQueueMicrotask::__wbg_queueMicrotask_74d092439f6494c1::h519335393c6607cd externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10666 } Some("Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 199, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10668 } Some("Ref(String) -> Externref externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10676 } Some("wasm_bindgen::convert::closures::_::invoke::hf37dd20d5c6460d2 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 86 } Some("::clone::hcc39cc81fd93cbc9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 245 } Some("<&T as core::fmt::Display>::fmt::hf773c4034b461bc4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 250 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h654e99c2a02d7ddd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 251 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h5121f784aa565295") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 252 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h63d7ad06cecc3c2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 320 } Some("core::ptr::drop_in_place>::hc2e0da7484a5bd5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1253 } Some("<() as wasm_bindgen_test::__rt::Termination>::into_js_result::hf7e1a7a84090be93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1657 } Some("::clone::h5421bd9181eb5b8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3473 } Some(" as core::clone::Clone>::clone::h11090655fb787a1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3703 } Some("::clone::hd43d83308f19f925") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4182 } Some(" as core::ops::try_trait::Try>::from_output::h6a30e29f4401f375") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4183 } Some(" as core::ops::try_trait::Try>::from_output::hc71f5e3a705ab93a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4184 } Some(" as core::ops::try_trait::Try>::from_output::hdddc4cff94fccba7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4185 } Some(" as core::ops::try_trait::Try>::from_output::hee2e85efa4b9544c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4476 } Some("::clone::h37dcfeab899b2266") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5764 } Some("::clone::h8b79e782c74c9305") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5984 } Some("core::mem::forget::h021b662311e5ae0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7443 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hf2d7a125859cd9d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7448 } Some(" as core::ops::drop::Drop>::drop::h0df2f5fc79c76c7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7477 } Some(" as core::ops::try_trait::Try>::from_output::hbb564b2526cd8bcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8184 } Some("::clone::hc6df09febe691b70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8268 } Some(" as core::ops::try_trait::Try>::from_output::h099594aa6c06a221") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8374 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h07b6eb9e7acb8d7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8406 } Some(" as core::ops::try_trait::Try>::from_output::hd07bf8256052f7ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8425 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hfe97bb71fabc042c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8470 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hd0d5a93262ebbbe4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8516 } Some("core::mem::drop::h114c0eeca065622c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8744 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h429fcf9b7518ab0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8860 } Some("std::io::stdio::stdout::h84cc5ca3d51f1882") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9132 } Some("core::fmt::Formatter::write_str::h906c9016730dabac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10548 } Some("clink_execute.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10667 } Some("F64 -> Externref externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10674 } Some("wasmbindgentestcontext_run.command_export externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1507 } Some("core::any::type_name::h52ba8da5866fe8e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9059 } Some("core::str::slice_error_fail::h6fff99a0df5e8008") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9064 } Some("<&T as core::fmt::Debug>::fmt::h69c822ac52be0e12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9177 } Some("::write_char::he8d9f9d9e75b1905") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10635 } Some("wasm_bindgen_test::__rt::browser::DOCUMENT::init::__wbg_static_accessor_DOCUMENT_fa300f5b84193774::h9c43058b27a24aae externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10642 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::new::__wbg_new_5aafc1bf3ffe858c::hbbbbe32e359096be externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10658 } Some("console_error_panic_hook::Error::new::__wbg_new_227d7c05414eb861::h96cf0bd457cfbb2d externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 120 } Some("main") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 121 } Some("<() as std::process::Termination>::report::hd7d18139c73c0843") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 206 } Some("__rustc[16f1505adc47261a]::__rust_realloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 213 } Some("::fmt::hc36cb7baeefa6fe9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 220 } Some("<&T as core::fmt::Display>::fmt::h3ef42eb66c812564") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 309 } Some("<&T as core::fmt::Debug>::fmt::habefc4ee4bdfc45f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 328 } Some("<&T as core::fmt::Debug>::fmt::hc8c657edbf359178") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 399 } Some("test::__rust_begin_short_backtrace::h84a838cd21d301c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 447 } Some("<&T as core::fmt::Display>::fmt::hf1fb87bcf2844489") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 452 } Some("::fmt::hc36cb7baeefa6fe9[1]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1340 } Some("::visit_unit::hd4b70b94858f9f56") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4992 } Some("::visit_unit::hb01f8c4e7632d2a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5686 } Some(" as core::ops::try_trait::Try>::from_output::h1b34505f632a2135") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5718 } Some("::visit_unit::ha8febc894620838f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6980 } Some(" as core::ops::try_trait::Try>::from_output::hbabf7cda8f62712e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8122 } Some("nom::bytes::take_while1::h80a0f865fc8aab2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8743 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h034bb07a4c5a65c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8837 } Some("<&T as core::fmt::Display>::fmt::h919466cac3e4a537") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8911 } Some("<&T as core::fmt::Debug>::fmt::h9901c6444d0d9de7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8946 } Some("::fmt::h7326ece241f5b32c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8950 } Some("::fmt::hc36cb7baeefa6fe9[2]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8964 } Some("::fmt::hc8d087d6955a60e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8968 } Some("::get::h1386487f02069651") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8976 } Some("<&T as core::fmt::Debug>::fmt::h7ef691b01892272d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8977 } Some("<&mut T as core::fmt::Debug>::fmt::hdd0bb453914914c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9020 } Some("<&T as core::fmt::Display>::fmt::h9cdd48a673a61204") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9072 } Some("<&T as core::fmt::Display>::fmt::h461148083df94021") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9173 } Some("core::panicking::panic_null_pointer_dereference::h9965f8d683852fee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10566 } Some("__wbindgen_realloc.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10628 } Some("__wbindgen_object_clone_ref") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 205 } Some("__rustc[16f1505adc47261a]::__rust_dealloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 228 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h27919639cdd84a0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 229 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::hae35e88cb8ea7dfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 331 } Some("core::fmt::Write::write_fmt::h9fc8a8135eae74ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3830 } Some("wasm_bindgen::convert::impls::::split::h5cdab39217b92395") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3840 } Some("wasm_bindgen::convert::impls::::into_abi::h09220951b17c41d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5051 } Some("clink_wasm::Clink::version::h2c94c525fd4bb447") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7600 } Some("nom::internal::Parser::map::h17e88c7e5c054a2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7906 } Some("nom::sequence::preceded::hb0a6ba0c9cfa6a45") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7908 } Some("nom::sequence::preceded::he826946b0e3f27aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8116 } Some("nom::bytes::take_while::h316e554cfabd3f86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8117 } Some("nom::bytes::take_while::h50fcc4161c513682") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8118 } Some("nom::bytes::take_while::he3e4b2d082cd873a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8292 } Some("nom::branch::alt::h7f0f884c7a4ff45b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8295 } Some("nom::branch::alt::he9d7d8a9588aadaa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8298 } Some("nom::internal::Parser::map::h6b5eabb40efa849f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8772 } Some(" as core::ops::try_trait::Try>::branch::he92d2307c960cd6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8773 } Some(" as core::ops::try_trait::Try>::from_output::h2f396b3f61f887c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8818 } Some("__rustc[16f1505adc47261a]::rust_panic") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8855 } Some("std::thread::id::ThreadId::new::exhausted::he2ee573d11e97408") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8869 } Some("std::sync::lazy_lock::panic_poisoned::hc9e69d6c60b7f192") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8885 } Some("std::time::SystemTime::now::h117fb0e1b31e9273") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8886 } Some("std::time::Instant::now::hf50993aab856f626") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8887 } Some("std::time::Instant::elapsed::hc5dc37a8ee7558a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8920 } Some("core::fmt::Write::write_fmt::h013b0a37a1e05c3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8921 } Some("core::fmt::Write::write_fmt::h19c1a3fd051d9427") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8922 } Some("core::fmt::Write::write_fmt::h628b111ce4addafb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8923 } Some("core::fmt::Write::write_fmt::h92d688dc804be37f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8924 } Some("core::fmt::Write::write_fmt::hf440b4af64a74d7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9025 } Some("core::fmt::Write::write_fmt::h0c5fc174461b1870") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9037 } Some("core::fmt::Write::write_fmt::hcb33ccda108f2947") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9051 } Some("alloc::raw_vec::capacity_overflow::h0af0840ea1b2ff66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9062 } Some("<&T as core::fmt::Debug>::fmt::h3835acac6879dd8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9095 } Some("core::fmt::Write::write_fmt::had1338797e9284de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9134 } Some("core::num::int_log10::panic_for_nonpositive_argument::h232932e2325f60d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9138 } Some("core::panicking::panic_const::panic_const_div_by_zero::h8e4a0d4c04b4b1f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9142 } Some("core::option::unwrap_failed::h351295eb7223eb75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9145 } Some("core::str::traits::str_index_overflow_fail::hb7c8eaa17252dedd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9154 } Some("core::slice::sort::shared::smallsort::panic_on_ord_violation::he7e0843cdba42655") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9160 } Some("core::panicking::panic_const::panic_const_rem_by_zero::h4d91c9c4a6b3b2e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9161 } Some("core::panicking::panic_const::panic_const_add_overflow::hacec966df230a78f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9162 } Some("core::panicking::panic_const::panic_const_mul_overflow::hd708e9b99cb650ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9163 } Some("core::panicking::panic_const::panic_const_neg_overflow::h9f3b8ec0ae5c0fec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9164 } Some("core::panicking::panic_const::panic_const_shl_overflow::h7470eb4809974192") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9165 } Some("core::panicking::panic_const::panic_const_shr_overflow::h8d21597beafe983a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9166 } Some("core::panicking::panic_const::panic_const_sub_overflow::hb693aabd08f741ac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9167 } Some("core::panicking::panic_const::panic_const_async_fn_resumed::hf31a588042758372") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9241 } Some("wasmbindgentestcontext_run.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10564 } Some("__wbindgen_free.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10630 } Some("wasm_bindgen_test::__rt::worker::write_output_line::__wbg___wbg_test_output_writeln_ce1c14f3235de893::h38951fb24c3f07f3 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10634 } Some("wasm_bindgen_test::__rt::browser::Element::set_text_content::__wbg_set_text_content_63c250954481807a::hee82c29f24f5e846 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10637 } Some("js_sys::Array::for_each::__wbg_forEach_544291b320823e55::h2894fa8b1be27549 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10655 } Some("js_sys::futures::task::singlethread::ConsoleTask::run::__wbg_run_c9143d3225a408b9::h0c8989f311771ff5 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 115 } Some("web::main::h1f36c2b2a0b90e6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 204 } Some("__rustc[16f1505adc47261a]::__rust_alloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 207 } Some("__rustc[16f1505adc47261a]::__rust_alloc_zeroed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 231 } Some("<&T as core::fmt::Display>::fmt::h67dfb4d0bf2577a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 233 } Some("<&T as core::fmt::Display>::fmt::h8476cfea7f0c8e75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 329 } Some("<&T as core::fmt::Debug>::fmt::hdb2405ebf1184d9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 330 } Some("<&T as core::fmt::Debug>::fmt::hdf219fc9e52246c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 397 } Some("test::__rust_begin_short_backtrace::h1237bf4e233d9ca4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 432 } Some("::fmt::ha795e604dc1e6ee6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 438 } Some("::fmt::hfba551e94cd66ac0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1017 } Some("wasm_bindgen_test::coverage::__wbgtest_cov_dump::h6591cb9ff03b5fdb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1018 } Some("wasm_bindgen_test::coverage::__wbgtest_module_signature::h351aceef2def4766") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1959 } Some("js_sys::global::hc92670fc6870582c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4469 } Some("::is_freeze::h7a5c0bcf6165411b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4482 } Some("::default::hdd47a7739efef2ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4557 } Some("core::iter::traits::iterator::Iterator::collect::h1f68211e424baa60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4558 } Some("core::iter::traits::iterator::Iterator::collect::he13e34e5b4bd97c1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4618 } Some("core::iter::traits::iterator::Iterator::collect::h138d3b40b02fcb5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4619 } Some("core::iter::traits::iterator::Iterator::collect::h30409699ed6313e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4620 } Some("core::iter::traits::iterator::Iterator::collect::h32daf2c9653549f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4622 } Some("core::iter::traits::iterator::Iterator::collect::h960237f06c20247c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4623 } Some("core::iter::traits::iterator::Iterator::collect::h9d9ca74b0c04f807") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4624 } Some("core::iter::traits::iterator::Iterator::collect::hc1fabfb274023e8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4651 } Some("core::iter::traits::iterator::Iterator::collect::hb9db976d517651cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4760 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h6f82387c335317e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4763 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h8b51e7d347e7dc60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4765 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::ha4a2e422636582ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4767 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h1aea5b56e53fe726") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4789 } Some("::is_freeze::hacdc192a393de08c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4983 } Some("::is_freeze::h010d22828a255612") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5029 } Some("console_error_panic_hook::set_once::hbc74e7e290f8b7f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5047 } Some("clink_wasm::Clink::test::hc2c6a63abb0cba09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5473 } Some("::use_early_reject::h9ee6bc2342ede9c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5477 } Some("::use_early_reject::ha34ec34bf1f725fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5858 } Some("wasm_bindgen::__rt::throw_null::hefd1c0dcf3c44a94") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5859 } Some("wasm_bindgen::__rt::borrow_fail::h08dd7e153e6c34c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5860 } Some("wasm_bindgen::__rt::malloc_failure::h4dc5cc7caa9d6eb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5901 } Some("wasm_bindgen::convert::traits::WasmRet::join::he5145959346d19f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6215 } Some("::use_early_reject::ha2372f6baf3cb068") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6219 } Some("::use_early_reject::h4be08761354220da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6264 } Some("core::iter::traits::iterator::Iterator::collect::h3f2f60549e126861") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6265 } Some("core::iter::traits::iterator::Iterator::collect::h652fb8d498e7ab1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6266 } Some("core::iter::traits::iterator::Iterator::collect::h6f152be3a8c1c4d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6290 } Some("core::iter::traits::iterator::Iterator::collect::h84aee148a4a325d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6542 } Some("::is_freeze::h8ec93f34df9358af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6643 } Some(" as core::default::Default>::default::h7d6d58e490dbb382") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6742 } Some("core::iter::traits::iterator::Iterator::collect::h0710579a5a431380") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6819 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::he3cca84ef1d0fab3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6823 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h4ce970ed2f65d909") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6825 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h9665ba734e15d31a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7086 } Some("::default::hae3c3e4785b90aee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7358 } Some("core::iter::traits::iterator::Iterator::collect::h14768b749bcd60de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7435 } Some(" as alloc::vec::spec_from_iter::SpecFromIter>::from_iter::h308e423e438255e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7447 } Some(" as core::default::Default>::default::h020421b800808f0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7468 } Some("::use_early_reject::hb9893fef677eaf88") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7472 } Some("::use_early_reject::h452fdc7af92d90d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7643 } Some(">::into::h7ac4fefd9de0aff3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7867 } Some("::is_streaming::hbaaf9f33335b83da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8232 } Some("core::iter::traits::iterator::Iterator::collect::h8cbe3b42cba5454f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8337 } Some("core::iter::traits::iterator::Iterator::count::h62b693847b4bd7c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8397 } Some("::use_early_reject::h6b60132fbaa91c1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8401 } Some("::use_early_reject::he8d5931303507c37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8831 } Some("__rustc[16f1505adc47261a]::__rust_alloc_error_handler") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8836 } Some("<*mut T as core::fmt::Debug>::fmt::he6d7f5af0e79b4b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 183 } Some("core::ops::function::FnOnce::call_once::hac689498ff0a9c0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 866 } Some("core::ptr::drop_in_place::h201fffb76302cd63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 440 } Some("::fmt::h2f45cc0f22f3f1c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 867 } Some("core::ptr::drop_in_place::h6fa72df16cf399a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5843 } Some("zmij::to_decimal_schubfach::h0e9da7479ba5c3bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 907 } Some("core::cell::RefCell::into_inner::h4a59263ac801a340") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3474 } Some(" as core::ops::deref::DerefMut>::deref_mut::h690f8b63270de47e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3960 } Some("core::panic::location::Location::line::h127170a6e7cc5340") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3961 } Some("core::panic::location::Location::caller::hcd9dd4109db9b5c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1327 } Some("alloc::rc::Rc::as_ptr::h3053126e9b4990b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3962 } Some("core::panic::location::Location::column::h5310e72fe08113a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4308 } Some(" as core::ops::deref::Deref>::deref::h7cc0a2fd632b1837") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6859 } Some("hashbrown::raw::RawTableInner::rehash_in_place::h681dcfef64ab2048") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4680 } Some("alloc::vec::Vec::new::h5f0b956591a69179") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8867 } Some("std::sys::fs::remove_dir::hd4e1f99082914392") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8908 } Some("<&T as core::fmt::Debug>::fmt::h5415322229815c42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8969 } Some("::as_str::he125ac6f7c5f4796") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9016 } Some("<&T as core::fmt::Debug>::fmt::h0a40861eaf709258") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9018 } Some("<&T as core::fmt::Display>::fmt::h257e3a92f5b698f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9021 } Some("<() as core::fmt::Debug>::fmt::hc1fa3557c1c58a4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 394 } Some("test::convert_benchmarks_to_tests::h3073834076d43eb8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9029 } Some("::fmt::ha795e604dc1e6ee6[1]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9033 } Some("::fmt::h8168286e971afe78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9036 } Some("alloc::alloc::handle_alloc_error::hec8d3aa2a30efaa7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4681 } Some("alloc::vec::Vec::new::he6f8fffd9bb25258") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4727 } Some(" as core::default::Default>::default::he754718e754f6db5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4924 } Some(" as core::ops::deref::DerefMut>::deref_mut::hb1fcd4e9d299fa08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4984 } Some("::get_or_create::{{closure}}::hc306013c27ec9634") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1499 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::h4f10a1bff3346bd3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4985 } Some("::search::{{closure}}::h50d672e7817ad36b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5271 } Some("wasm_bindgen::convert::impls::::into_abi::he4af462537f37ef2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 78 } Some("::next::hdebdafe7b216b0f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9039 } Some("::fmt::ha795e604dc1e6ee6[2]") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9054 } Some("::fmt::ha5e298d232615ddf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9060 } Some("<&T as core::fmt::Debug>::fmt::h35bf7829eeae90d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9067 } Some("::fmt::h790d2f8117538842") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9148 } Some("::fmt::h035f2721315d9af6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7865 } Some("::to_vec_in::ConvertVec>::to_vec::hf993601986be9d0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 583 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_map::hdc2b3ebe05b556b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4430 } Some("core::slice::sort::stable::drift::create_run::h06fd783e616b3464") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5355 } Some("alloc::vec::Vec::new::h268092110178a156") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5383 } Some("alloc::vec::Vec::new::ha0fe7f10090001f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3248 } Some(">::into::hc9da796121819915") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3700 } Some(">::into::hc082bc68c6381566") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4431 } Some("core::slice::sort::stable::drift::create_run::h19c00559ec8a05db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3701 } Some(" as core::convert::From>::from::ha1519deb5e1d2c75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9150 } Some("::fmt::h9295ee9cb44d499e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3731 } Some("::return_abi::h2c573e0a171b4952") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9200 } Some("main.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4919 } Some("alloc::rc::Rc::as_ptr::h83d6caf637d187a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9216 } Some("__wbg_wasmbindgentestcontext_free.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5286 } Some(">::into::h0781a15005557479") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9238 } Some("wasmbindgentestcontext_filtered_count.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9239 } Some("wasmbindgentestcontext_include_ignored.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5716 } Some("core::str::::len::hfdadb44e83d8a64b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9243 } Some("__wbgbench_import.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5384 } Some("alloc::vec::Vec::as_mut_ptr::h23d99132e0c75699") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10540 } Some("__wbg_clink_free.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5388 } Some("alloc::vec::Vec::len::h7c854fcdb49ae987") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10550 } Some("clink_reset.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5389 } Some("alloc::vec::Vec::len::hea138cc6751a0a2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10552 } Some("clink_snapshot.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10558 } Some("__externref_drop_slice.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5402 } Some("alloc::string::String::len::ha01f4ca87ca874f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10562 } Some("__wbindgen_destroy_closure.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5468 } Some("core::f64::::to_bits::h18344aceffd3a700") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4432 } Some("core::slice::sort::stable::drift::create_run::h5f4dc1eeb78b4ff7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1685 } Some("::next::h435fed3c186b1497") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4433 } Some("core::slice::sort::stable::drift::create_run::h6439a4617aa055dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6242 } Some("::next::h20ebff17cb1c725d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4434 } Some("core::slice::sort::stable::drift::create_run::h8d0e33c279d26c24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4435 } Some("core::slice::sort::stable::drift::create_run::h90ecd8b6dc6f1198") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7476 } Some("::next::h947248879c1ce08a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4436 } Some("core::slice::sort::stable::drift::create_run::hafb2c733e56531f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10565 } Some("__wbindgen_malloc.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10633 } Some("wasm_bindgen_test::__rt::browser::Element::text_content::__wbg_text_content_39133fe2ceeea2bf::h3a0085e0834f90f7 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10643 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::stack::__wbg_stack_5b90bbbb003d7e5c::h2609292fd1e0a2ac externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10644 } Some("wasm_bindgen_test::__rt::stringify::__wbg_String_9f1bc0c1cfdb8d71::h317b499809f2021a externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10645 } Some("wasm_bindgen_test::__rt::node::NodeError::stack::__wbg_stack_18dcc55b1429bfed::h53b3b87c3ae0eb69 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8104 } Some("::next::hdf3db1f3697616a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10646 } Some("wasm_bindgen_test::__rt::node::NodeError::to_string::__wbg_toString_90f2e8a87f5b736e::he3e135a485bfd16b externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6737 } Some("core::slice::sort::stable::drift::create_run::h5901571a2746a751") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 295 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h84ea824f855421d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10647 } Some("wasm_bindgen_test::__rt::detect::Constructor::name::__wbg_name_e75d30c26e8dc6aa::h81ee7578291804c6 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10659 } Some("console_error_panic_hook::Error::stack::__wbg_stack_3b0d974bbf31e44f::hf5f11f7bcc350eaf externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10661 } Some("wasm_bindgen::__wbindgen_string_get::__wbg___wbindgen_string_get_965592073e5d848c::h9bf2bccc9ff46f6b externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10663 } Some("wasm_bindgen::__wbindgen_debug_string::__wbg___wbindgen_debug_string_07cb72cfcc952e2b::h27aeceb65d823ca6 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1692 } Some("wasm_bindgen_test_shared::coverage_path::hf73ebcb65c737ff7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 297 } Some(" as test::formatters::OutputFormatter>::write_run_finish::he586be1be04d68ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5800 } Some("core::f64::::to_bits::h0e46f0d6b15908cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5931 } Some("core::alloc::layout::Layout::size::hd07ec95be3a68db9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 242 } Some(" as test::formatters::OutputFormatter>::write_timeout::hb8e274e0a5d55793") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5973 } Some("wasm_bindgen::convert::impls::::into_abi::hf176ac91b6f65ac3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 279 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h1c3a898bd3d5cbe7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6020 } Some(" as core::ops::deref::DerefMut>::deref_mut::h9279dd1347015134") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 301 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h3abb2fe99b6e3f32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7127 } Some("core::slice::sort::unstable::heapsort::heapsort::h666a5ad247e18338") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6099 } Some("alloc::vec::Vec::len::h07f8a9fc2c9c55ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6100 } Some("alloc::vec::Vec::len::ha559fbb279f8d959") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7203 } Some("lino_arguments::load_lenv_file::h8f12eb78c68a0808") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6754 } Some("alloc::vec::Vec::new::h25ac2bfb2b5939c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5833 } Some(">::into::h8130d9f262128123") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5999 } Some("core::cell::Cell::get::hd20c0bf5b1185c9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7972 } Some("core::str::::len::h13deb84abf04d3c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8282 } Some("nom::bytes::complete::take_while::h1b6e5a8292cb4924") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9006 } Some("rustc_demangle::v0::Printer::print_const_str_literal::hede1b3eac6c81742") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8283 } Some("nom::bytes::complete::take_while::ha5b4ca69a828daad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8284 } Some("nom::bytes::complete::take_while::hcd4cc5929f57aad6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6755 } Some("alloc::vec::Vec::new::h943c5a59bf8535c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6756 } Some("alloc::vec::Vec::new::hbbc7eee3bac91d78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6757 } Some("alloc::vec::Vec::new::he7e3fc39db04e3ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 210 } Some("test::formatters::json::JsonFormatter::write_event::hbbadc8cfbf89c171") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8378 } Some("core::str::::len::h18fb16825cbd4ab7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6773 } Some("alloc::vec::Vec::len::h3341e24736fe5b62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6774 } Some("alloc::vec::Vec::len::hc219d7230c67b59c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 398 } Some("test::__rust_begin_short_backtrace::h4f2735b2fa27aff4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6798 } Some(" as core::default::Default>::default::h11d1bd171ef7428c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1675 } Some("core::hint::unreachable_unchecked::h0da1e44c08328326") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6799 } Some(" as core::default::Default>::default::h1795042a4e0f6134") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4362 } Some("core::hint::unreachable_unchecked::h79b4cc3fa0bc5d25") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6800 } Some(" as core::default::Default>::default::hcf22f55a37efaca5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5045 } Some("clink_wasm::Clink::rust_core_version::hbc8e4982de3057a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6991 } Some("<&T as thiserror::display::AsDisplay>::as_display::h85b5b85e3ade1e01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 217 } Some("test::formatters::json::JsonFormatter::write_event::h6f423b9672913848") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7123 } Some("<&T as thiserror::display::AsDisplay>::as_display::h07af6a534ad60f00") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7210 } Some(">::from::h1a1cb1a4c00fb6c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5521 } Some("core::num::::from_le_bytes::h9713f43d807b2e86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7319 } Some("dotenvy::errors::Error::Io::hc2ca9284a9d8f23c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7427 } Some(" as core::default::Default>::default::hbf370c32a7224104") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 425 } Some("test::run_tests::get_timed_out_tests::h3514649b2e77ba43") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7436 } Some("alloc::vec::Vec::new::he19b5f5355f2f9b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7439 } Some("core::cell::Cell::get::ha80bd03bb84b5e97") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7692 } Some("alloc::vec::Vec::new::h79131382b4239b16") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7693 } Some("alloc::vec::Vec::new::hee9420296db3de36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7705 } Some("alloc::vec::Vec::len::heae8b4005daad23f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 587 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_enum::h67745a68cac95925") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7706 } Some("alloc::vec::Vec::len::hf0d414df0b67e7ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8094 } Some(" as core::ops::deref::Deref>::deref::h69553cc25acfc2ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8095 } Some(" as core::ops::deref::Deref>::deref::h88ca0012eb3e87bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5754 } Some("core::hint::unreachable_unchecked::h61f7d95998c4a3fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5991 } Some("core::hint::unreachable_unchecked::hd175ada7640e94d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8097 } Some(" as core::ops::deref::Deref>::deref::h2b63016d836d320c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8634 } Some("anyhow::ptr::Ref::deref::hde64e0b47ce54869") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7036 } Some(">::into::h7bda453aa1ce2f6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7209 } Some("lino_arguments::auto_init::f::f::hcb42418debf74195") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8750 } Some("core::str::::len::h7b613571b345634c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8829 } Some("std::sys::backtrace::__rust_end_short_backtrace::h46ab1174c51ef229") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8877 } Some("std::alloc::rust_oom::{{closure}}::hd75745f6cab4b1f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8846 } Some("std::io::impls::>::flush::h56e4d365292bad24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9034 } Some("hashbrown::raw::Fallibility::capacity_overflow::h99a4c32684b92cb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 147 } Some(" as core::future::future::Future>::poll::{{closure}}::h1a335131074d9427") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 148 } Some(" as core::future::future::Future>::poll::{{closure}}::h2f9a860370a7f150") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9001 } Some("rustc_demangle::v0::Printer::print_type::{{closure}}::h98dbc4414ca0c35c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 150 } Some(" as core::future::future::Future>::poll::{{closure}}::ha6e694fc930939ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 151 } Some(" as core::future::future::Future>::poll::{{closure}}::haa2ae20117e69f24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8876 } Some("std::sys::backtrace::__rust_end_short_backtrace::h81a6ec13af23b259") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 351 } Some("core::ptr::drop_in_place::h23cbd4e4ed2623d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8888 } Some("std::alloc::default_alloc_error_hook::h4ae318a4060b4b2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8898 } Some("std::panicking::panic_count::is_zero_slow_path::h9b5765c0b9fb1921") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 443 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::he5a839918c3a81ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8936 } Some("core::panic::PanicPayload::as_str::h17c1d5120cb39a3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 448 } Some("core::ptr::drop_in_place,getopts::Options::usage_items::{{closure}}>>::hcbeccf0efb6c2286") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 528 } Some("serde_core::de::SeqAccess::size_hint::he5bae54fe5d72523") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9098 } Some("core::num::flt2dec::strategy::grisu::format_exact_opt::he1be7fe0b3d2452a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8949 } Some("::fmt::haae72e6c262f0a53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8098 } Some(" as core::ops::deref::Deref>::deref::hf70da528c353e856") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9191 } Some("fmod") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8100 } Some(" as core::ops::deref::DerefMut>::deref_mut::h331e31ac666ddf0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9196 } Some("__wbgt__web::creates_a_clink_instance.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8101 } Some(" as core::ops::deref::DerefMut>::deref_mut::h4755677a247ad3fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9197 } Some("__wbgt__web::executes_lino_queries_with_the_rust_core.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8106 } Some(" as nom::internal::Parser>::process::{{closure}}::h072cc7f2c5170a90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9198 } Some("__wbgt__web::exposes_versions.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9199 } Some("__wbgt__web::reports_invalid_options.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8108 } Some(" as nom::internal::Parser>::process::{{closure}}::hefbe3155b937718b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9201 } Some("__wbgtest_cov_dump.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8137 } Some("<&str as nom::traits::Input>::split_at_position_mode1::{{closure}}::h4d12a61e2cc00e5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8140 } Some("<&str as nom::traits::Input>::split_at_position_mode1::{{closure}}::hd213a7222288a7e5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1193 } Some("wasm_bindgen_test::__rt::__wbgtest_console_log::{{closure}}::h47679a8b93bc4ac0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1195 } Some("wasm_bindgen_test::__rt::__wbgtest_console_info::{{closure}}::h4582751e274aaad9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1197 } Some("wasm_bindgen_test::__rt::__wbgtest_console_warn::{{closure}}::hacb7867b122c8b2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4865 } Some("hashbrown::raw::RawTable::clone_from_impl::h30c6c34b83f36e42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1201 } Some("wasm_bindgen_test::__rt::__wbgtest_console_error::{{closure}}::hb51bb0fc62298279") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8143 } Some("<&char as nom::traits::AsChar>::as_char::hbdbba22f697c80b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8352 } Some("alloc::string::String::len::h760efe3d07fd0346") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 325 } Some("std::sync::mpmc::zero::Channel::disconnect::h4bc807bd777cfd44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9104 } Some("core::fmt::float::float_to_exponential_common_shortest::hf2c7dab2e1c32e09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 552 } Some("serde_json::de::Deserializer::parse_integer::h9d4bf98b6f561d90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1462 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::hef3a450e7ff4f5c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1662 } Some("js_sys::futures::task::singlethread::Task::spawn::h66ca1c68667e3073") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 584 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq::h7f4758020fba3795") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9202 } Some("__wbgtest_module_signature.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9217 } Some("__wbgtest_console_debug.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9218 } Some("__wbgtest_console_error.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9219 } Some("__wbgtest_console_info.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9220 } Some("__wbgtest_console_log.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9221 } Some("__wbgtest_console_warn.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9240 } Some("wasmbindgentestcontext_new.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5347 } Some("serde_json::de::Deserializer::parse_integer::ha1b6b4ad1fef1a20") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9242 } Some("__wbgbench_dump.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10551 } Some("clink_rustCoreVersion.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 868 } Some("core::ptr::drop_in_place::h2abc5f04dd8730da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10554 } Some("clink_version.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1324 } Some("alloc::rc::Rc::into_raw::h17ba210c674460b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10559 } Some("__externref_table_dealloc.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1517 } Some("core::mem::forget::heba0da675074674f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10563 } Some("__wbindgen_exn_store.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10640 } Some("wasm_bindgen_test::__rt::Performance::now::__wbg_now_e627993f858511c9::hc8b3ebcb67f151af externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3712 } Some("alloc::rc::Rc::into_raw::h052f603cefa64c70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10648 } Some("wasm_bindgen_test::__rt::detect::This::self_::__wbg_self_fbd35b4e1b417b7c::hd531659134b5ca83 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3756 } Some(">::start_bound::hc3dbb6547ed47ea3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10650 } Some("wasm_bindgen_test::__rt::detect::Scope::deno::__wbg_Deno_5568da40b5320910::h90a2f6091a1527f3 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10656 } Some("js_sys::futures::queue::queueMicrotask::__wbg_queueMicrotask_40ac6ffc2848ba77::hd77ee46c8afcb4de externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5240 } Some("core::ptr::drop_in_place>::hba3f45f26cc8c11d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 869 } Some("core::ptr::drop_in_place::h5d804489bed1e2c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5242 } Some("core::ptr::drop_in_place>::hd6e8df8b6bbb587f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 870 } Some("core::ptr::drop_in_place::hfcabbfd500eadb85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5244 } Some("core::ptr::drop_in_place>::hfb413802bb4bad7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 872 } Some("core::ptr::drop_in_place::had125d8204a85196") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5247 } Some("core::ptr::drop_in_place>::h313ee0d6ccab7653") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 873 } Some("core::ptr::drop_in_place>::h50ed33dd4009db47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5249 } Some("core::ptr::drop_in_place,core::option::Option),(),link_cli::query_processor::QueryProcessor::process_query::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<(core::option::Option,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h26feddd648575ce7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10660 } Some("wasm_bindgen::closure::JsClosure::_wbg_cb_unref::__wbg__wbg_cb_unref_158e43e869788cdc::ha429d3dcc25e54b2 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10662 } Some("wasm_bindgen::__wbindgen_is_function::__wbg___wbindgen_is_function_2f0fd7ceb86e64c5::h814521277ec757f8 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5250 } Some("core::ptr::drop_in_place,core::option::Option),(),link_cli::query_processor::QueryProcessor::process_query::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<(core::option::Option,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h3f58d3980a62adb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10664 } Some("wasm_bindgen::__wbindgen_is_undefined::__wbg___wbindgen_is_undefined_244a92c34d3b6ec0::h19f51646f33a3593 externref shim") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 52 } Some("__wasm_call_ctors") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5251 } Some("core::ptr::drop_in_place,core::option::Option),(),link_cli::query_processor::QueryProcessor::process_query::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<(core::option::Option,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h473704a39bd0d76a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 360 } Some("core::ptr::drop_in_place>::h2564ae99f7a33ccc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1056 } Some(" as core::default::Default>::default::h18c2006d7176e65e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5252 } Some("core::ptr::drop_in_place>::h74b697f3e655c6f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1057 } Some(" as core::default::Default>::default::hff63a7a3db97f810") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 878 } Some("core::ptr::drop_in_place>::h24f6166513575611") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5254 } Some("core::ptr::drop_in_place>::hf25e336c1b9d85cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 881 } Some("core::ptr::drop_in_place>::ha4e455ab345ebadd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5257 } Some("core::ptr::drop_in_place>::h2e29142a19c2ed13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1104 } Some("wasm_bindgen::JsValue::null::hae9d0fad2eefcc4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5289 } Some("console_error_panic_hook::hook::h5454424519ccf3d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3256 } Some("wasm_bindgen::JsValue::undefined::hc194fbbdacf02abd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9135 } Some("core::num::bignum::Big32x40::mul_digits::h4b3970c225d9a61a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5297 } Some("core::ptr::drop_in_place::hc8281f45a1dab16e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 882 } Some("core::ptr::drop_in_place::ha400fa9735c992b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5303 } Some("core::ptr::drop_in_place::into_abi::{{closure}}>::h432e8c27e01debba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 883 } Some("core::ptr::drop_in_place>::hec9a8c05d7348336") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8438 } Some("core::ptr::const_ptr::::read::h1aea64090614eef5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 884 } Some("core::ptr::drop_in_place>::hfe7be4f7528b6605") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8439 } Some("core::ptr::const_ptr::::read::h4bf53bc76728fd41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 885 } Some("core::ptr::drop_in_place::h44240b1a2086e34d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5627 } Some("::discard::hc935b93ffb4a9b5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 888 } Some("core::ptr::drop_in_place>::h9cc1b2984d5facae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5638 } Some("core::ptr::drop_in_place>::h75ccedcfb7156ab8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1180 } Some("wasm_bindgen_test::__rt::__wbgtest_console_log::h1d65743481af30c5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5658 } Some("core::ptr::drop_in_place::h512241d77912e6dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1182 } Some("wasm_bindgen_test::__rt::__wbgtest_console_info::h9ecb5afe7b9d944d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5660 } Some("core::ptr::drop_in_place>::h7ca29a72419f87d7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1184 } Some("wasm_bindgen_test::__rt::__wbgtest_console_warn::h17e249de119b04c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5661 } Some("core::ptr::drop_in_place>::hcb372d3d1494b233") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8620 } Some("anyhow::ptr::Own::by_ref::h41951abcb8eafe54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5665 } Some("core::ptr::drop_in_place::hb4a766ff2a03d07e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 211 } Some(" as core::fmt::Display>::fmt::h28e27c6715ad2af9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6442 } Some("core::ptr::drop_in_place>::h9a860ffd33a6a449") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6443 } Some("core::ptr::drop_in_place>::hfedcfdfa1c6d7f97") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3263 } Some("wasm_bindgen::convert::impls::::none::haea8ebf69a5399ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6444 } Some("core::ptr::drop_in_place>::h6bca55eb3fd7d74d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4104 } Some(" as core::default::Default>::default::h0ced5b1cb697774b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4105 } Some(" as core::default::Default>::default::h50415af66088de9d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5666 } Some("core::ptr::drop_in_place,alloc::collections::btree::node::marker::KV>::drop_key_val::Dropper>::h5ba72961d318997a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5668 } Some("core::ptr::drop_in_place::hbcd4fd4c61254fcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5669 } Some("core::ptr::drop_in_place::hd2fb9090ef3b8af4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1757 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h9f526353e4a14b36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5670 } Some("core::ptr::drop_in_place::h1a69d639fbfb946a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6446 } Some("core::ptr::drop_in_place>::hde46c87eef75c617") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4106 } Some(" as core::default::Default>::default::hb78e0118547d1ee2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5673 } Some("core::ptr::drop_in_place>::hb9ffadbbd060a50c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4107 } Some(" as core::default::Default>::default::hc901234090bdf48d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5042 } Some("clink_wasm::set_panic_hook::h9947b384ede53d41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5675 } Some("core::ptr::drop_in_place>::hbc83bd478d7a9011") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8817 } Some("__rustc[16f1505adc47261a]::__rust_start_panic") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8895 } Some("std::process::exit::h2ef840118ea4d501") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8925 } Some("core::ops::function::Fn::call::h0c31b1d6be91b17d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8926 } Some("core::ops::function::FnMut::call_mut::ha7c9b915d5423954") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8927 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h588436382d4c7816") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10549 } Some("clink_new.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10553 } Some("clink_test.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 10560 } Some("__externref_table_alloc.command_export") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 208 } Some("__rustc[16f1505adc47261a]::__rust_no_alloc_shim_is_unstable_v2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8289 } Some("nom::bytes::complete::take_while1::{{closure}}::h597d8dfa921e45ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1186 } Some("wasm_bindgen_test::__rt::__wbgtest_console_debug::h71bb2952c6b1ca1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5677 } Some("core::ptr::drop_in_place::h3c52de44e405ac25") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1188 } Some("wasm_bindgen_test::__rt::__wbgtest_console_error::h35e7af08ba07d003") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5679 } Some("core::ptr::drop_in_place>::h41b35c078bdd7c5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1236 } Some("wasm_bindgen_test::__rt::Context::new::{{closure}}::hf60e5369d5aac7ca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5731 } Some("alloc::collections::btree::map::BTreeMap::new::h04c18c57af8d519c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1310 } Some("core::str::::is_empty::h2706767665e0c58c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5857 } Some("core::ptr::drop_in_place::h08d4b181ad40b7c8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1311 } Some("core::slice::::is_empty::h42cdfc98dff1f7c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5884 } Some("core::ptr::drop_in_place>::hdd8cd5824a2a2d82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1314 } Some("alloc::rc::RcInnerPtr::strong::h563192d25fedc931") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5902 } Some("wasm_bindgen::externref::internal_error::h4007dc2f4ff257af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1316 } Some("alloc::rc::RcInnerPtr::strong::hca4f8fb66b053a67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6447 } Some("core::ptr::drop_in_place>::hde32ccb4a9a1db07") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 995 } Some("wasm_bindgen_test::__rt::worker::Worker::new::hf288becb0aa36e17") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1578 } Some("wasm_bindgen_test::__rt::node::Node::new::h21ed7d0e063d6959") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7091 } Some("link_cli::parser::Parser::new::h413581c3e290b0e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6452 } Some("core::ptr::drop_in_place)>>::h1da63df706b9abe1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8822 } Some("__rustc[16f1505adc47261a]::__rust_abort") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8844 } Some("std::io::impls::>::is_write_vectored::h113196f64bf3bb41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6454 } Some("core::ptr::drop_in_place>::h0ac240ce23355ce3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6422 } Some("core::ptr::drop_in_place,core::option::Option),(),link_cli::query_processor::QueryProcessor::determine_operations::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<(core::option::Option,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h315bb96991262db2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6456 } Some("core::ptr::drop_in_place>::h04394641cde6dd63") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6457 } Some("core::ptr::drop_in_place>::h968c33b83f26eedb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6423 } Some("core::ptr::drop_in_place,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}>>::{{closure}}>::{{closure}}>::hf962011174d13d93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6424 } Some("core::ptr::drop_in_place,core::option::Option),(),link_cli::query_processor::QueryProcessor::determine_operations::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<(core::option::Option,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h7ac2c54cdaef7444") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6458 } Some("core::ptr::drop_in_place>>::h6c3edcbbd3ddfa2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6425 } Some("core::ptr::drop_in_place,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}>>::{{closure}}>::{{closure}}>::h40dd6597334cd29b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6459 } Some("core::ptr::drop_in_place,std::hash::random::RandomState>>::h02e5e753d2b3580f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6462 } Some("core::ptr::drop_in_place>>::h20cd1d3a4a76deb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5612 } Some("alloc::raw_vec::RawVecInner::grow_amortized::hcf7ae6db8bb35e80") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6463 } Some("core::ptr::drop_in_place)>>::he74c916152ada354") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6464 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h876386e3e80c4086") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6466 } Some("core::ptr::drop_in_place>>::hc831a6cf3a1b450f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6467 } Some("core::ptr::drop_in_place>,link_cli::parser::Parser::convert_link>>::h18c37819d5cc323a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1317 } Some("alloc::rc::Rc::increment_strong_count::h66c4fbd7d8e7f197") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6468 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h52214be652057458") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1415 } Some("alloc::collections::btree::map::BTreeMap::new::h95e6a1dddfa2836d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6469 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard<(link_cli::link::Link,link_cli::link::Link),alloc::alloc::Global>>::h0e144fbcfec103e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1705 } Some("core::ptr::drop_in_place::h3bea8fbe7c38e4ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6470 } Some("core::ptr::drop_in_place>::hd3b208564d0b68e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1727 } Some("core::ptr::drop_in_place>::h07d1f3dee3e90c0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6471 } Some("core::ptr::drop_in_place::extend_trusted,link_cli::query_processor::QueryProcessor::create_pattern_from_lino>>::{{closure}}>::h3ad711f6ddfffb75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3374 } Some("core::task::poll::Poll::is_ready::h0b6577940f267c54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5920 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h13ee4f93f198fdff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3410 } Some("js_sys::futures::task::singlethread::Task::force_wake::h97ac4b943ad396e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6137 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h421784e056aa1ea5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5127 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h24dfdab8393f33d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6164 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h1ce81e72a25374b6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5128 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h2ac384f17cf9c12b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7287 } Some("alloc::raw_vec::RawVecInner::grow_amortized::had47a1c8eee6e86a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5129 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h455708df5e7492b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7422 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h744325f768ff12f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5131 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h549ad84ce07e75f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7533 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h93a51768522554d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3476 } Some(" as core::ops::drop::Drop>::drop::h2318984967fa3aa2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3635 } Some("core::ptr::drop_in_place::h75739a7f0d55494d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6427 } Some("core::ptr::drop_in_place>::hef598c4ad97d161e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5132 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h797b65f2c1f61f4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6432 } Some("core::ptr::drop_in_place>::he94f4eaf877efeba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3640 } Some("core::ptr::drop_in_place>::hb51f1aeb8b5f00fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3643 } Some("core::ptr::drop_in_place>::h6057277be2df2f0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3645 } Some("core::ptr::drop_in_place>>::he3a0384dc53d7d68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5133 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h8e8660e390ce28fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3649 } Some("core::ptr::drop_in_place>>::hf94f208e57ddfc77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3653 } Some("core::ptr::drop_in_place::h0d1dacfe42af207a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6433 } Some("core::ptr::drop_in_place>::h6b230ed73142fb75") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6434 } Some("core::ptr::drop_in_place>::h0d83bed203c6a718") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4408 } Some("core::slice::sort::stable::quicksort::quicksort::hff5ee79e8769d60b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6435 } Some("core::ptr::drop_in_place>::he314d54cc3472b44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6436 } Some("core::ptr::drop_in_place>::h695c0f5072def459") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6438 } Some("core::ptr::drop_in_place>::h148f1fc40625813e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6439 } Some("core::ptr::drop_in_place>::h43193d26c3559a21") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6440 } Some("core::ptr::drop_in_place>::h59533830ee149b5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6736 } Some("core::slice::sort::stable::quicksort::quicksort::hd4ed2605f9e4013e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6441 } Some("core::ptr::drop_in_place>::hee739d82fcdb5228") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3654 } Some("core::ptr::drop_in_place>>::h955d1ebef62ed4aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3655 } Some("core::ptr::drop_in_place>::h56844948ee8bcb0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3657 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>::hb2f27a8fdff49f1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3658 } Some("core::ptr::drop_in_place::h7da5d2a9711ed302") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3659 } Some("core::ptr::drop_in_place>>::hdc4e90655416e876") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3661 } Some("core::ptr::drop_in_place::h05247437848d136f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3664 } Some("core::ptr::drop_in_place>>>::h1ee898f06d910dcd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3667 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::Dropper>>::ha3a02fc6d7ea510a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3670 } Some("core::ptr::drop_in_place::h6521b59a95ca0022") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3671 } Some("core::ptr::drop_in_place::h36d6db2fad94a960") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3672 } Some("core::ptr::drop_in_place::h707e81f605e727d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3673 } Some("core::ptr::drop_in_place::hcace65dfbc7cf95f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3674 } Some("core::ptr::drop_in_place::h8286c81b50443f0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3675 } Some("core::ptr::drop_in_place::h41d8b00d28c8382e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3678 } Some("core::ptr::drop_in_place::h731256abb244027e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3679 } Some("core::ptr::drop_in_place::hc8513e51bc9a5e2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3683 } Some("core::ptr::drop_in_place>::h3176f6b6432b0e61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3686 } Some("core::ptr::drop_in_place>::h249ce3fd6f1e3f27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3705 } Some("alloc::rc::RcInnerPtr::strong::h248dc0120bdce779") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3707 } Some("alloc::rc::RcInnerPtr::strong::hef9b08827e1525cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3925 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h398c5cbaab0082bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4710 } Some("alloc::vec::Vec::dedup::h4e7e0e567e2b1477") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4910 } Some("alloc::rc::RcInnerPtr::strong::h59c2da22edc5b400") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4911 } Some("alloc::rc::Rc::increment_strong_count::hec0c1df891a819fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4942 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h85a0f42c1e74e976") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5026 } Some("console_error_panic_hook::set_once::{{closure}}::hfdc3df7a55629226") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5092 } Some("core::str::::is_empty::hc284c52a680d427f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5139 } Some("core::ptr::drop_in_place,core::option::Option)>>::hcbf311cf6d24b464") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5141 } Some("core::ptr::drop_in_place>>::hff8b3cf92da5e0a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5156 } Some("core::ptr::drop_in_place>>::h0c226f4391cd77be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5160 } Some("core::ptr::drop_in_place>::h5755283cb3aadcae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5166 } Some("core::ptr::drop_in_place>::h2c60e7b9f1ca9045") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5167 } Some("core::ptr::drop_in_place>::h43b100f754f05f8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5172 } Some("core::ptr::drop_in_place>::h4da6cf101bf4a4cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5174 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::hf6b303240db366e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5176 } Some("core::ptr::drop_in_place::extend_trusted>::{{closure}}>::hd4ad9fbe7e87528d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5177 } Some("core::ptr::drop_in_place>>::h944d36416d743bbd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5181 } Some("core::ptr::drop_in_place,core::option::Option)>>::haf92814358ebed66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5184 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h46ffc94b4803630c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5186 } Some("core::ptr::drop_in_place>::hb469b8eacbead4ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5187 } Some("core::ptr::drop_in_place>>::h38413d354bf88251") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5189 } Some("core::ptr::drop_in_place,core::option::Option)>>::h277670059c2f795d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5191 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard,alloc::alloc::Global>>::ha4cc6ad90509d3eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5192 } Some("core::ptr::drop_in_place::extend_trusted>::{{closure}}>::{{closure}}>::hf40411f486c87391") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5193 } Some("core::ptr::drop_in_place,link_cli::query_processor::QueryProcessor::match_pattern::{{closure}}>>::h12426200af5fc31f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5194 } Some("core::ptr::drop_in_place>::h70cccb670166d386") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5195 } Some("core::ptr::drop_in_place,link_cli::query_processor::QueryProcessor::matched_links::{{closure}}>>::h3d35c4bf87af8aca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5196 } Some("core::ptr::drop_in_place,link_cli::query_processor::QueryProcessor::links_matching_definition::{{closure}}>>::h5caf1a0dcc2a91a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5197 } Some("core::ptr::drop_in_place,link_cli::query_processor::QueryProcessor::solution_is_no_operation::{{closure}}>>::h4a0285c1d687b847") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5198 } Some("core::ptr::drop_in_place,link_cli::query_processor::QueryProcessor::solution_is_no_operation::{{closure}}>>::h59057b436cec7e7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5199 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard<(core::option::Option,core::option::Option),alloc::alloc::Global>>::h4374d5b0bc8a3d44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5200 } Some("core::ptr::drop_in_place::h9de37bb29d22dfdf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5202 } Some("core::ptr::drop_in_place,link_cli::query_processor::QueryProcessor::match_pattern::{{closure}}>,link_cli::query_processor::QueryProcessor::match_pattern::{{closure}}>>::h46b1ceb20412927f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5203 } Some("core::ptr::drop_in_place::h5c8b76474360dd61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5204 } Some("core::ptr::drop_in_place,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::h17a9838537b5f255") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5205 } Some("core::ptr::drop_in_place,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::h7e5fe5f2292fb3ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5206 } Some("core::ptr::drop_in_place,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::hab7076876465754b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5211 } Some("core::ptr::drop_in_place,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::{{closure}}>::h2e1d73d23dbe40b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5212 } Some("core::ptr::drop_in_place,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::{{closure}}>::h3edfa2a631e49a5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5213 } Some("core::ptr::drop_in_place,core::option::Option),alloc::vec::Vec<(core::option::Option,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::process_query::{{closure}}>>::{{closure}}>::{{closure}}>::h80536b9a997cc5e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5215 } Some("core::ptr::drop_in_place>::h0e6e2f1174787c4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5218 } Some("core::ptr::drop_in_place>::h23c1da5685a53eb9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5219 } Some("core::ptr::drop_in_place>::h38f6a11fe91df473") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5220 } Some("core::ptr::drop_in_place>::h39eab36a7b364dfb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5222 } Some("core::ptr::drop_in_place>::hbaf674cc1c6344bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5224 } Some("core::ptr::drop_in_place>::h4c93b58f1d7cbd42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5227 } Some("core::ptr::drop_in_place>::hf959ee336d6346ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5229 } Some("core::ptr::drop_in_place>::h53f6650fbeae22c2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5231 } Some("core::ptr::drop_in_place>::haf018eb030b0cee6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5239 } Some("core::ptr::drop_in_place>::he3e29d8234b419f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6123 } Some("core::ptr::drop_in_place::haacd87ca6e01e33a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6125 } Some("core::ptr::drop_in_place>::h476cd3251cae528a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6149 } Some("core::ptr::drop_in_place::h4926dd5d5a58c061") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6203 } Some("core::ptr::drop_in_place>::hd090f3ed49153d27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6355 } Some("core::ptr::drop_in_place>::h1e5330a26c7a8778") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6357 } Some("core::ptr::drop_in_place>::hf3bf7e25a7a606db") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6359 } Some("core::ptr::drop_in_place>::h99722092d46678b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6485 } Some("core::ptr::drop_in_place::extend_trusted,link_cli::query_processor::QueryProcessor::create_pattern_from_lino>>::{{closure}}>::{{closure}}>::{{closure}}>::he7c47d2e47b09a3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6488 } Some("core::ptr::drop_in_place>::h9833223d748d0bb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6492 } Some("core::ptr::drop_in_place>::h601ca33bb8d05b73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6495 } Some("core::ptr::drop_in_place>::h80ecaa2b3e1211c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6503 } Some("core::ptr::drop_in_place>::hd18b5ec949b7b853") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6638 } Some("core::option::Option::is_none::hc6c22c23cbabb379") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6788 } Some("alloc::vec::Vec::dedup::hac189e68957f9073") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6851 } Some("core::str::::is_empty::h32e2f39b57de7d59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7067 } Some("core::result::Result::is_ok::h39777bf7d0a3beba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7169 } Some("core::ptr::drop_in_place)>>::h3b77ae209a02f6fd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7170 } Some("core::ptr::drop_in_place>>::hb8534382450fac87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7171 } Some("core::ptr::drop_in_place,std::hash::random::RandomState>>::hec90c8c5955d15f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7172 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::hb3439359e39a99e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7175 } Some("core::ptr::drop_in_place>::ha030f19b87005591") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7193 } Some("core::result::Result::is_err::h960ddafd2c182519") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7211 } Some("core::ptr::drop_in_place::h6cd2473f2116ad44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7227 } Some("core::ptr::drop_in_place::h95dbd1f5bc6598a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7234 } Some("core::ptr::drop_in_place::h07585e17122f61d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7236 } Some("core::ptr::drop_in_place::h3df27825633a6f79") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7237 } Some("core::ptr::drop_in_place::he4776e737ca9edc7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7239 } Some("core::ptr::drop_in_place::h750574b1d0f83b89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7241 } Some("core::ptr::drop_in_place>::hccb54ba63994d66c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7242 } Some("core::ptr::drop_in_place::h0a11b41232682226") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7335 } Some("std::collections::hash::map::HashMap::clear::hb9383ca7ff22385d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7389 } Some("core::ptr::drop_in_place>::h3dc4a6823bc97982") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7398 } Some("core::ptr::drop_in_place)>,hashbrown::raw::RawTable<(alloc::string::String,alloc::vec::Vec)>::clear::{{closure}}>>::h4e16f206eeef27cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7400 } Some("core::ptr::drop_in_place::h50a39b2a22a6edf4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7402 } Some("core::ptr::drop_in_place::haaf6df21b29b4561") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7403 } Some("core::ptr::drop_in_place::h000eeb544468d6da") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6473 } Some("core::ptr::drop_in_place::extend_trusted,link_cli::query_processor::QueryProcessor::create_pattern_from_lino>>::{{closure}}>::{{closure}}>::hea99f2c4c0a83514") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6474 } Some("core::ptr::drop_in_place,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}>>::{{closure}}>::h0da10d38ae8f2059") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6475 } Some("core::ptr::drop_in_place,core::option::Option)>::extend_trusted,link_cli::query_processor::QueryProcessor::determine_operations::{{closure}}>>::{{closure}}>::h340f304d486def58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6479 } Some("core::ptr::drop_in_place<(alloc::string::String,u32)>::h326f7dfbf37074d9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6481 } Some("core::ptr::drop_in_place>::h67a37ee486d44f69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6482 } Some("core::ptr::drop_in_place::hdf10b1dfaa6bde24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6483 } Some("core::ptr::drop_in_place<(alloc::string::String,())>::h3bb486da6b3a4a3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6899 } Some("hashbrown::raw::RawTable::find::h385a883139922322") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6958 } Some("hashbrown::raw::RawTable::find::h0d5fcd9f7722039f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6962 } Some("hashbrown::raw::RawTable::find::hcc3e544f4900ff9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6965 } Some("hashbrown::raw::RawTable::find::hf27412ff503b1436") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6967 } Some("hashbrown::raw::RawTable::find::hf74a9b0bc80e950f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6971 } Some("hashbrown::raw::RawTable::find::hfb5505543d57d29c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 511 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h98b85b6674c0f278") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 318 } Some("std::sync::mpmc::array::Channel::send::{{closure}}::h9d68e25442ecaea8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8652 } Some(" as core::fmt::Write>::write_str::h06b2b1a0ba4d3d03") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 651 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split_leaf_data::h167ee052dbe5a97e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 652 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split_leaf_data::hc31d9c320f959b1d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7508 } Some("hashbrown::raw::capacity_to_buckets::h6ee5d46295211c2c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7506 } Some("hashbrown::raw::RawTableInner::new_uninitialized::hd48750d8ec716202") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5923 } Some("core::ptr::drop_in_place::h9875d2bf8685bece") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8192 } Some("alloc::raw_vec::RawVecInner::grow_amortized::hcaa9fa7893368001") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5924 } Some("core::ptr::drop_in_place>::hfc1fef19e842a239") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6000 } Some("core::cell::Cell::set::hf6f24cd059201b32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7348 } Some("::build_hasher::h2266aadd1a65592c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5470 } Some("core::str::validations::next_code_point_reverse::hbb761cde0a1a9956") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8788 } Some("alloc::raw_vec::RawVecInner::grow_amortized::ha16be30a0cc393a5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7302 } Some("core::str::validations::next_code_point_reverse::hb756994717677df4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4955 } Some("link_cli::named_type_links::NamedTypeLinks::format_lino::h6a24210efbcc198b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8229 } Some("core::str::validations::next_code_point_reverse::h9ecd950ef1a9d90a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5440 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split_leaf_data::h07165e4c2d237b1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6472 } Some("core::ptr::drop_in_place::h7ee2ac8ad40f86c4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5544 } Some("alloc::collections::btree::navigate::LazyLeafRange::take_front::hacaec3c2da298432") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5441 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split_leaf_data::h316cbfcc744bb01c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8663 } Some("core::str::validations::next_code_point_reverse::h9e3bea2199f4878b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1076 } Some("::stringify_error::h303c98a57c6de650") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9152 } Some("core::unicode::printable::is_printable::hc2278c0d26a86fbc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4280 } Some("link_cli::link_reference_validator::LinkReferenceValidator::validate_reference_identifier::h65e9226d499b6a84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 659 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_recursing::h282b7e6e7a811b9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8226 } Some("::fmt::h66bd658f3107004f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1074 } Some("::stringify_error::hcd1cf15ef64f5448") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5427 } Some("alloc::collections::btree::node::NodeRef::push::h892297f014fff1c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4539 } Some("link_cli::query_processor::QueryProcessor::recursive_match_subpattern::h16128b63f8dbf3b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8320 } Some("nom::character::complete::char::{{closure}}::hc92e70bb6400843c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7892 } Some("nom::internal::Parser::parse::h20ddbbf0e98bb6a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8893 } Some("std::thread::current::with_current_name::{{closure}}::hb64e3346a3e8f8f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7898 } Some("nom::internal::Parser::parse::hbf53cc1ab1e8d475") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 232 } Some(" as core::fmt::Display>::fmt::h2539e3ef015eb2d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5490 } Some("::next_back::h13cd2010844a683e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 523 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hf1e860434a47ad72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9068 } Some("core::fmt::Formatter::pad::h950d3375a7ef2727") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 370 } Some("core::str::::trim_matches::hfc0b5c2ca1a74fe0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 323 } Some("std::sync::mpmc::list::Channel::recv::{{closure}}::h89f7a6c30b757124") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5617 } Some("alloc::raw_vec::RawVecInner::shrink_unchecked::h9f60c26f9a4da183") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5847 } Some("zmij::to_bcd8::h4cc2342df850d9e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1550 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::::serialize::h28831adf5ae45b9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1686 } Some("::next_match::h4fbf42371b635746") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 224 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h39e8a66f130cfac3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 225 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h3feb5af7ec1bc593") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 560 } Some("serde_json::de::Deserializer::deserialize_number::h1b8be1655e98a3bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1433 } Some(" as core::ops::drop::Drop>::drop::h834cee15aed8795e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7507 } Some("hashbrown::raw::RawTableInner::fallible_with_capacity::h56b085f1909910ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5752 } Some(" as core::ops::drop::Drop>::drop::hc9b7cc97c7cef92b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7087 } Some("::build_hasher::h0d1ddfa22b89457c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8189 } Some("alloc::slice::::repeat::h17b4f5738b991940") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5943 } Some("alloc::raw_vec::RawVecInner::shrink_unchecked::h43c9eb7ef872fca5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 239 } Some(" as test::formatters::OutputFormatter>::write_result::h14f32e417bb7be7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1732 } Some("core::str::validations::next_code_point::ha89fd6157323e982") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7895 } Some("nom::internal::Parser::parse::h4ea5eed7ba2cbcb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5496 } Some("serde_json::error::parse_line_col::hb6ad3c9cae2209bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9058 } Some("core::char::methods::::escape_debug_ext::h697d2991ee43dd73") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9065 } Some("core::fmt::Formatter::pad_integral::h79733d96345228a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4711 } Some("alloc::vec::Vec::dedup_by::hbeb79d7b817142e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1754 } Some("alloc::raw_vec::RawVecInner::finish_grow::hfbd5b622891dba5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6207 } Some("core::str::validations::next_code_point::h6469cb25387ffe0a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5569 } Some("serde_json::read::push_wtf8_codepoint::h2c89e70ad8b57171") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7493 } Some("core::str::validations::next_code_point::h1ee4f67f39fcf063") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5615 } Some("alloc::raw_vec::RawVecInner::finish_grow::hbe148bf0b3344931") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8393 } Some("core::str::validations::next_code_point::h64602d556e30906d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6134 } Some("alloc::raw_vec::RawVecInner::finish_grow::h56369c4ff9f7d418") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4659 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h13ffa41e1b58466c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6160 } Some("alloc::raw_vec::RawVecInner::finish_grow::haaf53145c8865f1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7744 } Some("nom::internal::Parser::parse::h04a6a23cfa122140") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7286 } Some("alloc::raw_vec::RawVecInner::finish_grow::h589bea810d685729") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4661 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h16d6dfd5777803a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7425 } Some("alloc::raw_vec::RawVecInner::finish_grow::h6a2fb5a6b46a1a08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 304 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h11c429db3cfeb6de") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7532 } Some("alloc::raw_vec::RawVecInner::finish_grow::h99f6e227d558c2c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 372 } Some(" as core::hash::Hasher>::write::h025d5db785fe8302") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8195 } Some("alloc::raw_vec::RawVecInner::finish_grow::ha43d0e8931540d4a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 640 } Some("alloc::collections::btree::node::NodeRef::push::h45b11952a9f6b506") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8791 } Some("alloc::raw_vec::RawVecInner::finish_grow::h976b449e1b2a2b9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5471 } Some("core::str::pattern::TwoWaySearcher::next_back::h75725358363f29d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5475 } Some("core::str::pattern::TwoWaySearcher::next_back::ha431612609292134") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7249 } Some("::build_hasher::hd6e012c572dbb54d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8824 } Some("dlmalloc::dlmalloc::Dlmalloc::free::ha98daa4c6dd8ad86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6213 } Some("core::str::pattern::TwoWaySearcher::next::h1bbd8484232afbad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 305 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h7534b9456d32f850") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5451 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert::h5410d001d59fde99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8105 } Some("::next_match::he58497a3084da7e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4479 } Some("alloc::alloc::Global::shrink_impl_runtime::hf0e25d6ee2cbc04b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8757 } Some("::next_match::h6b9bf5803c8230cb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6217 } Some("core::str::pattern::TwoWaySearcher::next::h8c7c354649062132") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5017 } Some("serde_json::de::Deserializer::deserialize_number::h75af28af92834b6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8497 } Some("alloc::string::String::replace_range::hef784c6d821b5cb1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1238 } Some("wasm_bindgen_test::__rt::Context::run::h641e5b80b4ca8807") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 585 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_str::h0ee6206d23ffb9f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8986 } Some("rustc_demangle::v0::Parser::ident::hfc20932a2c2fcf98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4522 } Some("link_cli::query_processor::QueryProcessor::create_or_update_resolved_link::h8cf49d9513e4ab92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 212 } Some(" as core::fmt::Display>::fmt::h4a4e4170338ec400") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4683 } Some("alloc::vec::Vec::dedup_by::hb9e944a4c7d14312") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7466 } Some("core::str::pattern::TwoWaySearcher::next::h190e574806aad90f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 669 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::KV>>::next_leaf_edge::h11d1352790c91da3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7470 } Some("core::str::pattern::TwoWaySearcher::next::hf539b197ff2e4822") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 670 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::KV>>::next_leaf_edge::hba35986116c2d33f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5460 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::KV>>::next_leaf_edge::h4b377fd1651c12c0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8395 } Some("core::str::pattern::TwoWaySearcher::next::h27b21a0a03aad28e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5461 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::KV>>::next_leaf_edge::h8fb360c3644c82d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9101 } Some("core::fmt::float::float_to_decimal_common_shortest::h8a36f199b489b4f9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8399 } Some("core::str::pattern::TwoWaySearcher::next::hfeed2c8669c83470") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1749 } Some("alloc::alloc::Global::grow_impl_runtime::he74505b9e4f1f74f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5771 } Some("alloc::alloc::Global::shrink_impl_runtime::h01bfce269d7587d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5770 } Some("alloc::alloc::Global::grow_impl_runtime::h11c78582920741f0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5938 } Some("alloc::alloc::Global::shrink_impl_runtime::h7e167214daa9f624") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6129 } Some("alloc::alloc::Global::grow_impl_runtime::h321a57a272e27582") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6615 } Some("alloc::alloc::Global::shrink_impl_runtime::h7822f564d608860e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6159 } Some("alloc::alloc::Global::grow_impl_runtime::hf4890492260cebf8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8188 } Some("alloc::alloc::Global::shrink_impl_runtime::h8b6b638741a677af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7311 } Some("alloc::alloc::Global::grow_impl_runtime::h2d10c93e77b98a53") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5942 } Some("alloc::raw_vec::RawVecInner::grow_exact::h51f29155408254c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7368 } Some("alloc::alloc::Global::grow_impl_runtime::h241e326c690f08a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5038 } Some("clink_wasm::BrowserStorage::format_change::hd3523f61053572cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4685 } Some("alloc::vec::Vec::dedup_by::hfbc72a6d6d1e1c7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 566 } Some(" as serde_core::de::MapAccess>::next_key_seed::has_next_key::h9daa6ad4dbc77440") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7135 } Some("core::slice::sort::unstable::quicksort::quicksort::ha52b6265b4f04949") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5130 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h53fc6d5adc0a1781") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9074 } Some("core::str::converts::from_utf8::h98d2c0a7c1a2b83e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7106 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h75a9a465f6e6215b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 247 } Some("test::formatters::junit::str_to_cdata::h59dc2cb477ad6a77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 423 } Some("hashbrown::raw::RawTable::reserve_rehash::h6b20736da9fbbda1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 672 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_next::h788c56e99510dff6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5414 } Some(" as serde_core::de::MapAccess>::next_key_seed::has_next_key::h7e904450edc37d95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5463 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_next::hacee46e7b727533b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5422 } Some("alloc::collections::btree::node::NodeRef::push_with_handle::h0530269c11c79775") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 386 } Some(" as core::fmt::Display>::fmt::h15f27aefc4939427") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7136 } Some("core::slice::sort::unstable::ipnsort::h61e7f26249dd7d0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6864 } Some("hashbrown::raw::RawTableInner::find_or_find_insert_index_inner::hded99731752b5b9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 230 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h760747a75a9c1bff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 442 } Some("hashbrown::raw::RawTableInner::rehash_in_place::h815e9802b7f6bcbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 234 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::hef4efd2efa80a7fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 393 } Some("test::test_main::hea581572c405f54a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7547 } Some("alloc::alloc::Global::grow_impl_runtime::h5b9d5e63edc68f86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1523 } Some("alloc::collections::btree::navigate::LazyLeafRange::take_front::h704f0880798079e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1396 } Some("serde_json::ser::format_escaped_str_contents::hc82def1f131de080") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8187 } Some("alloc::alloc::Global::grow_impl_runtime::hc309aee52bac8393") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6748 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h3dfec3e7f8516d30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8692 } Some("alloc::alloc::Global::grow_impl_runtime::h27de0a7311f447d3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6860 } Some("hashbrown::raw::RawTableInner::prepare_rehash_in_place::h8ce4e71c6c88e8b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 467 } Some("getopts::Options::usage::hc6944437a24d7d8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8285 } Some("nom::bytes::complete::take_while::{{closure}}::h20ee1f4e345db3e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4877 } Some("hashbrown::raw::RawTable::find::hde9e988cf24c1a69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8286 } Some("nom::bytes::complete::take_while::{{closure}}::h3552774d746d8b7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6235 } Some("::fmt::hd759177eb8ca52a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8287 } Some("nom::bytes::complete::take_while::{{closure}}::hcf96fe7187264163") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6969 } Some("hashbrown::raw::RawTable::find::hf8439c9f18de5e8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1454 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::serialize::h8e5888744977f3d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7739 } Some("links_notation::parse_lino_to_links::ha07937cb2b1ff260") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 354 } Some("core::ptr::drop_in_place::h979857cb9df97ab2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 660 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert::hd5ea209c2cb0f5ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6893 } Some("hashbrown::raw::RawTable::find::he7117ab70313d033") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4875 } Some("hashbrown::raw::RawTable::find::h17789eefae3784a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6896 } Some("hashbrown::raw::RawTable::find::ha477125aaffbda9f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7322 } Some("hashbrown::raw::RawTable::find::h541ecc058996c422") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4669 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::hd69da2c8b69911ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4823 } Some("serde_json::ser::format_escaped_str_contents::h6254f923e0df5e26") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1416 } Some("alloc::collections::btree::map::BTreeMap::entry::h9ebba8020fa52bb6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1698 } Some("core::iter::adapters::peekable::Peekable::next_if::h46c648c7d6029740") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5566 } Some("serde_json::read::parse_unicode_escape::h41a754c05f92faf2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1701 } Some("core::iter::adapters::peekable::Peekable::next_if::hc4fa42cf3b1f57a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1706 } Some("core::iter::adapters::peekable::Peekable::next_if::hd5be1f14e064520f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8835 } Some("std::backtrace_rs::print::BacktraceFrameFmt::print_raw_with_column::h172858746475c5bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4381 } Some("core::slice::sort::stable::quicksort::stable_partition::h0ce9a4f45b320f58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5733 } Some("alloc::collections::btree::map::BTreeMap::entry::h171b84c1ae90c786") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6732 } Some("core::slice::sort::stable::quicksort::stable_partition::h69e167d74a1cd42e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4389 } Some("core::slice::sort::stable::quicksort::stable_partition::h2a2082b1144a58ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6735 } Some("core::slice::sort::stable::quicksort::stable_partition::hf88112cdd8a3048d") +[2026-05-02T10:31:05Z DEBUG walrus::module::data] emit data section +[2026-05-02T10:31:05Z DEBUG walrus::module] emit name section +[2026-05-02T10:31:05Z DEBUG walrus::module::producers] emit producers section +[2026-05-02T10:31:07Z DEBUG walrus::module] emitting custom section target_features +[2026-05-02T10:31:07Z DEBUG walrus::module] emission finished +running 4 tests +test reports_invalid_options ... ok +test exposes_versions ... ok +test executes_lino_queries_with_the_rust_core ... ok +test creates_a_clink_instance ... ok + +test result: ok. 4 passed; 0 failed; 0 ignored; 0 filtered out; finished in 0.03s + + Doc-tests clink_wasm + +running 0 tests + +test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s + +[INFO wasm_pack::command::test] Finished running tests in node. +[INFO wasm_pack::command::test] Done in 32.68s. diff --git a/docs/case-studies/issue-69/evidence/recent-runs-issue-branch.json b/docs/case-studies/issue-69/evidence/recent-runs-issue-branch.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/docs/case-studies/issue-69/evidence/recent-runs-issue-branch.json @@ -0,0 +1 @@ +[] diff --git a/docs/case-studies/issue-69/evidence/run-25245349330.json b/docs/case-studies/issue-69/evidence/run-25245349330.json new file mode 100644 index 0000000..a00df37 --- /dev/null +++ b/docs/case-studies/issue-69/evidence/run-25245349330.json @@ -0,0 +1 @@ +{"conclusion":"failure","createdAt":"2026-05-02T06:01:29Z","databaseId":25245349330,"displayTitle":"Merge pull request #61 from link-foundation/issue-58-2571f420","event":"push","headBranch":"main","headSha":"26050750382b801a4d9f33d1445627e2db2b7867","jobs":[{"completedAt":"2026-05-02T06:04:27Z","conclusion":"success","databaseId":74028583022,"name":"Test","startedAt":"2026-05-02T06:01:32Z","status":"completed","steps":[{"completedAt":"2026-05-02T06:01:35Z","conclusion":"success","name":"Set up job","number":1,"startedAt":"2026-05-02T06:01:33Z","status":"completed"},{"completedAt":"2026-05-02T06:01:35Z","conclusion":"success","name":"Run actions/checkout@v4","number":2,"startedAt":"2026-05-02T06:01:35Z","status":"completed"},{"completedAt":"2026-05-02T06:01:46Z","conclusion":"success","name":"Setup Rust","number":3,"startedAt":"2026-05-02T06:01:35Z","status":"completed"},{"completedAt":"2026-05-02T06:03:01Z","conclusion":"success","name":"Install wasm-pack","number":4,"startedAt":"2026-05-02T06:01:46Z","status":"completed"},{"completedAt":"2026-05-02T06:03:02Z","conclusion":"success","name":"Setup Node.js","number":5,"startedAt":"2026-05-02T06:03:01Z","status":"completed"},{"completedAt":"2026-05-02T06:03:09Z","conclusion":"success","name":"Cache cargo registry","number":6,"startedAt":"2026-05-02T06:03:02Z","status":"completed"},{"completedAt":"2026-05-02T06:03:12Z","conclusion":"success","name":"Install npm dependencies","number":7,"startedAt":"2026-05-02T06:03:09Z","status":"completed"},{"completedAt":"2026-05-02T06:03:22Z","conclusion":"success","name":"Test Rust CLI core","number":8,"startedAt":"2026-05-02T06:03:12Z","status":"completed"},{"completedAt":"2026-05-02T06:03:46Z","conclusion":"success","name":"Test WebAssembly wrapper","number":9,"startedAt":"2026-05-02T06:03:22Z","status":"completed"},{"completedAt":"2026-05-02T06:04:11Z","conclusion":"success","name":"Build React WebAssembly app","number":10,"startedAt":"2026-05-02T06:03:46Z","status":"completed"},{"completedAt":"2026-05-02T06:04:12Z","conclusion":"success","name":"Upload built app","number":11,"startedAt":"2026-05-02T06:04:11Z","status":"completed"},{"completedAt":"2026-05-02T06:04:22Z","conclusion":"success","name":"Post Cache cargo registry","number":20,"startedAt":"2026-05-02T06:04:12Z","status":"completed"},{"completedAt":"2026-05-02T06:04:24Z","conclusion":"success","name":"Post Setup Node.js","number":21,"startedAt":"2026-05-02T06:04:22Z","status":"completed"},{"completedAt":"2026-05-02T06:04:24Z","conclusion":"success","name":"Post Run actions/checkout@v4","number":22,"startedAt":"2026-05-02T06:04:24Z","status":"completed"},{"completedAt":"2026-05-02T06:04:24Z","conclusion":"success","name":"Complete job","number":23,"startedAt":"2026-05-02T06:04:24Z","status":"completed"}],"url":"https://github.com/link-foundation/link-cli/actions/runs/25245349330/job/74028583022"},{"completedAt":"2026-05-02T06:06:31Z","conclusion":"failure","databaseId":74028721474,"name":"Deploy GitHub Pages","startedAt":"2026-05-02T06:04:29Z","status":"completed","steps":[{"completedAt":"2026-05-02T06:04:34Z","conclusion":"success","name":"Set up job","number":1,"startedAt":"2026-05-02T06:04:30Z","status":"completed"},{"completedAt":"2026-05-02T06:04:35Z","conclusion":"success","name":"Run actions/checkout@v4","number":2,"startedAt":"2026-05-02T06:04:34Z","status":"completed"},{"completedAt":"2026-05-02T06:04:46Z","conclusion":"success","name":"Setup Rust","number":3,"startedAt":"2026-05-02T06:04:35Z","status":"completed"},{"completedAt":"2026-05-02T06:05:57Z","conclusion":"success","name":"Install wasm-pack","number":4,"startedAt":"2026-05-02T06:04:46Z","status":"completed"},{"completedAt":"2026-05-02T06:06:00Z","conclusion":"success","name":"Setup Node.js","number":5,"startedAt":"2026-05-02T06:05:57Z","status":"completed"},{"completedAt":"2026-05-02T06:06:01Z","conclusion":"success","name":"Install npm dependencies","number":6,"startedAt":"2026-05-02T06:06:00Z","status":"completed"},{"completedAt":"2026-05-02T06:06:28Z","conclusion":"success","name":"Build GitHub Pages app","number":7,"startedAt":"2026-05-02T06:06:01Z","status":"completed"},{"completedAt":"2026-05-02T06:06:29Z","conclusion":"failure","name":"Configure Pages","number":8,"startedAt":"2026-05-02T06:06:28Z","status":"completed"},{"completedAt":"2026-05-02T06:06:29Z","conclusion":"skipped","name":"Upload Pages artifact","number":9,"startedAt":"2026-05-02T06:06:29Z","status":"completed"},{"completedAt":"2026-05-02T06:06:29Z","conclusion":"skipped","name":"Deploy to GitHub Pages","number":10,"startedAt":"2026-05-02T06:06:29Z","status":"completed"},{"completedAt":"2026-05-02T06:06:29Z","conclusion":"skipped","name":"Post Setup Node.js","number":19,"startedAt":"2026-05-02T06:06:29Z","status":"completed"},{"completedAt":"2026-05-02T06:06:29Z","conclusion":"success","name":"Post Run actions/checkout@v4","number":20,"startedAt":"2026-05-02T06:06:29Z","status":"completed"},{"completedAt":"2026-05-02T06:06:29Z","conclusion":"success","name":"Complete job","number":21,"startedAt":"2026-05-02T06:06:29Z","status":"completed"}],"url":"https://github.com/link-foundation/link-cli/actions/runs/25245349330/job/74028721474"}],"name":"WebAssembly CI","status":"completed","updatedAt":"2026-05-02T06:06:32Z","url":"https://github.com/link-foundation/link-cli/actions/runs/25245349330"} diff --git a/docs/case-studies/issue-69/evidence/run-25245349330.log b/docs/case-studies/issue-69/evidence/run-25245349330.log new file mode 100644 index 0000000..e70effa --- /dev/null +++ b/docs/case-studies/issue-69/evidence/run-25245349330.log @@ -0,0 +1,1992 @@ +Test UNKNOWN STEP 2026-05-02T06:01:33.5866948Z Current runner version: '2.334.0' +Test UNKNOWN STEP 2026-05-02T06:01:33.5891709Z ##[group]Runner Image Provisioner +Test UNKNOWN STEP 2026-05-02T06:01:33.5892525Z Hosted Compute Agent +Test UNKNOWN STEP 2026-05-02T06:01:33.5893024Z Version: 20260213.493 +Test UNKNOWN STEP 2026-05-02T06:01:33.5893693Z Commit: 5c115507f6dd24b8de37d8bbe0bb4509d0cc0fa3 +Test UNKNOWN STEP 2026-05-02T06:01:33.5894568Z Build Date: 2026-02-13T00:28:41Z +Test UNKNOWN STEP 2026-05-02T06:01:33.5895253Z Worker ID: {ac8dc53f-7dd1-4813-91ed-34220c6f6367} +Test UNKNOWN STEP 2026-05-02T06:01:33.5895966Z Azure Region: westus +Test UNKNOWN STEP 2026-05-02T06:01:33.5896501Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:33.5897926Z ##[group]Operating System +Test UNKNOWN STEP 2026-05-02T06:01:33.5898968Z Ubuntu +Test UNKNOWN STEP 2026-05-02T06:01:33.5899456Z 24.04.4 +Test UNKNOWN STEP 2026-05-02T06:01:33.5899915Z LTS +Test UNKNOWN STEP 2026-05-02T06:01:33.5900412Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:33.5900865Z ##[group]Runner Image +Test UNKNOWN STEP 2026-05-02T06:01:33.5901411Z Image: ubuntu-24.04 +Test UNKNOWN STEP 2026-05-02T06:01:33.5901910Z Version: 20260413.86.1 +Test UNKNOWN STEP 2026-05-02T06:01:33.5903140Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20260413.86/images/ubuntu/Ubuntu2404-Readme.md +Test UNKNOWN STEP 2026-05-02T06:01:33.5904844Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20260413.86 +Test UNKNOWN STEP 2026-05-02T06:01:33.5905739Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:33.5906738Z ##[group]GITHUB_TOKEN Permissions +Test UNKNOWN STEP 2026-05-02T06:01:33.5908741Z Contents: read +Test UNKNOWN STEP 2026-05-02T06:01:33.5909347Z Metadata: read +Test UNKNOWN STEP 2026-05-02T06:01:33.5909914Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:33.5912463Z Secret source: Actions +Test UNKNOWN STEP 2026-05-02T06:01:33.5913256Z Prepare workflow directory +Test UNKNOWN STEP 2026-05-02T06:01:33.6258350Z Prepare all required actions +Test UNKNOWN STEP 2026-05-02T06:01:33.6298484Z Getting action download info +Test UNKNOWN STEP 2026-05-02T06:01:34.2193210Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5) +Test UNKNOWN STEP 2026-05-02T06:01:34.3476190Z Download action repository 'dtolnay/rust-toolchain@stable' (SHA:29eef336d9b2848a0b548edc03f92a220660cdb8) +Test UNKNOWN STEP 2026-05-02T06:01:34.5597010Z Download action repository 'actions/setup-node@v4' (SHA:49933ea5288caeca8642d1e84afbd3f7d6820020) +Test UNKNOWN STEP 2026-05-02T06:01:34.6451804Z Download action repository 'actions/cache@v4' (SHA:0057852bfaa89a56745cba8c7296529d2fc39830) +Test UNKNOWN STEP 2026-05-02T06:01:34.7380946Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) +Test UNKNOWN STEP 2026-05-02T06:01:34.9893586Z Complete job name: Test +Test UNKNOWN STEP 2026-05-02T06:01:35.0695184Z ##[group]Run actions/checkout@v4 +Test UNKNOWN STEP 2026-05-02T06:01:35.0696166Z with: +Test UNKNOWN STEP 2026-05-02T06:01:35.0696612Z repository: link-foundation/link-cli +Test UNKNOWN STEP 2026-05-02T06:01:35.0697390Z token: *** +Test UNKNOWN STEP 2026-05-02T06:01:35.0697807Z ssh-strict: true +Test UNKNOWN STEP 2026-05-02T06:01:35.0698218Z ssh-user: git +Test UNKNOWN STEP 2026-05-02T06:01:35.0698648Z persist-credentials: true +Test UNKNOWN STEP 2026-05-02T06:01:35.0699123Z clean: true +Test UNKNOWN STEP 2026-05-02T06:01:35.0699547Z sparse-checkout-cone-mode: true +Test UNKNOWN STEP 2026-05-02T06:01:35.0700062Z fetch-depth: 1 +Test UNKNOWN STEP 2026-05-02T06:01:35.0700463Z fetch-tags: false +Test UNKNOWN STEP 2026-05-02T06:01:35.0700880Z show-progress: true +Test UNKNOWN STEP 2026-05-02T06:01:35.0701292Z lfs: false +Test UNKNOWN STEP 2026-05-02T06:01:35.0701705Z submodules: false +Test UNKNOWN STEP 2026-05-02T06:01:35.0702156Z set-safe-directory: true +Test UNKNOWN STEP 2026-05-02T06:01:35.0702913Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.1852133Z Syncing repository: link-foundation/link-cli +Test UNKNOWN STEP 2026-05-02T06:01:35.1854042Z ##[group]Getting Git version info +Test UNKNOWN STEP 2026-05-02T06:01:35.1855098Z Working directory is '/home/runner/work/link-cli/link-cli' +Test UNKNOWN STEP 2026-05-02T06:01:35.1856189Z [command]/usr/bin/git version +Test UNKNOWN STEP 2026-05-02T06:01:35.1889726Z git version 2.53.0 +Test UNKNOWN STEP 2026-05-02T06:01:35.1926431Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.1942472Z Temporarily overriding HOME='/home/runner/work/_temp/42ea9fbc-0436-4eb0-8703-125c12e040d6' before making global git config changes +Test UNKNOWN STEP 2026-05-02T06:01:35.1944021Z Adding repository directory to the temporary git global config as a safe directory +Test UNKNOWN STEP 2026-05-02T06:01:35.1948676Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/link-cli/link-cli +Test UNKNOWN STEP 2026-05-02T06:01:35.1985268Z Deleting the contents of '/home/runner/work/link-cli/link-cli' +Test UNKNOWN STEP 2026-05-02T06:01:35.1989322Z ##[group]Initializing the repository +Test UNKNOWN STEP 2026-05-02T06:01:35.1993492Z [command]/usr/bin/git init /home/runner/work/link-cli/link-cli +Test UNKNOWN STEP 2026-05-02T06:01:35.2079214Z hint: Using 'master' as the name for the initial branch. This default branch name +Test UNKNOWN STEP 2026-05-02T06:01:35.2081168Z hint: will change to "main" in Git 3.0. To configure the initial branch name +Test UNKNOWN STEP 2026-05-02T06:01:35.2082472Z hint: to use in all of your new repositories, which will suppress this warning, +Test UNKNOWN STEP 2026-05-02T06:01:35.2083771Z hint: call: +Test UNKNOWN STEP 2026-05-02T06:01:35.2084774Z hint: +Test UNKNOWN STEP 2026-05-02T06:01:35.2085648Z hint: git config --global init.defaultBranch +Test UNKNOWN STEP 2026-05-02T06:01:35.2086718Z hint: +Test UNKNOWN STEP 2026-05-02T06:01:35.2087717Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +Test UNKNOWN STEP 2026-05-02T06:01:35.2089463Z hint: 'development'. The just-created branch can be renamed via this command: +Test UNKNOWN STEP 2026-05-02T06:01:35.2090497Z hint: +Test UNKNOWN STEP 2026-05-02T06:01:35.2090913Z hint: git branch -m +Test UNKNOWN STEP 2026-05-02T06:01:35.2091366Z hint: +Test UNKNOWN STEP 2026-05-02T06:01:35.2091978Z hint: Disable this message with "git config set advice.defaultBranchName false" +Test UNKNOWN STEP 2026-05-02T06:01:35.2093270Z Initialized empty Git repository in /home/runner/work/link-cli/link-cli/.git/ +Test UNKNOWN STEP 2026-05-02T06:01:35.2127820Z [command]/usr/bin/git remote add origin https://github.com/link-foundation/link-cli +Test UNKNOWN STEP 2026-05-02T06:01:35.2129865Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.2130655Z ##[group]Disabling automatic garbage collection +Test UNKNOWN STEP 2026-05-02T06:01:35.2133237Z [command]/usr/bin/git config --local gc.auto 0 +Test UNKNOWN STEP 2026-05-02T06:01:35.2164966Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.2165685Z ##[group]Setting up auth +Test UNKNOWN STEP 2026-05-02T06:01:35.2173099Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +Test UNKNOWN STEP 2026-05-02T06:01:35.2207955Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +Test UNKNOWN STEP 2026-05-02T06:01:35.2495506Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +Test UNKNOWN STEP 2026-05-02T06:01:35.2526499Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +Test UNKNOWN STEP 2026-05-02T06:01:35.2752429Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir: +Test UNKNOWN STEP 2026-05-02T06:01:35.2795271Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url +Test UNKNOWN STEP 2026-05-02T06:01:35.3025540Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +Test UNKNOWN STEP 2026-05-02T06:01:35.3062083Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.3063900Z ##[group]Fetching the repository +Test UNKNOWN STEP 2026-05-02T06:01:35.3073914Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +26050750382b801a4d9f33d1445627e2db2b7867:refs/remotes/origin/main +Test UNKNOWN STEP 2026-05-02T06:01:35.8546166Z From https://github.com/link-foundation/link-cli +Test UNKNOWN STEP 2026-05-02T06:01:35.8547847Z * [new ref] 26050750382b801a4d9f33d1445627e2db2b7867 -> origin/main +Test UNKNOWN STEP 2026-05-02T06:01:35.8574928Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.8575752Z ##[group]Determining the checkout info +Test UNKNOWN STEP 2026-05-02T06:01:35.8577206Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.8582131Z [command]/usr/bin/git sparse-checkout disable +Test UNKNOWN STEP 2026-05-02T06:01:35.8619387Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +Test UNKNOWN STEP 2026-05-02T06:01:35.8643775Z ##[group]Checking out the ref +Test UNKNOWN STEP 2026-05-02T06:01:35.8647877Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main +Test UNKNOWN STEP 2026-05-02T06:01:35.8777217Z Switched to a new branch 'main' +Test UNKNOWN STEP 2026-05-02T06:01:35.8779157Z branch 'main' set up to track 'origin/main'. +Test UNKNOWN STEP 2026-05-02T06:01:35.8786536Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.8820345Z [command]/usr/bin/git log -1 --format=%H +Test UNKNOWN STEP 2026-05-02T06:01:35.8841731Z 26050750382b801a4d9f33d1445627e2db2b7867 +Test UNKNOWN STEP 2026-05-02T06:01:35.9284919Z ##[group]Run dtolnay/rust-toolchain@stable +Test UNKNOWN STEP 2026-05-02T06:01:35.9285589Z with: +Test UNKNOWN STEP 2026-05-02T06:01:35.9285998Z targets: wasm32-unknown-unknown +Test UNKNOWN STEP 2026-05-02T06:01:35.9286769Z toolchain: stable +Test UNKNOWN STEP 2026-05-02T06:01:35.9287177Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.9422876Z ##[group]Run : parse toolchain version +Test UNKNOWN STEP 2026-05-02T06:01:35.9423564Z : parse toolchain version +Test UNKNOWN STEP 2026-05-02T06:01:35.9424123Z if [[ -z $toolchain ]]; then +Test UNKNOWN STEP 2026-05-02T06:01:35.9425314Z  # GitHub does not enforce `required: true` inputs itself. https://github.com/actions/runner/issues/1070 +Test UNKNOWN STEP 2026-05-02T06:01:35.9426348Z  echo "'toolchain' is a required input" >&2 +Test UNKNOWN STEP 2026-05-02T06:01:35.9426932Z  exit 1 +Test UNKNOWN STEP 2026-05-02T06:01:35.9427566Z elif [[ $toolchain =~ ^stable' '[0-9]+' '(year|month|week|day)s?' 'ago$ ]]; then +Test UNKNOWN STEP 2026-05-02T06:01:35.9428333Z  if [[ Linux == macOS ]]; then +Test UNKNOWN STEP 2026-05-02T06:01:35.9429341Z  echo "toolchain=1.$((($(date -v-$(sed 's/stable \([0-9]*\) \(.\).*/\1\2/' <<< $toolchain) +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9430263Z  else +Test UNKNOWN STEP 2026-05-02T06:01:35.9431057Z  echo "toolchain=1.$((($(date --date "${toolchain#stable }" +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9431916Z  fi +Test UNKNOWN STEP 2026-05-02T06:01:35.9432483Z elif [[ $toolchain =~ ^stable' 'minus' '[0-9]+' 'releases?$ ]]; then +Test UNKNOWN STEP 2026-05-02T06:01:35.9433460Z  echo "toolchain=1.$((($(date +%s)/60/60/24-16569)/7/6-${toolchain//[^0-9]/}))" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9434455Z elif [[ $toolchain =~ ^1\.[0-9]+$ ]]; then +Test UNKNOWN STEP 2026-05-02T06:01:35.9435433Z  echo "toolchain=1.$((i=${toolchain#1.}, c=($(date +%s)/60/60/24-16569)/7/6, i+9*i*(10*i<=c)+90*i*(100*i<=c)))" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9436336Z else +Test UNKNOWN STEP 2026-05-02T06:01:35.9436818Z  echo "toolchain=$toolchain" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9437404Z fi +Test UNKNOWN STEP 2026-05-02T06:01:35.9463938Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:35.9465037Z env: +Test UNKNOWN STEP 2026-05-02T06:01:35.9465433Z toolchain: stable +Test UNKNOWN STEP 2026-05-02T06:01:35.9465853Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.9615504Z ##[group]Run : construct rustup command line +Test UNKNOWN STEP 2026-05-02T06:01:35.9616140Z : construct rustup command line +Test UNKNOWN STEP 2026-05-02T06:01:35.9616962Z echo "targets=$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9618108Z echo "components=$(for c in ${components//,/ }; do echo -n ' --component' $c; done)" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9619021Z echo "downgrade=" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:35.9641213Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:35.9641852Z env: +Test UNKNOWN STEP 2026-05-02T06:01:35.9642255Z targets: wasm32-unknown-unknown +Test UNKNOWN STEP 2026-05-02T06:01:35.9642741Z components: +Test UNKNOWN STEP 2026-05-02T06:01:35.9643155Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.9734074Z ##[group]Run : set $CARGO_HOME +Test UNKNOWN STEP 2026-05-02T06:01:35.9734935Z : set $CARGO_HOME +Test UNKNOWN STEP 2026-05-02T06:01:35.9735565Z echo CARGO_HOME=${CARGO_HOME:-"$HOME/.cargo"} >> $GITHUB_ENV +Test UNKNOWN STEP 2026-05-02T06:01:35.9757102Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:35.9757775Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.9847407Z ##[group]Run : install rustup if needed +Test UNKNOWN STEP 2026-05-02T06:01:35.9848000Z : install rustup if needed +Test UNKNOWN STEP 2026-05-02T06:01:35.9848575Z if ! command -v rustup &>/dev/null; then +Test UNKNOWN STEP 2026-05-02T06:01:35.9849912Z  curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail https://sh.rustup.rs | sh -s -- --default-toolchain none -y +Test UNKNOWN STEP 2026-05-02T06:01:35.9851235Z  echo "$CARGO_HOME/bin" >> $GITHUB_PATH +Test UNKNOWN STEP 2026-05-02T06:01:35.9851817Z fi +Test UNKNOWN STEP 2026-05-02T06:01:35.9872731Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:35.9873358Z env: +Test UNKNOWN STEP 2026-05-02T06:01:35.9873965Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:35.9874672Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:35.9996864Z ##[group]Run rustup toolchain install stable --target wasm32-unknown-unknown --profile minimal --no-self-update +Test UNKNOWN STEP 2026-05-02T06:01:35.9999934Z rustup toolchain install stable --target wasm32-unknown-unknown --profile minimal --no-self-update +Test UNKNOWN STEP 2026-05-02T06:01:36.0032725Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:36.0033775Z env: +Test UNKNOWN STEP 2026-05-02T06:01:36.0034681Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:36.0035530Z RUSTUP_PERMIT_COPY_RENAME: 1 +Test UNKNOWN STEP 2026-05-02T06:01:36.0036333Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:36.1510082Z info: syncing channel updates for stable-x86_64-unknown-linux-gnu +Test UNKNOWN STEP 2026-05-02T06:01:36.2292128Z info: latest update on 2026-04-16 for version 1.95.0 (59807616e 2026-04-14) +Test UNKNOWN STEP 2026-05-02T06:01:36.2420296Z info: removing previous version of component clippy +Test UNKNOWN STEP 2026-05-02T06:01:36.2435025Z info: removing previous version of component rustfmt +Test UNKNOWN STEP 2026-05-02T06:01:36.2446356Z info: removing previous version of component cargo +Test UNKNOWN STEP 2026-05-02T06:01:36.2491516Z info: removing previous version of component rust-std +Test UNKNOWN STEP 2026-05-02T06:01:36.2538280Z info: removing previous version of component rustc +Test UNKNOWN STEP 2026-05-02T06:01:36.2589948Z info: downloading 6 components +Test UNKNOWN STEP 2026-05-02T06:01:46.5023827Z +Test UNKNOWN STEP 2026-05-02T06:01:46.5104098Z stable-x86_64-unknown-linux-gnu updated - rustc 1.95.0 (59807616e 2026-04-14) (from rustc 1.94.1 (e408947bf 2026-03-25)) +Test UNKNOWN STEP 2026-05-02T06:01:46.5105402Z +Test UNKNOWN STEP 2026-05-02T06:01:46.5208065Z ##[group]Run rustup default stable +Test UNKNOWN STEP 2026-05-02T06:01:46.5208397Z rustup default stable +Test UNKNOWN STEP 2026-05-02T06:01:46.5231155Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.5231515Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.5231743Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.5232021Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.5331130Z info: using existing install for stable-x86_64-unknown-linux-gnu +Test UNKNOWN STEP 2026-05-02T06:01:46.5337488Z info: default toolchain set to stable-x86_64-unknown-linux-gnu +Test UNKNOWN STEP 2026-05-02T06:01:46.5338076Z +Test UNKNOWN STEP 2026-05-02T06:01:46.5408335Z stable-x86_64-unknown-linux-gnu unchanged - rustc 1.95.0 (59807616e 2026-04-14) +Test UNKNOWN STEP 2026-05-02T06:01:46.5409066Z +Test UNKNOWN STEP 2026-05-02T06:01:46.5452021Z ##[group]Run : create cachekey +Test UNKNOWN STEP 2026-05-02T06:01:46.5452370Z : create cachekey +Test UNKNOWN STEP 2026-05-02T06:01:46.5452899Z DATE=$(rustc +stable --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p') +Test UNKNOWN STEP 2026-05-02T06:01:46.5453571Z HASH=$(rustc +stable --version --verbose | sed -ne 's/^commit-hash: //p') +Test UNKNOWN STEP 2026-05-02T06:01:46.5454084Z echo "cachekey=$(echo $DATE$HASH | head -c12)" >> $GITHUB_OUTPUT +Test UNKNOWN STEP 2026-05-02T06:01:46.5477528Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.5477894Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.5478107Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.5478373Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.5837280Z ##[group]Run : disable incremental compilation +Test UNKNOWN STEP 2026-05-02T06:01:46.5837681Z : disable incremental compilation +Test UNKNOWN STEP 2026-05-02T06:01:46.5838051Z if [ -z "${CARGO_INCREMENTAL+set}" ]; then +Test UNKNOWN STEP 2026-05-02T06:01:46.5838414Z  echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV +Test UNKNOWN STEP 2026-05-02T06:01:46.5838723Z fi +Test UNKNOWN STEP 2026-05-02T06:01:46.5860880Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.5861267Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.5861504Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.5861764Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.5931005Z ##[group]Run : enable colors in Cargo output +Test UNKNOWN STEP 2026-05-02T06:01:46.5931348Z : enable colors in Cargo output +Test UNKNOWN STEP 2026-05-02T06:01:46.5931719Z if [ -z "${CARGO_TERM_COLOR+set}" ]; then +Test UNKNOWN STEP 2026-05-02T06:01:46.5932071Z  echo CARGO_TERM_COLOR=always >> $GITHUB_ENV +Test UNKNOWN STEP 2026-05-02T06:01:46.5932374Z fi +Test UNKNOWN STEP 2026-05-02T06:01:46.5953070Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.5953418Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.5953632Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.5954436Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:01:46.5954725Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.6051605Z ##[group]Run : enable Cargo sparse registry +Test UNKNOWN STEP 2026-05-02T06:01:46.6051960Z : enable Cargo sparse registry +Test UNKNOWN STEP 2026-05-02T06:01:46.6052509Z # implemented in 1.66, stabilized in 1.68, made default in 1.70 +Test UNKNOWN STEP 2026-05-02T06:01:46.6053223Z if [ -z "${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set}" -o -f "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol ]; then +Test UNKNOWN STEP 2026-05-02T06:01:46.6053962Z  if rustc +stable --version --verbose | grep -q '^release: 1\.6[89]\.'; then +Test UNKNOWN STEP 2026-05-02T06:01:46.6054838Z  touch "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol || true +Test UNKNOWN STEP 2026-05-02T06:01:46.6055386Z  echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV +Test UNKNOWN STEP 2026-05-02T06:01:46.6055893Z  elif rustc +stable --version --verbose | grep -q '^release: 1\.6[67]\.'; then +Test UNKNOWN STEP 2026-05-02T06:01:46.6056490Z  touch "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol || true +Test UNKNOWN STEP 2026-05-02T06:01:46.6057023Z  echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=git >> $GITHUB_ENV +Test UNKNOWN STEP 2026-05-02T06:01:46.6057384Z  fi +Test UNKNOWN STEP 2026-05-02T06:01:46.6057584Z fi +Test UNKNOWN STEP 2026-05-02T06:01:46.6079105Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.6079459Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.6079665Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.6079936Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6080167Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:01:46.6080410Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.6413692Z ##[group]Run : work around spurious network errors in curl 8.0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6414434Z : work around spurious network errors in curl 8.0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6415292Z # https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/timeout.20investigation +Test UNKNOWN STEP 2026-05-02T06:01:46.6415937Z if rustc +stable --version --verbose | grep -q '^release: 1\.7[01]\.'; then +Test UNKNOWN STEP 2026-05-02T06:01:46.6416429Z  echo CARGO_HTTP_MULTIPLEXING=false >> $GITHUB_ENV +Test UNKNOWN STEP 2026-05-02T06:01:46.6416757Z fi +Test UNKNOWN STEP 2026-05-02T06:01:46.6439404Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.6439775Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.6439997Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.6440300Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6440612Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:01:46.6440847Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.6643213Z ##[group]Run rustc +stable --version --verbose +Test UNKNOWN STEP 2026-05-02T06:01:46.6643597Z rustc +stable --version --verbose +Test UNKNOWN STEP 2026-05-02T06:01:46.6666875Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.6667238Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.6667448Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.6667717Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6667945Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:01:46.6668184Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.6827694Z rustc 1.95.0 (59807616e 2026-04-14) +Test UNKNOWN STEP 2026-05-02T06:01:46.6828497Z binary: rustc +Test UNKNOWN STEP 2026-05-02T06:01:46.6829023Z commit-hash: 59807616e1fa2540724bfbac14d7976d7e4a3860 +Test UNKNOWN STEP 2026-05-02T06:01:46.6829637Z commit-date: 2026-04-14 +Test UNKNOWN STEP 2026-05-02T06:01:46.6830147Z host: x86_64-unknown-linux-gnu +Test UNKNOWN STEP 2026-05-02T06:01:46.6830597Z release: 1.95.0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6830975Z LLVM version: 22.1.2 +Test UNKNOWN STEP 2026-05-02T06:01:46.6910776Z ##[group]Run cargo install wasm-pack --version 0.14.0 --locked +Test UNKNOWN STEP 2026-05-02T06:01:46.6911278Z cargo install wasm-pack --version 0.14.0 --locked +Test UNKNOWN STEP 2026-05-02T06:01:46.6935279Z shell: /usr/bin/bash -e {0} +Test UNKNOWN STEP 2026-05-02T06:01:46.6935553Z env: +Test UNKNOWN STEP 2026-05-02T06:01:46.6935774Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:01:46.6936055Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:01:46.6936305Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:01:46.6936539Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:01:46.7230912Z  Updating crates.io index +Test UNKNOWN STEP 2026-05-02T06:01:46.7582666Z  Downloading crates ... +Test UNKNOWN STEP 2026-05-02T06:01:46.7947252Z  Downloaded wasm-pack v0.14.0 +Test UNKNOWN STEP 2026-05-02T06:01:46.8364773Z  Installing wasm-pack v0.14.0 +Test UNKNOWN STEP 2026-05-02T06:01:46.8432327Z  Updating crates.io index +Test UNKNOWN STEP 2026-05-02T06:01:47.3670774Z  Updating crates.io index +Test UNKNOWN STEP 2026-05-02T06:01:47.6279773Z  Downloading crates ... +Test UNKNOWN STEP 2026-05-02T06:01:47.6690792Z  Downloaded itoa v1.0.17 +Test UNKNOWN STEP 2026-05-02T06:01:47.6712193Z  Downloaded is_executable v0.1.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.6728961Z  Downloaded cargo-platform v0.3.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.6745502Z  Downloaded camino v1.2.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.6768640Z  Downloaded block-buffer v0.10.4 +Test UNKNOWN STEP 2026-05-02T06:01:47.6783516Z  Downloaded socks v0.3.4 +Test UNKNOWN STEP 2026-05-02T06:01:47.6802215Z  Downloaded serde v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:01:47.6842902Z  Downloaded zmij v1.0.16 +Test UNKNOWN STEP 2026-05-02T06:01:47.6865992Z  Downloaded cc v1.2.53 +Test UNKNOWN STEP 2026-05-02T06:01:47.6900539Z  Downloaded bzip2 v0.5.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.6922270Z  Downloaded sysinfo v0.37.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7040674Z  Downloaded serde_derive v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:01:47.7078997Z  Downloaded powerfmt v0.2.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7096451Z  Downloaded serde_ignored v0.1.14 +Test UNKNOWN STEP 2026-05-02T06:01:47.7118095Z  Downloaded same-file v1.0.6 +Test UNKNOWN STEP 2026-05-02T06:01:47.7136150Z  Downloaded bzip2-sys v0.1.13+1.0.8 +Test UNKNOWN STEP 2026-05-02T06:01:47.7255856Z  Downloaded scopeguard v1.2.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7277568Z  Downloaded potential_utf v0.1.4 +Test UNKNOWN STEP 2026-05-02T06:01:47.7301145Z  Downloaded num-conv v0.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7319709Z  Downloaded version_check v0.9.5 +Test UNKNOWN STEP 2026-05-02T06:01:47.7342978Z  Downloaded webpki-roots v0.26.11 +Test UNKNOWN STEP 2026-05-02T06:01:47.7363725Z  Downloaded untrusted v0.9.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7392393Z  Downloaded sha1 v0.10.6 +Test UNKNOWN STEP 2026-05-02T06:01:47.7419796Z  Downloaded percent-encoding v2.3.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7437779Z  Downloaded subtle v2.6.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.7455557Z  Downloaded time-core v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:01:47.7474045Z  Downloaded strsim v0.11.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.7493227Z  Downloaded zerofrom v0.1.6 +Test UNKNOWN STEP 2026-05-02T06:01:47.7509792Z  Downloaded siphasher v1.0.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.7526235Z  Downloaded yoke-derive v0.8.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.7540742Z  Downloaded writeable v0.6.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7564053Z  Downloaded unicode-width v0.2.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7622838Z  Downloaded zeroize_derive v1.4.3 +Test UNKNOWN STEP 2026-05-02T06:01:47.7636584Z  Downloaded utf8parse v0.2.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7649476Z  Downloaded icu_properties v2.1.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7674843Z  Downloaded zerofrom-derive v0.1.6 +Test UNKNOWN STEP 2026-05-02T06:01:47.7687568Z  Downloaded yoke v0.8.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.7707361Z  Downloaded utf8_iter v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:01:47.7719957Z  Downloaded zeroize v1.8.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7735085Z  Downloaded which v8.0.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7754582Z  Downloaded zstd-safe v7.2.4 +Test UNKNOWN STEP 2026-05-02T06:01:47.7772025Z  Downloaded xattr v1.6.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.7795138Z  Downloaded zstd v0.13.3 +Test UNKNOWN STEP 2026-05-02T06:01:47.7827090Z  Downloaded tempfile v3.24.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7855006Z  Downloaded zerovec-derive v0.11.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7871615Z  Downloaded toml_parser v1.0.6+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7898693Z  Downloaded toml_datetime v0.7.5+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7914004Z  Downloaded toml v0.9.11+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.7957407Z  Downloaded tinystr v0.8.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.7979537Z  Downloaded rustls-pki-types v1.14.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.8006984Z  Downloaded zopfli v0.8.3 +Test UNKNOWN STEP 2026-05-02T06:01:47.8031999Z  Downloaded zerotrie v0.2.3 +Test UNKNOWN STEP 2026-05-02T06:01:47.8072172Z  Downloaded tar v0.4.44 +Test UNKNOWN STEP 2026-05-02T06:01:47.8100132Z  Downloaded typenum v1.19.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.8129623Z  Downloaded uuid v1.19.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.8160779Z  Downloaded smallvec v1.15.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.8184551Z  Downloaded unicode-ident v1.0.22 +Test UNKNOWN STEP 2026-05-02T06:01:47.8216632Z  Downloaded thiserror-impl v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:01:47.8233659Z  Downloaded thiserror v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:01:47.8300033Z  Downloaded rustls-webpki v0.103.9 +Test UNKNOWN STEP 2026-05-02T06:01:47.8335000Z  Downloaded url v2.5.8 +Test UNKNOWN STEP 2026-05-02T06:01:47.8362300Z  Downloaded hashbrown v0.16.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.8413780Z  Downloaded zip v2.4.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.8456969Z  Downloaded ureq v2.12.1 +Test UNKNOWN STEP 2026-05-02T06:01:47.8510933Z  Downloaded object v0.37.3 +Test UNKNOWN STEP 2026-05-02T06:01:47.8620708Z  Downloaded lzma-sys v0.1.20 +Test UNKNOWN STEP 2026-05-02T06:01:47.8942786Z  Downloaded zerovec v0.11.5 +Test UNKNOWN STEP 2026-05-02T06:01:47.8997851Z  Downloaded serde_json v1.0.149 +Test UNKNOWN STEP 2026-05-02T06:01:47.9072956Z  Downloaded icu_properties_data v2.1.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.9176496Z  Downloaded gimli v0.32.3 +Test UNKNOWN STEP 2026-05-02T06:01:47.9246221Z  Downloaded chrono v0.4.43 +Test UNKNOWN STEP 2026-05-02T06:01:47.9313450Z  Downloaded xz2 v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:01:47.9332428Z  Downloaded toml_writer v1.0.6+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:47.9348157Z  Downloaded synstructure v0.13.2 +Test UNKNOWN STEP 2026-05-02T06:01:47.9360298Z  Downloaded serde_spanned v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:01:47.9373626Z  Downloaded winnow v0.7.14 +Test UNKNOWN STEP 2026-05-02T06:01:47.9470752Z  Downloaded time v0.3.45 +Test UNKNOWN STEP 2026-05-02T06:01:47.9600977Z  Downloaded libc v0.2.180 +Test UNKNOWN STEP 2026-05-02T06:01:47.9988541Z  Downloaded indexmap v2.13.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.0032407Z  Downloaded idna v1.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.0068748Z  Downloaded webpki-roots v1.0.5 +Test UNKNOWN STEP 2026-05-02T06:01:48.0103213Z  Downloaded getrandom v0.2.17 +Test UNKNOWN STEP 2026-05-02T06:01:48.0134527Z  Downloaded rustc-demangle v0.1.27 +Test UNKNOWN STEP 2026-05-02T06:01:48.0153114Z  Downloaded num-traits v0.2.19 +Test UNKNOWN STEP 2026-05-02T06:01:48.0181123Z  Downloaded icu_normalizer_data v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.0203229Z  Downloaded iana-time-zone v0.1.64 +Test UNKNOWN STEP 2026-05-02T06:01:48.0235679Z  Downloaded syn v2.0.114 +Test UNKNOWN STEP 2026-05-02T06:01:48.0340382Z  Downloaded simd-adler32 v0.3.8 +Test UNKNOWN STEP 2026-05-02T06:01:48.0360629Z  Downloaded shlex v1.3.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.0374544Z  Downloaded icu_normalizer v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.0410901Z  Downloaded walkdir v2.5.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.0430083Z  Downloaded rustix v0.38.44 +Test UNKNOWN STEP 2026-05-02T06:01:48.0694137Z  Downloaded memchr v2.7.6 +Test UNKNOWN STEP 2026-05-02T06:01:48.0748577Z  Downloaded rustls v0.23.36 +Test UNKNOWN STEP 2026-05-02T06:01:48.0866535Z  Downloaded icu_provider v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.0892981Z  Downloaded rustix v1.1.3 +Test UNKNOWN STEP 2026-05-02T06:01:48.1162726Z  Downloaded errno v0.3.14 +Test UNKNOWN STEP 2026-05-02T06:01:48.1178684Z  Downloaded bitflags v2.10.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.1220975Z  Downloaded anstream v0.6.21 +Test UNKNOWN STEP 2026-05-02T06:01:48.1241564Z  Downloaded parking_lot_core v0.9.12 +Test UNKNOWN STEP 2026-05-02T06:01:48.1262606Z  Downloaded deranged v0.5.5 +Test UNKNOWN STEP 2026-05-02T06:01:48.1277283Z  Downloaded clap_derive v4.5.49 +Test UNKNOWN STEP 2026-05-02T06:01:48.1298673Z  Downloaded lock_api v0.4.14 +Test UNKNOWN STEP 2026-05-02T06:01:48.1312292Z  Downloaded hmac v0.12.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.1331841Z  Downloaded anstyle-parse v0.2.7 +Test UNKNOWN STEP 2026-05-02T06:01:48.1348812Z  Downloaded idna_adapter v1.2.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.1358953Z  Downloaded equivalent v1.0.2 +Test UNKNOWN STEP 2026-05-02T06:01:48.1369866Z  Downloaded dialoguer v0.12.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.1404367Z  Downloaded path-clean v1.0.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.1416345Z  Downloaded icu_collections v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.1476937Z  Downloaded hex v0.4.3 +Test UNKNOWN STEP 2026-05-02T06:01:48.1494034Z  Downloaded getrandom v0.3.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.1529587Z  Downloaded form_urlencoded v1.2.2 +Test UNKNOWN STEP 2026-05-02T06:01:48.1538719Z  Downloaded flate2 v1.1.8 +Test UNKNOWN STEP 2026-05-02T06:01:48.1588397Z  Downloaded zstd-sys v2.0.16+zstd.1.5.7 +Test UNKNOWN STEP 2026-05-02T06:01:48.1748902Z  Downloaded crc-catalog v2.4.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.1761186Z  Downloaded backtrace v0.3.76 +Test UNKNOWN STEP 2026-05-02T06:01:48.1812031Z  Downloaded parking_lot v0.12.5 +Test UNKNOWN STEP 2026-05-02T06:01:48.1838489Z  Downloaded deflate64 v0.1.10 +Test UNKNOWN STEP 2026-05-02T06:01:48.1852579Z  Downloaded siphasher v0.3.11 +Test UNKNOWN STEP 2026-05-02T06:01:48.1865712Z  Downloaded quote v1.0.43 +Test UNKNOWN STEP 2026-05-02T06:01:48.1892698Z  Downloaded inout v0.1.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.1905119Z  Downloaded icu_locale_core v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.1972302Z  Downloaded fastrand v2.3.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.1985565Z  Downloaded env_filter v0.1.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.1999898Z  Downloaded jobserver v0.1.34 +Test UNKNOWN STEP 2026-05-02T06:01:48.2022639Z  Downloaded glob v0.3.3 +Test UNKNOWN STEP 2026-05-02T06:01:48.2040742Z  Downloaded env_home v0.1.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.2054049Z  Downloaded constant_time_eq v0.3.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.2068326Z  Downloaded once_cell v1.21.3 +Test UNKNOWN STEP 2026-05-02T06:01:48.2103375Z  Downloaded lzma-rs v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.2131147Z  Downloaded generic-array v0.14.7 +Test UNKNOWN STEP 2026-05-02T06:01:48.2146449Z  Downloaded filetime v0.2.27 +Test UNKNOWN STEP 2026-05-02T06:01:48.2165898Z  Downloaded dirs-sys-next v0.1.2 +Test UNKNOWN STEP 2026-05-02T06:01:48.2179437Z  Downloaded clap v4.5.54 +Test UNKNOWN STEP 2026-05-02T06:01:48.2276977Z  Downloaded clap_builder v4.5.54 +Test UNKNOWN STEP 2026-05-02T06:01:48.2339951Z  Downloaded aes v0.8.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.2376510Z  Downloaded pbkdf2 v0.12.2 +Test UNKNOWN STEP 2026-05-02T06:01:48.2390926Z  Downloaded human-panic v2.0.6 +Test UNKNOWN STEP 2026-05-02T06:01:48.2404598Z  Downloaded clap_lex v0.7.7 +Test UNKNOWN STEP 2026-05-02T06:01:48.2417485Z  Downloaded anstyle-query v1.1.5 +Test UNKNOWN STEP 2026-05-02T06:01:48.2433257Z  Downloaded linux-raw-sys v0.4.15 +Test UNKNOWN STEP 2026-05-02T06:01:48.2880020Z  Downloaded adler2 v2.0.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.2893223Z  Downloaded stable_deref_trait v1.2.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.2902786Z  Downloaded shell-words v1.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.2913183Z  Downloaded proc-macro2 v1.0.105 +Test UNKNOWN STEP 2026-05-02T06:01:48.2943713Z  Downloaded miniz_oxide v0.8.9 +Test UNKNOWN STEP 2026-05-02T06:01:48.2968947Z  Downloaded fs4 v0.6.6 +Test UNKNOWN STEP 2026-05-02T06:01:48.2993634Z  Downloaded dirs-next v2.0.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.3008207Z  Downloaded digest v0.10.7 +Test UNKNOWN STEP 2026-05-02T06:01:48.3027617Z  Downloaded autocfg v1.5.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.3047033Z  Downloaded log v0.4.29 +Test UNKNOWN STEP 2026-05-02T06:01:48.3071472Z  Downloaded console v0.16.2 +Test UNKNOWN STEP 2026-05-02T06:01:48.3088803Z  Downloaded colorchoice v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.3099283Z  Downloaded anyhow v1.0.100 +Test UNKNOWN STEP 2026-05-02T06:01:48.3139973Z  Downloaded litemap v0.8.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.3161723Z  Downloaded ring v0.17.14 +Test UNKNOWN STEP 2026-05-02T06:01:48.3572879Z  Downloaded find-msvc-tools v0.1.8 +Test UNKNOWN STEP 2026-05-02T06:01:48.3588932Z  Downloaded env_logger v0.11.8 +Test UNKNOWN STEP 2026-05-02T06:01:48.3613714Z  Downloaded crc32fast v1.5.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.3633033Z  Downloaded anstyle v1.0.13 +Test UNKNOWN STEP 2026-05-02T06:01:48.3648584Z  Downloaded is_terminal_polyfill v1.70.2 +Test UNKNOWN STEP 2026-05-02T06:01:48.3658020Z  Downloaded heck v0.5.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.3671296Z  Downloaded displaydoc v0.2.5 +Test UNKNOWN STEP 2026-05-02T06:01:48.3700969Z  Downloaded crc v3.4.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.3717654Z  Downloaded cpufeatures v0.2.17 +Test UNKNOWN STEP 2026-05-02T06:01:48.3731216Z  Downloaded cfg-if v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.3743936Z  Downloaded pkg-config v0.3.32 +Test UNKNOWN STEP 2026-05-02T06:01:48.3759562Z  Downloaded serde_core v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:01:48.3785818Z  Downloaded semver v1.0.27 +Test UNKNOWN STEP 2026-05-02T06:01:48.3807937Z  Downloaded crypto-common v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:01:48.3817038Z  Downloaded cipher v0.4.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.3831184Z  Downloaded binary-install v0.4.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.3849722Z  Downloaded bumpalo v3.19.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.3874609Z  Downloaded base64 v0.22.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.3911818Z  Downloaded linux-raw-sys v0.11.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.4440372Z  Downloaded byteorder v1.5.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.4455936Z  Downloaded cargo_metadata v0.23.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.4473904Z  Downloaded addr2line v0.25.1 +Test UNKNOWN STEP 2026-05-02T06:01:48.5025785Z  Compiling libc v0.2.180 +Test UNKNOWN STEP 2026-05-02T06:01:48.5026696Z  Compiling proc-macro2 v1.0.105 +Test UNKNOWN STEP 2026-05-02T06:01:48.5027483Z  Compiling unicode-ident v1.0.22 +Test UNKNOWN STEP 2026-05-02T06:01:48.5028133Z  Compiling quote v1.0.43 +Test UNKNOWN STEP 2026-05-02T06:01:48.5572578Z  Compiling shlex v1.3.0 +Test UNKNOWN STEP 2026-05-02T06:01:48.6562349Z  Compiling find-msvc-tools v0.1.8 +Test UNKNOWN STEP 2026-05-02T06:01:48.6723645Z  Compiling cfg-if v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:01:48.6999844Z  Compiling pkg-config v0.3.32 +Test UNKNOWN STEP 2026-05-02T06:01:49.3253128Z  Compiling syn v2.0.114 +Test UNKNOWN STEP 2026-05-02T06:01:49.3696135Z  Compiling serde_core v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:01:49.5166021Z  Compiling stable_deref_trait v1.2.1 +Test UNKNOWN STEP 2026-05-02T06:01:49.5636154Z  Compiling typenum v1.19.0 +Test UNKNOWN STEP 2026-05-02T06:01:49.6608244Z  Compiling jobserver v0.1.34 +Test UNKNOWN STEP 2026-05-02T06:01:49.7455786Z  Compiling version_check v0.9.5 +Test UNKNOWN STEP 2026-05-02T06:01:49.9455978Z  Compiling cc v1.2.53 +Test UNKNOWN STEP 2026-05-02T06:01:49.9711592Z  Compiling generic-array v0.14.7 +Test UNKNOWN STEP 2026-05-02T06:01:51.3215614Z  Compiling memchr v2.7.6 +Test UNKNOWN STEP 2026-05-02T06:01:51.5746564Z  Compiling writeable v0.6.2 +Test UNKNOWN STEP 2026-05-02T06:01:51.7369678Z  Compiling bitflags v2.10.0 +Test UNKNOWN STEP 2026-05-02T06:01:52.0715746Z  Compiling litemap v0.8.1 +Test UNKNOWN STEP 2026-05-02T06:01:52.2145774Z  Compiling crypto-common v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:01:52.2727688Z  Compiling smallvec v1.15.1 +Test UNKNOWN STEP 2026-05-02T06:01:52.4372390Z  Compiling icu_properties_data v2.1.2 +Test UNKNOWN STEP 2026-05-02T06:01:52.4586051Z  Compiling icu_normalizer_data v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:52.5132636Z  Compiling rustix v1.1.3 +Test UNKNOWN STEP 2026-05-02T06:01:52.5316183Z  Compiling getrandom v0.3.4 +Test UNKNOWN STEP 2026-05-02T06:01:52.6062675Z  Compiling subtle v2.6.1 +Test UNKNOWN STEP 2026-05-02T06:01:52.6887132Z  Compiling simd-adler32 v0.3.8 +Test UNKNOWN STEP 2026-05-02T06:01:52.7085696Z  Compiling synstructure v0.13.2 +Test UNKNOWN STEP 2026-05-02T06:01:52.7895793Z  Compiling zstd-sys v2.0.16+zstd.1.5.7 +Test UNKNOWN STEP 2026-05-02T06:01:52.9935513Z  Compiling ring v0.17.14 +Test UNKNOWN STEP 2026-05-02T06:01:53.2256656Z  Compiling log v0.4.29 +Test UNKNOWN STEP 2026-05-02T06:01:53.2302889Z  Compiling linux-raw-sys v0.11.0 +Test UNKNOWN STEP 2026-05-02T06:01:53.3345631Z  Compiling crc32fast v1.5.0 +Test UNKNOWN STEP 2026-05-02T06:01:53.4075630Z  Compiling adler2 v2.0.1 +Test UNKNOWN STEP 2026-05-02T06:01:53.4732419Z  Compiling miniz_oxide v0.8.9 +Test UNKNOWN STEP 2026-05-02T06:01:54.5572178Z  Compiling zerofrom-derive v0.1.6 +Test UNKNOWN STEP 2026-05-02T06:01:55.5358329Z  Compiling yoke-derive v0.8.1 +Test UNKNOWN STEP 2026-05-02T06:01:55.6626914Z  Compiling zerofrom v0.1.6 +Test UNKNOWN STEP 2026-05-02T06:01:55.7415420Z  Compiling zerovec-derive v0.11.2 +Test UNKNOWN STEP 2026-05-02T06:01:56.4095868Z  Compiling yoke v0.8.1 +Test UNKNOWN STEP 2026-05-02T06:01:56.5544033Z  Compiling displaydoc v0.2.5 +Test UNKNOWN STEP 2026-05-02T06:01:56.6138678Z  Compiling zeroize_derive v1.4.3 +Test UNKNOWN STEP 2026-05-02T06:01:56.7156149Z  Compiling zerovec v0.11.5 +Test UNKNOWN STEP 2026-05-02T06:01:57.0275582Z  Compiling zeroize v1.8.2 +Test UNKNOWN STEP 2026-05-02T06:01:57.0355632Z  Compiling zerotrie v0.2.3 +Test UNKNOWN STEP 2026-05-02T06:01:57.1445832Z  Compiling rustls-pki-types v1.14.0 +Test UNKNOWN STEP 2026-05-02T06:01:57.3095789Z  Compiling tinystr v0.8.2 +Test UNKNOWN STEP 2026-05-02T06:01:57.4176109Z  Compiling potential_utf v0.1.4 +Test UNKNOWN STEP 2026-05-02T06:01:57.4459428Z  Compiling icu_locale_core v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:57.5098258Z  Compiling icu_collections v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:58.2943900Z  Compiling icu_provider v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:58.7372995Z  Compiling block-buffer v0.10.4 +Test UNKNOWN STEP 2026-05-02T06:01:58.8150044Z  Compiling serde v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:01:58.9556902Z  Compiling zmij v1.0.16 +Test UNKNOWN STEP 2026-05-02T06:01:59.0735534Z  Compiling once_cell v1.21.3 +Test UNKNOWN STEP 2026-05-02T06:01:59.2728505Z  Compiling digest v0.10.7 +Test UNKNOWN STEP 2026-05-02T06:01:59.4464815Z  Compiling icu_normalizer v2.1.1 +Test UNKNOWN STEP 2026-05-02T06:01:59.8879848Z  Compiling icu_properties v2.1.2 +Test UNKNOWN STEP 2026-05-02T06:02:00.6475672Z  Compiling serde_derive v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:02:01.7281501Z  Compiling lzma-sys v0.1.20 +Test UNKNOWN STEP 2026-05-02T06:02:01.8526704Z  Compiling bzip2-sys v0.1.13+1.0.8 +Test UNKNOWN STEP 2026-05-02T06:02:01.9360004Z  Compiling getrandom v0.2.17 +Test UNKNOWN STEP 2026-05-02T06:02:02.0525751Z  Compiling byteorder v1.5.0 +Test UNKNOWN STEP 2026-05-02T06:02:02.2715590Z  Compiling zstd-safe v7.2.4 +Test UNKNOWN STEP 2026-05-02T06:02:02.3495749Z  Compiling untrusted v0.9.0 +Test UNKNOWN STEP 2026-05-02T06:02:02.4106100Z  Compiling serde_json v1.0.149 +Test UNKNOWN STEP 2026-05-02T06:02:02.4896117Z  Compiling thiserror v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:02:02.6625704Z  Compiling utf8parse v0.2.2 +Test UNKNOWN STEP 2026-05-02T06:02:02.7085872Z  Compiling anstyle-parse v0.2.7 +Test UNKNOWN STEP 2026-05-02T06:02:07.6789717Z  Compiling idna_adapter v1.2.1 +Test UNKNOWN STEP 2026-05-02T06:02:07.9972665Z  Compiling thiserror-impl v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:02:09.0165455Z  Compiling inout v0.1.4 +Test UNKNOWN STEP 2026-05-02T06:02:09.0671023Z  Compiling crc-catalog v2.4.0 +Test UNKNOWN STEP 2026-05-02T06:02:09.0938458Z  Compiling cpufeatures v0.2.17 +Test UNKNOWN STEP 2026-05-02T06:02:09.1164606Z  Compiling utf8_iter v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:02:09.1767988Z  Compiling rustix v0.38.44 +Test UNKNOWN STEP 2026-05-02T06:02:09.3022924Z  Compiling autocfg v1.5.0 +Test UNKNOWN STEP 2026-05-02T06:02:09.5336219Z  Compiling object v0.37.3 +Test UNKNOWN STEP 2026-05-02T06:02:09.6174872Z  Compiling rustls v0.23.36 +Test UNKNOWN STEP 2026-05-02T06:02:09.6823411Z  Compiling powerfmt v0.2.0 +Test UNKNOWN STEP 2026-05-02T06:02:09.8542621Z  Compiling anstyle-query v1.1.5 +Test UNKNOWN STEP 2026-05-02T06:02:09.8830222Z  Compiling colorchoice v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:02:09.9132486Z  Compiling anstyle v1.0.13 +Test UNKNOWN STEP 2026-05-02T06:02:10.0701721Z  Compiling itoa v1.0.17 +Test UNKNOWN STEP 2026-05-02T06:02:10.2133678Z  Compiling is_terminal_polyfill v1.70.2 +Test UNKNOWN STEP 2026-05-02T06:02:10.2392423Z  Compiling percent-encoding v2.3.2 +Test UNKNOWN STEP 2026-05-02T06:02:10.4385591Z  Compiling form_urlencoded v1.2.2 +Test UNKNOWN STEP 2026-05-02T06:02:10.6330812Z  Compiling anstream v0.6.21 +Test UNKNOWN STEP 2026-05-02T06:02:11.0283439Z  Compiling deranged v0.5.5 +Test UNKNOWN STEP 2026-05-02T06:02:12.3280135Z  Compiling num-traits v0.2.19 +Test UNKNOWN STEP 2026-05-02T06:02:12.4196733Z  Compiling idna v1.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:13.6288042Z  Compiling crc v3.4.0 +Test UNKNOWN STEP 2026-05-02T06:02:13.7765627Z  Compiling cipher v0.4.4 +Test UNKNOWN STEP 2026-05-02T06:02:14.0105634Z  Compiling rustls-webpki v0.103.9 +Test UNKNOWN STEP 2026-05-02T06:02:14.7135589Z  Compiling flate2 v1.1.8 +Test UNKNOWN STEP 2026-05-02T06:02:15.2096441Z  Compiling hmac v0.12.1 +Test UNKNOWN STEP 2026-05-02T06:02:15.2959084Z  Compiling webpki-roots v1.0.5 +Test UNKNOWN STEP 2026-05-02T06:02:15.3675534Z  Compiling hashbrown v0.16.1 +Test UNKNOWN STEP 2026-05-02T06:02:15.9632276Z  Compiling camino v1.2.2 +Test UNKNOWN STEP 2026-05-02T06:02:16.0924579Z  Compiling anyhow v1.0.100 +Test UNKNOWN STEP 2026-05-02T06:02:16.2396284Z  Compiling zip v2.4.2 +Test UNKNOWN STEP 2026-05-02T06:02:16.2937164Z  Compiling equivalent v1.0.2 +Test UNKNOWN STEP 2026-05-02T06:02:16.3147068Z  Compiling time-core v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:02:16.3992181Z  Compiling parking_lot_core v0.9.12 +Test UNKNOWN STEP 2026-05-02T06:02:16.4906589Z  Compiling gimli v0.32.3 +Test UNKNOWN STEP 2026-05-02T06:02:16.9625831Z  Compiling winnow v0.7.14 +Test UNKNOWN STEP 2026-05-02T06:02:17.8185909Z  Compiling linux-raw-sys v0.4.15 +Test UNKNOWN STEP 2026-05-02T06:02:18.1095513Z  Compiling bumpalo v3.19.1 +Test UNKNOWN STEP 2026-05-02T06:02:18.3285799Z  Compiling num-conv v0.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:18.4047690Z  Compiling time v0.3.45 +Test UNKNOWN STEP 2026-05-02T06:02:19.0383016Z  Compiling addr2line v0.25.1 +Test UNKNOWN STEP 2026-05-02T06:02:19.0389417Z  Compiling toml_parser v1.0.6+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:19.4495731Z  Compiling zopfli v0.8.3 +Test UNKNOWN STEP 2026-05-02T06:02:20.6036587Z  Compiling xz2 v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:02:20.8359255Z  Compiling indexmap v2.13.0 +Test UNKNOWN STEP 2026-05-02T06:02:21.6535590Z  Compiling webpki-roots v0.26.11 +Test UNKNOWN STEP 2026-05-02T06:02:21.6981585Z  Compiling pbkdf2 v0.12.2 +Test UNKNOWN STEP 2026-05-02T06:02:21.7165816Z  Compiling bzip2 v0.5.2 +Test UNKNOWN STEP 2026-05-02T06:02:21.9575495Z  Compiling aes v0.8.4 +Test UNKNOWN STEP 2026-05-02T06:02:23.4505978Z  Compiling lzma-rs v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:02:23.5586063Z  Compiling url v2.5.8 +Test UNKNOWN STEP 2026-05-02T06:02:26.3313785Z  Compiling sha1 v0.10.6 +Test UNKNOWN STEP 2026-05-02T06:02:26.7345594Z  Compiling socks v0.3.4 +Test UNKNOWN STEP 2026-05-02T06:02:27.1705355Z  Compiling xattr v1.6.1 +Test UNKNOWN STEP 2026-05-02T06:02:27.7788291Z  Compiling toml_datetime v0.7.5+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:28.1555873Z  Compiling serde_spanned v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:02:28.2339344Z  Compiling filetime v0.2.27 +Test UNKNOWN STEP 2026-05-02T06:02:28.3375926Z  Compiling dirs-sys-next v0.1.2 +Test UNKNOWN STEP 2026-05-02T06:02:28.3976447Z  Compiling fastrand v2.3.0 +Test UNKNOWN STEP 2026-05-02T06:02:28.6035584Z  Compiling scopeguard v1.2.0 +Test UNKNOWN STEP 2026-05-02T06:02:28.6475625Z  Compiling toml_writer v1.0.6+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:28.8141247Z  Compiling heck v0.5.0 +Test UNKNOWN STEP 2026-05-02T06:02:28.8438240Z  Compiling clap_lex v0.7.7 +Test UNKNOWN STEP 2026-05-02T06:02:28.9745611Z  Compiling deflate64 v0.1.10 +Test UNKNOWN STEP 2026-05-02T06:02:29.1286340Z  Compiling rustc-demangle v0.1.27 +Test UNKNOWN STEP 2026-05-02T06:02:29.4480334Z  Compiling constant_time_eq v0.3.1 +Test UNKNOWN STEP 2026-05-02T06:02:29.4819251Z  Compiling strsim v0.11.1 +Test UNKNOWN STEP 2026-05-02T06:02:30.1920627Z  Compiling base64 v0.22.1 +Test UNKNOWN STEP 2026-05-02T06:02:30.2052656Z  Compiling unicode-width v0.2.2 +Test UNKNOWN STEP 2026-05-02T06:02:30.3745696Z  Compiling console v0.16.2 +Test UNKNOWN STEP 2026-05-02T06:02:30.6655510Z  Compiling ureq v2.12.1 +Test UNKNOWN STEP 2026-05-02T06:02:31.7395496Z  Compiling clap_builder v4.5.54 +Test UNKNOWN STEP 2026-05-02T06:02:38.8385549Z  Compiling backtrace v0.3.76 +Test UNKNOWN STEP 2026-05-02T06:02:40.0536681Z  Compiling zstd v0.13.3 +Test UNKNOWN STEP 2026-05-02T06:02:44.3005781Z  Compiling clap_derive v4.5.49 +Test UNKNOWN STEP 2026-05-02T06:02:44.3245934Z  Compiling toml v0.9.11+spec-1.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:44.6525941Z  Compiling lock_api v0.4.14 +Test UNKNOWN STEP 2026-05-02T06:02:44.8516339Z  Compiling tempfile v3.24.0 +Test UNKNOWN STEP 2026-05-02T06:02:44.9706136Z  Compiling dirs-next v2.0.0 +Test UNKNOWN STEP 2026-05-02T06:02:45.0523315Z  Compiling tar v0.4.44 +Test UNKNOWN STEP 2026-05-02T06:02:46.6325647Z  Compiling fs4 v0.6.6 +Test UNKNOWN STEP 2026-05-02T06:02:46.9595671Z  Compiling uuid v1.19.0 +Test UNKNOWN STEP 2026-05-02T06:02:47.2915986Z  Compiling env_filter v0.1.4 +Test UNKNOWN STEP 2026-05-02T06:02:47.4172587Z  Compiling cargo-platform v0.3.2 +Test UNKNOWN STEP 2026-05-02T06:02:47.9695684Z  Compiling semver v1.0.27 +Test UNKNOWN STEP 2026-05-02T06:02:48.0146157Z  Compiling sysinfo v0.37.2 +Test UNKNOWN STEP 2026-05-02T06:02:48.0795627Z  Compiling is_executable v0.1.2 +Test UNKNOWN STEP 2026-05-02T06:02:48.1335671Z  Compiling shell-words v1.1.1 +Test UNKNOWN STEP 2026-05-02T06:02:48.3196007Z  Compiling hex v0.4.3 +Test UNKNOWN STEP 2026-05-02T06:02:48.5755971Z  Compiling iana-time-zone v0.1.64 +Test UNKNOWN STEP 2026-05-02T06:02:48.6389613Z  Compiling same-file v1.0.6 +Test UNKNOWN STEP 2026-05-02T06:02:48.7335789Z  Compiling siphasher v0.3.11 +Test UNKNOWN STEP 2026-05-02T06:02:48.8816038Z  Compiling env_home v0.1.0 +Test UNKNOWN STEP 2026-05-02T06:02:48.9305668Z  Compiling which v8.0.0 +Test UNKNOWN STEP 2026-05-02T06:02:49.0185691Z  Compiling binary-install v0.4.1 +Test UNKNOWN STEP 2026-05-02T06:02:49.3246443Z  Compiling walkdir v2.5.0 +Test UNKNOWN STEP 2026-05-02T06:02:49.5935634Z  Compiling chrono v0.4.43 +Test UNKNOWN STEP 2026-05-02T06:02:50.1435929Z  Compiling human-panic v2.0.6 +Test UNKNOWN STEP 2026-05-02T06:02:50.8198677Z  Compiling cargo_metadata v0.23.1 +Test UNKNOWN STEP 2026-05-02T06:02:51.2915609Z  Compiling dialoguer v0.12.0 +Test UNKNOWN STEP 2026-05-02T06:02:52.5956218Z  Compiling env_logger v0.11.8 +Test UNKNOWN STEP 2026-05-02T06:02:53.2126213Z  Compiling parking_lot v0.12.5 +Test UNKNOWN STEP 2026-05-02T06:02:53.2933847Z  Compiling clap v4.5.54 +Test UNKNOWN STEP 2026-05-02T06:02:53.3326399Z  Compiling serde_ignored v0.1.14 +Test UNKNOWN STEP 2026-05-02T06:02:53.5085768Z  Compiling siphasher v1.0.1 +Test UNKNOWN STEP 2026-05-02T06:02:53.6525789Z  Compiling path-clean v1.0.1 +Test UNKNOWN STEP 2026-05-02T06:02:53.7316669Z  Compiling glob v0.3.3 +Test UNKNOWN STEP 2026-05-02T06:02:53.9890553Z  Compiling wasm-pack v0.14.0 +Test UNKNOWN STEP 2026-05-02T06:03:01.0877522Z  Finished `release` profile [optimized] target(s) in 1m 14s +Test UNKNOWN STEP 2026-05-02T06:03:01.1056854Z  Installing /home/runner/.cargo/bin/wasm-pack +Test UNKNOWN STEP 2026-05-02T06:03:01.1069704Z  Installed package `wasm-pack v0.14.0` (executable `wasm-pack`) +Test UNKNOWN STEP 2026-05-02T06:03:01.2055756Z ##[group]Run actions/setup-node@v4 +Test UNKNOWN STEP 2026-05-02T06:03:01.2056017Z with: +Test UNKNOWN STEP 2026-05-02T06:03:01.2056191Z node-version: 20.x +Test UNKNOWN STEP 2026-05-02T06:03:01.2056391Z cache: npm +Test UNKNOWN STEP 2026-05-02T06:03:01.2056567Z always-auth: false +Test UNKNOWN STEP 2026-05-02T06:03:01.2056751Z check-latest: false +Test UNKNOWN STEP 2026-05-02T06:03:01.2057055Z token: *** +Test UNKNOWN STEP 2026-05-02T06:03:01.2057228Z env: +Test UNKNOWN STEP 2026-05-02T06:03:01.2057396Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:03:01.2057626Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:03:01.2057818Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:03:01.2058019Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:01.3911058Z Found in cache @ /opt/hostedtoolcache/node/20.20.2/x64 +Test UNKNOWN STEP 2026-05-02T06:03:01.3918239Z ##[group]Environment details +Test UNKNOWN STEP 2026-05-02T06:03:01.6794540Z node: v20.20.2 +Test UNKNOWN STEP 2026-05-02T06:03:01.6794930Z npm: 10.8.2 +Test UNKNOWN STEP 2026-05-02T06:03:01.6795266Z yarn: 1.22.22 +Test UNKNOWN STEP 2026-05-02T06:03:01.6796058Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:01.6821669Z [command]/opt/hostedtoolcache/node/20.20.2/x64/bin/npm config get cache +Test UNKNOWN STEP 2026-05-02T06:03:01.8633086Z /home/runner/.npm +Test UNKNOWN STEP 2026-05-02T06:03:02.1374573Z npm cache is not found +Test UNKNOWN STEP 2026-05-02T06:03:02.2148442Z ##[group]Run actions/cache@v4 +Test UNKNOWN STEP 2026-05-02T06:03:02.2148692Z with: +Test UNKNOWN STEP 2026-05-02T06:03:02.2148957Z path: ~/.cargo/registry +Test UNKNOWN STEP ~/.cargo/git +Test UNKNOWN STEP target +Test UNKNOWN STEP rust/target +Test UNKNOWN STEP +Test UNKNOWN STEP 2026-05-02T06:03:02.2149437Z key: Linux-wasm-cargo-a5bca161b00440911150f1345a216ce9214fc239f208774f3e6a9f2212452d80 +Test UNKNOWN STEP 2026-05-02T06:03:02.2149876Z restore-keys: Linux-wasm-cargo- +Test UNKNOWN STEP +Test UNKNOWN STEP 2026-05-02T06:03:02.2150125Z enableCrossOsArchive: false +Test UNKNOWN STEP 2026-05-02T06:03:02.2150348Z fail-on-cache-miss: false +Test UNKNOWN STEP 2026-05-02T06:03:02.2150556Z lookup-only: false +Test UNKNOWN STEP 2026-05-02T06:03:02.2150736Z save-always: false +Test UNKNOWN STEP 2026-05-02T06:03:02.2150908Z env: +Test UNKNOWN STEP 2026-05-02T06:03:02.2151066Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:03:02.2151291Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:03:02.2151485Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:03:02.2151676Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:02.6272146Z Cache hit for restore-key: Linux-wasm-cargo-215a3f4c382bd4d7ca34ac40d7e4a4bea743e6142feece078e28238cceeceb8a +Test UNKNOWN STEP 2026-05-02T06:03:03.9264049Z Received 0 of 341387361 (0.0%), 0.0 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:03:04.9279428Z Received 113246208 of 341387361 (33.2%), 53.9 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:03:05.9288590Z Received 230686720 of 341387361 (67.6%), 73.3 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:03:06.7326104Z Received 341387361 of 341387361 (100.0%), 85.5 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:03:06.7328867Z Cache Size: ~326 MB (341387361 B) +Test UNKNOWN STEP 2026-05-02T06:03:06.7439298Z [command]/usr/bin/tar -xf /home/runner/work/_temp/fbb8d08a-6a82-489e-bcda-1d0ec8f79c0d/cache.tzst -P -C /home/runner/work/link-cli/link-cli --use-compress-program unzstd +Test UNKNOWN STEP 2026-05-02T06:03:09.5146672Z Cache restored successfully +Test UNKNOWN STEP 2026-05-02T06:03:09.5376657Z Cache restored from key: Linux-wasm-cargo-215a3f4c382bd4d7ca34ac40d7e4a4bea743e6142feece078e28238cceeceb8a +Test UNKNOWN STEP 2026-05-02T06:03:09.5486487Z ##[group]Run npm ci +Test UNKNOWN STEP 2026-05-02T06:03:09.5486759Z npm ci +Test UNKNOWN STEP 2026-05-02T06:03:09.5621071Z shell: /usr/bin/bash -e {0} +Test UNKNOWN STEP 2026-05-02T06:03:09.5621329Z env: +Test UNKNOWN STEP 2026-05-02T06:03:09.5621510Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:03:09.5621757Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:03:09.5621964Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:03:09.5622165Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:12.9193290Z +Test UNKNOWN STEP 2026-05-02T06:03:12.9194077Z added 23 packages, and audited 24 packages in 3s +Test UNKNOWN STEP 2026-05-02T06:03:12.9194791Z +Test UNKNOWN STEP 2026-05-02T06:03:12.9195135Z 8 packages are looking for funding +Test UNKNOWN STEP 2026-05-02T06:03:12.9195644Z run `npm fund` for details +Test UNKNOWN STEP 2026-05-02T06:03:12.9207566Z +Test UNKNOWN STEP 2026-05-02T06:03:12.9207928Z found 0 vulnerabilities +Test UNKNOWN STEP 2026-05-02T06:03:12.9378309Z ##[group]Run cargo test --manifest-path rust/Cargo.toml --all-features +Test UNKNOWN STEP 2026-05-02T06:03:12.9378818Z cargo test --manifest-path rust/Cargo.toml --all-features +Test UNKNOWN STEP 2026-05-02T06:03:12.9402369Z shell: /usr/bin/bash -e {0} +Test UNKNOWN STEP 2026-05-02T06:03:12.9402605Z env: +Test UNKNOWN STEP 2026-05-02T06:03:12.9402780Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:03:12.9403034Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:03:12.9403242Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:03:12.9403447Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:12.9853939Z  Updating crates.io index +Test UNKNOWN STEP 2026-05-02T06:03:13.0375153Z  Downloading crates ... +Test UNKNOWN STEP 2026-05-02T06:03:13.0897986Z  Downloaded anstream v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:13.0929785Z  Downloaded clap_derive v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:13.0955294Z  Downloaded clap v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:13.1067904Z  Downloaded tempfile v3.27.0 +Test UNKNOWN STEP 2026-05-02T06:03:13.1098577Z  Downloaded quote v1.0.45 +Test UNKNOWN STEP 2026-05-02T06:03:13.1129477Z  Downloaded unicode-ident v1.0.24 +Test UNKNOWN STEP 2026-05-02T06:03:13.1159928Z  Downloaded getrandom v0.4.2 +Test UNKNOWN STEP 2026-05-02T06:03:13.1200576Z  Downloaded proc-macro2 v1.0.106 +Test UNKNOWN STEP 2026-05-02T06:03:13.1231722Z  Downloaded anstyle-parse v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:13.1249871Z  Downloaded once_cell v1.21.4 +Test UNKNOWN STEP 2026-05-02T06:03:13.1288237Z  Downloaded clap_builder v4.6.0 +Test UNKNOWN STEP 2026-05-02T06:03:13.1355119Z  Downloaded syn v2.0.117 +Test UNKNOWN STEP 2026-05-02T06:03:13.1463438Z  Downloaded rustix v1.1.4 +Test UNKNOWN STEP 2026-05-02T06:03:13.1749483Z  Downloaded libc v0.2.186 +Test UNKNOWN STEP 2026-05-02T06:03:13.2185805Z  Downloaded linux-raw-sys v0.12.1 +Test UNKNOWN STEP 2026-05-02T06:03:13.3136073Z  Compiling proc-macro2 v1.0.106 +Test UNKNOWN STEP 2026-05-02T06:03:13.3137042Z  Compiling unicode-ident v1.0.24 +Test UNKNOWN STEP 2026-05-02T06:03:13.3137717Z  Compiling quote v1.0.45 +Test UNKNOWN STEP 2026-05-02T06:03:13.3138350Z  Compiling libc v0.2.186 +Test UNKNOWN STEP 2026-05-02T06:03:13.3727424Z  Compiling getrandom v0.4.2 +Test UNKNOWN STEP 2026-05-02T06:03:13.4709304Z  Compiling rustix v1.1.4 +Test UNKNOWN STEP 2026-05-02T06:03:13.4951933Z  Compiling anstyle-parse v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:13.6015866Z  Compiling anstyle v1.0.14 +Test UNKNOWN STEP 2026-05-02T06:03:13.7433017Z  Compiling linux-raw-sys v0.12.1 +Test UNKNOWN STEP 2026-05-02T06:03:13.7675998Z  Compiling colorchoice v1.0.5 +Test UNKNOWN STEP 2026-05-02T06:03:13.8105768Z  Compiling bitflags v2.11.1 +Test UNKNOWN STEP 2026-05-02T06:03:14.0896222Z  Compiling anstream v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:14.1777233Z  Compiling syn v2.0.117 +Test UNKNOWN STEP 2026-05-02T06:03:14.3628506Z  Compiling fastrand v2.4.1 +Test UNKNOWN STEP 2026-05-02T06:03:14.5237420Z  Compiling once_cell v1.21.4 +Test UNKNOWN STEP 2026-05-02T06:03:14.6385885Z  Compiling clap_lex v1.1.0 +Test UNKNOWN STEP 2026-05-02T06:03:14.6718152Z  Compiling memmap2 v0.9.10 +Test UNKNOWN STEP 2026-05-02T06:03:14.8056535Z  Compiling clap_builder v4.6.0 +Test UNKNOWN STEP 2026-05-02T06:03:14.8406542Z  Compiling anyhow v1.0.102 +Test UNKNOWN STEP 2026-05-02T06:03:15.7094544Z  Compiling tempfile v3.27.0 +Test UNKNOWN STEP 2026-05-02T06:03:17.0255935Z  Compiling thiserror-impl v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:17.0548526Z  Compiling clap_derive v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:17.3485044Z  Compiling serde_derive v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:18.1763174Z  Compiling thiserror v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:18.2156280Z  Compiling thiserror-impl v1.0.69 +Test UNKNOWN STEP 2026-05-02T06:03:18.4286026Z  Compiling platform-data v2.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:18.5626090Z  Compiling platform-mem v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:18.7265918Z  Compiling doublets v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:18.8495703Z  Compiling clap v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:19.0875929Z  Compiling thiserror v1.0.69 +Test UNKNOWN STEP 2026-05-02T06:03:19.5448393Z  Compiling serde v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:19.8531687Z  Compiling lino-arguments v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:19.9462753Z  Compiling link-cli v0.1.0 (/home/runner/work/link-cli/link-cli/rust) +Test UNKNOWN STEP 2026-05-02T06:03:22.3213197Z  Finished `test` profile [unoptimized + debuginfo] target(s) in 9.36s +Test UNKNOWN STEP 2026-05-02T06:03:22.3317129Z  Running unittests src/lib.rs (rust/target/debug/deps/link_cli-d340ce7e6e4e80f5) +Test UNKNOWN STEP 2026-05-02T06:03:22.3328401Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3328593Z running 0 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3328887Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3329523Z test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3330097Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3331554Z  Running unittests src/main.rs (rust/target/debug/deps/clink-8b57485f3e6bc6de) +Test UNKNOWN STEP 2026-05-02T06:03:22.3339948Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3340119Z running 0 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3340401Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3341025Z test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3341516Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3343860Z  Running tests/changes_simplifier_tests.rs (rust/target/debug/deps/changes_simplifier_tests-f35e7109178f8287) +Test UNKNOWN STEP 2026-05-02T06:03:22.3352078Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3352220Z running 9 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3356803Z test test_simplify_chain ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3357366Z test test_simplify_empty ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3357961Z test test_simplify_issue26_update_operation ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3358662Z test test_simplify_issue26_alternative_scenario ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3359342Z test test_simplify_keeps_unchanged_states ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3360075Z test test_simplify_multiple_branches_from_same_initial ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3360704Z test test_simplify_no_op ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3361488Z test test_simplify_specific_example_removes_intermediate_states ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3362263Z test test_simplify_with_unchanged ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3362571Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3363569Z  Running tests/cli_arguments_tests.rs (rust/target/debug/deps/cli_arguments_tests-5690f63b1f5ebd41) +Test UNKNOWN STEP 2026-05-02T06:03:22.3365122Z test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3365711Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3371661Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3371833Z running 5 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3375918Z test parses_csharp_option_aliases_without_direct_clap_dependency ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3376785Z test parses_inline_alias_values_and_boolean_values ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3377577Z test query_option_takes_precedence_over_positional_query ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3378335Z test rejects_extra_positional_queries ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3378938Z test returns_help_and_version_commands ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3379592Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3380190Z test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3380787Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3388865Z  Running tests/cli_named_types_tests.rs (rust/target/debug/deps/cli_named_types_tests-f8e3161a20dbda82) +Test UNKNOWN STEP 2026-05-02T06:03:22.3389618Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3389761Z running 1 test +Test UNKNOWN STEP 2026-05-02T06:03:22.3453849Z test cli_stores_string_aliases_in_separate_names_database ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3454526Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3455099Z test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s +Test UNKNOWN STEP 2026-05-02T06:03:22.3455452Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3456894Z  Running tests/dependency_basis_tests.rs (rust/target/debug/deps/dependency_basis_tests-1921d0e4c0044681) +Test UNKNOWN STEP 2026-05-02T06:03:22.3464954Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3465160Z running 2 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3467740Z test rust_manifest_declares_required_basis_crates ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3468404Z test rust_manifest_uses_lino_arguments_without_direct_clap_dependency ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3468738Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3469215Z test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3469821Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3471064Z  Running tests/link_storage_tests.rs (rust/target/debug/deps/link_storage_tests-4a62457bb635dc13) +Test UNKNOWN STEP 2026-05-02T06:03:22.3479314Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3479440Z running 12 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3484574Z test test_lino_lines_escape_names_that_need_quoting ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3485499Z test test_lino_lines_select_quote_style_for_names_containing_quotes ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3486490Z test test_lino_lines_use_numbered_references_without_names ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3487352Z test test_lino_lines_use_names_for_indexes_sources_and_targets ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3488027Z test test_storage_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3494035Z test test_storage_delete ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3495018Z test test_storage_get_or_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3495581Z test test_storage_named_links ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3496085Z test test_storage_search ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3496545Z test test_storage_update ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3497012Z test test_storage_persistence ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3497714Z test test_write_lino_output_writes_complete_database ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3498126Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3498733Z test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3499319Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3500159Z  Running tests/link_tests.rs (rust/target/debug/deps/link_tests-cf6e058bd79f1c62) +Test UNKNOWN STEP 2026-05-02T06:03:22.3507781Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3507977Z running 5 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3511632Z test test_link_creation ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3512164Z test test_link_is_full_point ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3512629Z test test_link_format ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3513048Z test test_link_is_null ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3513692Z test test_link_round_trips_through_doublets_link ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3514101Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3514967Z test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3515556Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3516506Z  Running tests/lino_link_tests.rs (rust/target/debug/deps/lino_link_tests-e5cad6c0a3a54635) +Test UNKNOWN STEP 2026-05-02T06:03:22.3523578Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3523746Z running 5 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3527851Z test test_lino_link_is_wildcard ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3528439Z test test_lino_link_is_numeric ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3528956Z test test_lino_link_is_variable ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3529429Z test test_lino_link_new ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3529772Z test test_lino_link_with_values ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3529967Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3530322Z test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3530715Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3531844Z  Running tests/named_types_decorator_tests.rs (rust/target/debug/deps/named_types_decorator_tests-6ec4446ce107270b) +Test UNKNOWN STEP 2026-05-02T06:03:22.3540422Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3540601Z running 7 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3557986Z test default_names_database_path_matches_csharp_convention ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3560824Z test decorator_includes_pinned_types_decorator ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3561705Z test decorator_exposes_link_storage_operations_and_named_types ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3568036Z test decorator_can_be_built_from_existing_link_storages ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3569190Z test delete_removes_associated_name_from_names_database ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3579857Z test setting_second_name_replaces_first_name ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3584777Z test reassigning_existing_name_moves_name_to_new_link ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3585035Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3585407Z test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3585740Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3588024Z  Running tests/parser_tests.rs (rust/target/debug/deps/parser_tests-77b3e71c374cfc5a) +Test UNKNOWN STEP 2026-05-02T06:03:22.3597231Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3597525Z running 8 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3601626Z test test_parse_empty ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3602227Z test test_parse_nested_link ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3603456Z test test_parse_link_with_id ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3604987Z test test_parse_links_notation_backtick_unicode_identifier ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3606019Z test test_parse_query_format ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3606529Z test test_parse_simple_link ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3607027Z test test_parse_wildcard ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3607493Z test test_parse_variable ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3607801Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3609223Z  Running tests/pinned_types_decorator_tests.rs (rust/target/debug/deps/pinned_types_decorator_tests-2be8a182e5134711) +Test UNKNOWN STEP 2026-05-02T06:03:22.3610065Z test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3610619Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3617666Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3617804Z running 3 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3622205Z test decorator_rejects_unexpected_link_shape_at_reserved_address ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3623083Z test decorator_exposes_link_storage_operations_and_pinned_types ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3623626Z test decorator_supports_triplet_deconstruction_parity ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3623879Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3625369Z  Running tests/query_processor_csharp_parity_tests.rs (rust/target/debug/deps/query_processor_csharp_parity_tests-e891656cc1b18e2a) +Test UNKNOWN STEP 2026-05-02T06:03:22.3626280Z test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3626621Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3633614Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3633756Z running 13 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3642056Z test test_create_deep_nested_numeric_links_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3651502Z test test_create_explicit_index_after_gap_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3660267Z test test_delete_by_source_target_pattern_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3665472Z test test_delete_by_wildcard_target_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3695296Z test test_delete_all_by_index_wildcard_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3735513Z test test_no_op_variable_query_returns_matched_changes ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3736657Z test test_string_composite_left_child_does_not_create_extra_leaf ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3737806Z test test_swap_all_links_using_variables_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3745868Z test test_delete_by_names_keeps_leaf_names_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3750804Z test test_unwrapped_create_query_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3783496Z test test_unknown_named_restriction_fails_without_auto_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3854388Z test test_named_link_rename_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3861909Z test test_string_aliases_in_variable_restriction_constrain_matches_to_named_links_matches_csharp ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3862940Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3863571Z test result: ok. 13 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s +Test UNKNOWN STEP 2026-05-02T06:03:22.3864153Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3865656Z  Running tests/query_processor_tests.rs (rust/target/debug/deps/query_processor_tests-fcc4222298464831) +Test UNKNOWN STEP 2026-05-02T06:03:22.3876566Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3876753Z running 15 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3892501Z test test_auto_create_missing_numeric_reference_creates_point_link ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3893654Z test test_auto_create_missing_named_references_creates_point_links ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3896193Z test test_deduplicate_duplicate_pair_with_named_links ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3897495Z test test_auto_create_missing_numeric_reference_fills_existing_gap ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3898364Z test test_deduplicate_duplicate_pair_with_numeric_links ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3898968Z test test_deduplicate_triple_duplicate_pair ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3899788Z test test_deduplicate_named_links_multiple_queries ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3900466Z test test_deduplicate_mixed_named_and_numeric ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3902557Z test test_deduplicate_nested_duplicates ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3903373Z test test_deduplicate_with_different_pairs ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3905416Z test test_missing_named_reference_fails_without_auto_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3907749Z test test_future_numeric_references_succeed_without_auto_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3908199Z test test_query_processor_empty ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3908826Z test test_missing_numeric_reference_fails_without_auto_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3909465Z test test_query_processor_create ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3909802Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3910511Z test result: ok. 15 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3911044Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3912682Z  Running tests/unicode_sequence_converter_tests.rs (rust/target/debug/deps/unicode_sequence_converter_tests-dbca84dd88aaca3a) +Test UNKNOWN STEP 2026-05-02T06:03:22.3922267Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3922405Z running 5 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3927302Z test caching_converter_decorator_reuses_cached_values ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3928494Z test raw_number_converters_match_hybrid_external_reference_encoding ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3929279Z test balanced_variant_and_right_sequence_walker_preserve_symbol_order ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3929908Z test target_and_char_symbol_converters_create_and_decode_symbols ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3930600Z test string_and_unicode_sequence_converters_round_trip_utf16_text ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3932380Z  Running tests/unicode_string_storage_tests.rs (rust/target/debug/deps/unicode_string_storage_tests-3c8ce74330d9f074) +Test UNKNOWN STEP 2026-05-02T06:03:22.3932882Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3933334Z test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3933964Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3941348Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3941533Z running 11 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.3949486Z test create_and_retrieve_empty_string ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3962220Z test create_and_retrieve_simple_string ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3962640Z test create_and_retrieve_multiple_strings ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3963090Z test create_and_retrieve_unicode_string_as_utf16_sequence ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3963538Z test create_and_retrieve_user_defined_type ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3963972Z test deleting_non_named_link_does_not_affect_other_names ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3964848Z test name_is_removed_when_external_reference_is_deleted ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3965790Z test name_external_reference_matches_csharp_hybrid_encoding ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3966467Z test name_is_removed_when_link_is_deleted ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3967169Z test named_links_facade_matches_csharp_named_links_role ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3967678Z test pinned_types_are_created_and_named ... ok +Test UNKNOWN STEP 2026-05-02T06:03:22.3967882Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3968236Z test result: ok. 11 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.3968825Z +Test UNKNOWN STEP 2026-05-02T06:03:22.3969966Z  Doc-tests link_cli +Test UNKNOWN STEP 2026-05-02T06:03:22.4426311Z +Test UNKNOWN STEP 2026-05-02T06:03:22.4426758Z running 0 tests +Test UNKNOWN STEP 2026-05-02T06:03:22.4428701Z +Test UNKNOWN STEP 2026-05-02T06:03:22.4429432Z test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:22.4430047Z +Test UNKNOWN STEP 2026-05-02T06:03:22.4513883Z ##[group]Run npm run test:wasm +Test UNKNOWN STEP 2026-05-02T06:03:22.4514431Z npm run test:wasm +Test UNKNOWN STEP 2026-05-02T06:03:22.4535004Z shell: /usr/bin/bash -e {0} +Test UNKNOWN STEP 2026-05-02T06:03:22.4535230Z env: +Test UNKNOWN STEP 2026-05-02T06:03:22.4535409Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:03:22.4535650Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:03:22.4535846Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:03:22.4536046Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:22.5790841Z +Test UNKNOWN STEP 2026-05-02T06:03:22.5791417Z > link-cli-web@2.3.0 test:wasm +Test UNKNOWN STEP 2026-05-02T06:03:22.5792010Z > wasm-pack test --node +Test UNKNOWN STEP 2026-05-02T06:03:22.5792325Z +Test UNKNOWN STEP 2026-05-02T06:03:22.8986090Z [INFO]: 🎯 Checking for the Wasm target... +Test UNKNOWN STEP 2026-05-02T06:03:23.0095194Z  Compiling proc-macro2 v1.0.106 +Test UNKNOWN STEP 2026-05-02T06:03:23.0096195Z  Compiling unicode-ident v1.0.24 +Test UNKNOWN STEP 2026-05-02T06:03:23.0103489Z  Compiling quote v1.0.45 +Test UNKNOWN STEP 2026-05-02T06:03:23.0114072Z  Compiling once_cell v1.21.4 +Test UNKNOWN STEP 2026-05-02T06:03:23.0755026Z  Compiling wasm-bindgen-shared v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:23.1725574Z  Compiling cfg-if v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:03:23.1967585Z  Compiling bumpalo v3.20.2 +Test UNKNOWN STEP 2026-05-02T06:03:23.2635640Z  Compiling serde_core v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:23.3922399Z  Compiling anstyle-parse v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:23.5036318Z  Compiling serde v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:23.5705653Z  Compiling memchr v2.8.0 +Test UNKNOWN STEP 2026-05-02T06:03:23.7215812Z  Compiling anstream v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:24.0278959Z  Compiling zmij v1.0.21 +Test UNKNOWN STEP 2026-05-02T06:03:24.1715794Z  Compiling syn v2.0.117 +Test UNKNOWN STEP 2026-05-02T06:03:24.2056669Z  Compiling tempfile v3.27.0 +Test UNKNOWN STEP 2026-05-02T06:03:24.2249322Z  Compiling clap_builder v4.6.0 +Test UNKNOWN STEP 2026-05-02T06:03:24.5675993Z  Compiling serde_json v1.0.149 +Test UNKNOWN STEP 2026-05-02T06:03:24.9096859Z  Compiling nom v8.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:25.8263130Z  Compiling itoa v1.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:27.5956187Z  Compiling wasm-bindgen-macro-support v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:27.9496078Z  Compiling links-notation v0.13.0 +Test UNKNOWN STEP 2026-05-02T06:03:29.1774805Z  Compiling thiserror-impl v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:29.1775775Z  Compiling serde_derive v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:29.1776709Z  Compiling clap_derive v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:30.9811627Z  Compiling thiserror v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:31.0197381Z  Compiling thiserror-impl v1.0.69 +Test UNKNOWN STEP 2026-05-02T06:03:31.5216211Z  Compiling clap v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:31.5517150Z  Compiling platform-mem v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:31.6953702Z  Compiling platform-data v2.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:31.8196263Z  Compiling doublets v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:32.4372245Z  Compiling wasm-bindgen-test-macro v0.3.70 +Test UNKNOWN STEP 2026-05-02T06:03:32.6038568Z  Compiling wasm-bindgen-macro v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:32.7296277Z  Compiling thiserror v1.0.69 +Test UNKNOWN STEP 2026-05-02T06:03:32.7677043Z  Compiling async-trait v0.1.89 +Test UNKNOWN STEP 2026-05-02T06:03:32.9206255Z  Compiling wasm-bindgen v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:33.6491722Z  Compiling lino-arguments v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:33.7456393Z  Compiling link-cli v0.1.0 (/home/runner/work/link-cli/link-cli/rust) +Test UNKNOWN STEP 2026-05-02T06:03:34.0717768Z  Compiling js-sys v0.3.97 +Test UNKNOWN STEP 2026-05-02T06:03:34.0719978Z  Compiling console_error_panic_hook v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:03:41.1111923Z  Compiling web-sys v0.3.97 +Test UNKNOWN STEP 2026-05-02T06:03:41.1113959Z  Compiling wasm-bindgen-futures v0.4.70 +Test UNKNOWN STEP 2026-05-02T06:03:41.1286309Z  Compiling wasm-bindgen-test v0.3.70 +Test UNKNOWN STEP 2026-05-02T06:03:41.9629218Z  Compiling clink-wasm v2.3.0 (/home/runner/work/link-cli/link-cli) +Test UNKNOWN STEP 2026-05-02T06:03:43.2137836Z  Finished `dev` profile [unoptimized + debuginfo] target(s) in 20.27s +Test UNKNOWN STEP 2026-05-02T06:03:43.2226792Z [INFO]: ⬇️ Installing wasm-bindgen... +Test UNKNOWN STEP 2026-05-02T06:03:43.6481919Z  Finished `test` profile [unoptimized + debuginfo] target(s) in 0.06s +Test UNKNOWN STEP 2026-05-02T06:03:43.6517368Z  Running unittests src/lib.rs (target/wasm32-unknown-unknown/debug/deps/clink_wasm-d036c04135117785.wasm) +Test UNKNOWN STEP 2026-05-02T06:03:43.8355353Z no tests to run! +Test UNKNOWN STEP 2026-05-02T06:03:43.8646092Z  Running tests/web.rs (target/wasm32-unknown-unknown/debug/deps/web-ec97598a412b82e6.wasm) +Test UNKNOWN STEP 2026-05-02T06:03:46.3755397Z running 4 tests +Test UNKNOWN STEP 2026-05-02T06:03:46.3843597Z test reports_invalid_options ... ok +Test UNKNOWN STEP 2026-05-02T06:03:46.3849114Z test exposes_versions ... ok +Test UNKNOWN STEP 2026-05-02T06:03:46.3976348Z test executes_lino_queries_with_the_rust_core ... ok +Test UNKNOWN STEP 2026-05-02T06:03:46.3978708Z test creates_a_clink_instance ... ok +Test UNKNOWN STEP 2026-05-02T06:03:46.3982256Z +Test UNKNOWN STEP 2026-05-02T06:03:46.3983635Z test result: ok. 4 passed; 0 failed; 0 ignored; 0 filtered out; finished in 0.03s +Test UNKNOWN STEP 2026-05-02T06:03:46.3984523Z +Test UNKNOWN STEP 2026-05-02T06:03:46.4051292Z  Doc-tests clink_wasm +Test UNKNOWN STEP 2026-05-02T06:03:46.4418135Z +Test UNKNOWN STEP 2026-05-02T06:03:46.4418922Z running 0 tests +Test UNKNOWN STEP 2026-05-02T06:03:46.4419299Z +Test UNKNOWN STEP 2026-05-02T06:03:46.4420243Z test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s +Test UNKNOWN STEP 2026-05-02T06:03:46.4421154Z +Test UNKNOWN STEP 2026-05-02T06:03:46.4565088Z ##[group]Run npm run build +Test UNKNOWN STEP 2026-05-02T06:03:46.4565375Z npm run build +Test UNKNOWN STEP 2026-05-02T06:03:46.4586275Z shell: /usr/bin/bash -e {0} +Test UNKNOWN STEP 2026-05-02T06:03:46.4586504Z env: +Test UNKNOWN STEP 2026-05-02T06:03:46.4586685Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:03:46.4586931Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:03:46.4587149Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:03:46.4587358Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:03:46.5764659Z +Test UNKNOWN STEP 2026-05-02T06:03:46.5765568Z > link-cli-web@2.3.0 build +Test UNKNOWN STEP 2026-05-02T06:03:46.5766105Z > npm run build:wasm && npm run build:web +Test UNKNOWN STEP 2026-05-02T06:03:46.5766373Z +Test UNKNOWN STEP 2026-05-02T06:03:46.6971972Z +Test UNKNOWN STEP 2026-05-02T06:03:46.6972606Z > link-cli-web@2.3.0 build:wasm +Test UNKNOWN STEP 2026-05-02T06:03:46.6973178Z > wasm-pack build --target web --out-dir web/pkg +Test UNKNOWN STEP 2026-05-02T06:03:46.6973504Z +Test UNKNOWN STEP 2026-05-02T06:03:46.7941532Z [INFO]: 🎯 Checking for the Wasm target... +Test UNKNOWN STEP 2026-05-02T06:03:46.8218981Z [INFO]: 🌀 Compiling to Wasm... +Test UNKNOWN STEP 2026-05-02T06:03:46.8943878Z  Compiling proc-macro2 v1.0.106 +Test UNKNOWN STEP 2026-05-02T06:03:46.8945650Z  Compiling unicode-ident v1.0.24 +Test UNKNOWN STEP 2026-05-02T06:03:46.8946658Z  Compiling quote v1.0.45 +Test UNKNOWN STEP 2026-05-02T06:03:46.8947561Z  Compiling once_cell v1.21.4 +Test UNKNOWN STEP 2026-05-02T06:03:46.9555959Z  Compiling wasm-bindgen-shared v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:47.0283782Z  Compiling serde_core v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:47.0516106Z  Compiling cfg-if v1.0.4 +Test UNKNOWN STEP 2026-05-02T06:03:47.0765904Z  Compiling bumpalo v3.20.2 +Test UNKNOWN STEP 2026-05-02T06:03:47.1096371Z  Compiling anstyle-parse v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:47.2357143Z  Compiling anstream v1.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:47.6566801Z  Compiling serde v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:47.7283035Z  Compiling memchr v2.8.0 +Test UNKNOWN STEP 2026-05-02T06:03:47.8075730Z  Compiling syn v2.0.117 +Test UNKNOWN STEP 2026-05-02T06:03:47.8105525Z  Compiling clap_builder v4.6.0 +Test UNKNOWN STEP 2026-05-02T06:03:48.3045637Z  Compiling tempfile v3.27.0 +Test UNKNOWN STEP 2026-05-02T06:03:48.8521859Z  Compiling zmij v1.0.21 +Test UNKNOWN STEP 2026-05-02T06:03:48.9848709Z  Compiling nom v8.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:49.7267519Z  Compiling serde_json v1.0.149 +Test UNKNOWN STEP 2026-05-02T06:03:50.1084883Z  Compiling itoa v1.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:52.2277840Z  Compiling wasm-bindgen-macro-support v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:52.6769111Z  Compiling links-notation v0.13.0 +Test UNKNOWN STEP 2026-05-02T06:03:52.8305799Z  Compiling thiserror-impl v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:54.0987620Z  Compiling thiserror v2.0.18 +Test UNKNOWN STEP 2026-05-02T06:03:54.1395159Z  Compiling clap_derive v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:54.2545988Z  Compiling serde_derive v1.0.228 +Test UNKNOWN STEP 2026-05-02T06:03:55.7636016Z  Compiling wasm-bindgen-macro v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:55.9235996Z  Compiling thiserror-impl v1.0.69 +Test UNKNOWN STEP 2026-05-02T06:03:55.9538883Z  Compiling wasm-bindgen v0.2.120 +Test UNKNOWN STEP 2026-05-02T06:03:56.8532732Z  Compiling clap v4.6.1 +Test UNKNOWN STEP 2026-05-02T06:03:56.8812776Z  Compiling platform-mem v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:56.9657773Z  Compiling thiserror v1.0.69 +Test UNKNOWN STEP 2026-05-02T06:03:57.0005726Z  Compiling platform-data v2.0.0 +Test UNKNOWN STEP 2026-05-02T06:03:57.1247145Z  Compiling doublets v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:57.2903663Z  Compiling js-sys v0.3.97 +Test UNKNOWN STEP 2026-05-02T06:03:57.5696803Z  Compiling console_error_panic_hook v0.1.7 +Test UNKNOWN STEP 2026-05-02T06:03:57.7494070Z  Compiling lino-arguments v0.3.0 +Test UNKNOWN STEP 2026-05-02T06:03:57.8657946Z  Compiling link-cli v0.1.0 (/home/runner/work/link-cli/link-cli/rust) +Test UNKNOWN STEP 2026-05-02T06:04:04.5057624Z  Compiling web-sys v0.3.97 +Test UNKNOWN STEP 2026-05-02T06:04:05.4160599Z  Compiling clink-wasm v2.3.0 (/home/runner/work/link-cli/link-cli) +Test UNKNOWN STEP 2026-05-02T06:04:06.2027820Z  Finished `release` profile [optimized] target(s) in 19.37s +Test UNKNOWN STEP 2026-05-02T06:04:06.2106823Z [INFO]: ⬇️ Installing wasm-bindgen... +Test UNKNOWN STEP 2026-05-02T06:04:07.4747401Z [INFO]: Optimizing wasm binaries with `wasm-opt`... +Test UNKNOWN STEP 2026-05-02T06:04:10.7729266Z [INFO]: ✨ Done in 23.99s +Test UNKNOWN STEP 2026-05-02T06:04:10.7730287Z [INFO]: 📦 Your wasm pkg is ready to publish at /home/runner/work/link-cli/link-cli/web/pkg. +Test UNKNOWN STEP 2026-05-02T06:04:10.8883628Z +Test UNKNOWN STEP 2026-05-02T06:04:10.8884619Z > link-cli-web@2.3.0 build:web +Test UNKNOWN STEP 2026-05-02T06:04:10.8885314Z > vite build --config web/vite.config.js +Test UNKNOWN STEP 2026-05-02T06:04:10.8885689Z +Test UNKNOWN STEP 2026-05-02T06:04:11.0958025Z vite v8.0.10 building client environment for production... +Test UNKNOWN STEP 2026-05-02T06:04:11.1077728Z  +Test UNKNOWN STEP 2026-05-02T06:04:11.3584976Z transforming...✓ 1736 modules transformed. +Test UNKNOWN STEP 2026-05-02T06:04:11.3859879Z rendering chunks... +Test UNKNOWN STEP 2026-05-02T06:04:11.4241124Z computing gzip size... +Test UNKNOWN STEP 2026-05-02T06:04:11.4318399Z dist/assets/favicon-CIVoLc1m.svg 0.37 kB │ gzip: 0.24 kB +Test UNKNOWN STEP 2026-05-02T06:04:11.4319505Z dist/index.html 0.63 kB │ gzip: 0.38 kB +Test UNKNOWN STEP 2026-05-02T06:04:11.4320544Z dist/assets/doublets_web_bg-cVQpTmMF.wasm 51.41 kB │ gzip: 20.96 kB +Test UNKNOWN STEP 2026-05-02T06:04:11.4321685Z dist/assets/clink_wasm_bg-CdOWT-Uc.wasm 283.33 kB │ gzip: 123.51 kB +Test UNKNOWN STEP 2026-05-02T06:04:11.4322769Z dist/assets/index-D8XZ-J-o.css 5.91 kB │ gzip: 2.07 kB +Test UNKNOWN STEP 2026-05-02T06:04:11.4323868Z dist/assets/index-BBASYPg3.js 220.94 kB │ gzip: 68.67 kB +Test UNKNOWN STEP 2026-05-02T06:04:11.4324647Z +Test UNKNOWN STEP 2026-05-02T06:04:11.4324974Z ✓ built in 335ms +Test UNKNOWN STEP 2026-05-02T06:04:11.4666590Z ##[group]Run actions/upload-artifact@v4 +Test UNKNOWN STEP 2026-05-02T06:04:11.4666869Z with: +Test UNKNOWN STEP 2026-05-02T06:04:11.4667045Z name: link-cli-web +Test UNKNOWN STEP 2026-05-02T06:04:11.4667237Z path: dist/ +Test UNKNOWN STEP 2026-05-02T06:04:11.4667418Z if-no-files-found: warn +Test UNKNOWN STEP 2026-05-02T06:04:11.4667632Z compression-level: 6 +Test UNKNOWN STEP 2026-05-02T06:04:11.4667822Z overwrite: false +Test UNKNOWN STEP 2026-05-02T06:04:11.4668014Z include-hidden-files: false +Test UNKNOWN STEP 2026-05-02T06:04:11.4668222Z env: +Test UNKNOWN STEP 2026-05-02T06:04:11.4668384Z CARGO_HOME: /home/runner/.cargo +Test UNKNOWN STEP 2026-05-02T06:04:11.4668612Z CARGO_INCREMENTAL: 0 +Test UNKNOWN STEP 2026-05-02T06:04:11.4668806Z CARGO_TERM_COLOR: always +Test UNKNOWN STEP 2026-05-02T06:04:11.4669001Z ##[endgroup] +Test UNKNOWN STEP 2026-05-02T06:04:11.6946139Z With the provided path, there will be 6 files uploaded +Test UNKNOWN STEP 2026-05-02T06:04:11.6946980Z Artifact name is valid! +Test UNKNOWN STEP 2026-05-02T06:04:11.6947423Z Root directory input is valid! +Test UNKNOWN STEP 2026-05-02T06:04:12.0007031Z Beginning upload of artifact content to blob storage +Test UNKNOWN STEP 2026-05-02T06:04:12.6762174Z Uploaded bytes 214646 +Test UNKNOWN STEP 2026-05-02T06:04:12.7635175Z Finished uploading artifact content to blob storage! +Test UNKNOWN STEP 2026-05-02T06:04:12.7638148Z SHA256 digest of uploaded artifact zip is 11ff9086b502a5e769855cd16651f03b9f56be5b3130e1056031d76222995151 +Test UNKNOWN STEP 2026-05-02T06:04:12.7639434Z Finalizing artifact upload +Test UNKNOWN STEP 2026-05-02T06:04:12.9480731Z Artifact link-cli-web.zip successfully finalized. Artifact ID 6761095832 +Test UNKNOWN STEP 2026-05-02T06:04:12.9482014Z Artifact link-cli-web has been successfully uploaded! Final size is 214646 bytes. Artifact ID is 6761095832 +Test UNKNOWN STEP 2026-05-02T06:04:12.9486820Z Artifact download URL: https://github.com/link-foundation/link-cli/actions/runs/25245349330/artifacts/6761095832 +Test UNKNOWN STEP 2026-05-02T06:04:13.0202063Z Post job cleanup. +Test UNKNOWN STEP 2026-05-02T06:04:13.1748128Z [command]/usr/bin/tar --posix -cf cache.tzst --exclude cache.tzst -P -C /home/runner/work/link-cli/link-cli --files-from manifest.txt --use-compress-program zstdmt +Test UNKNOWN STEP 2026-05-02T06:04:20.0574087Z Sent 0 of 588770982 (0.0%), 0.0 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:04:21.0580801Z Sent 0 of 588770982 (0.0%), 0.0 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:04:22.0578645Z Sent 536870912 of 588770982 (91.2%), 170.7 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:04:22.2842027Z Sent 588770982 of 588770982 (100.0%), 174.1 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:04:22.4708827Z Cache saved with key: Linux-wasm-cargo-a5bca161b00440911150f1345a216ce9214fc239f208774f3e6a9f2212452d80 +Test UNKNOWN STEP 2026-05-02T06:04:22.4871515Z Post job cleanup. +Test UNKNOWN STEP 2026-05-02T06:04:22.6668087Z [command]/usr/bin/tar --posix -cf cache.tzst --exclude cache.tzst -P -C /home/runner/work/link-cli/link-cli --files-from manifest.txt --use-compress-program zstdmt +Test UNKNOWN STEP 2026-05-02T06:04:23.9656194Z Sent 15597568 of 19427037 (80.3%), 14.9 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:04:24.1645170Z Sent 19427037 of 19427037 (100.0%), 15.4 MBs/sec +Test UNKNOWN STEP 2026-05-02T06:04:24.4531833Z Cache saved with the key: node-cache-Linux-x64-npm-d315d8b9cf81d047cf497bbcc55d1d84ab2bcc1d591d7e669c7aa9738b286549 +Test UNKNOWN STEP 2026-05-02T06:04:24.4652341Z Post job cleanup. +Test UNKNOWN STEP 2026-05-02T06:04:24.5662482Z [command]/usr/bin/git version +Test UNKNOWN STEP 2026-05-02T06:04:24.5700546Z git version 2.53.0 +Test UNKNOWN STEP 2026-05-02T06:04:24.5746812Z Temporarily overriding HOME='/home/runner/work/_temp/6b0cba42-ecef-4698-9c93-cef392d95ed9' before making global git config changes +Test UNKNOWN STEP 2026-05-02T06:04:24.5748390Z Adding repository directory to the temporary git global config as a safe directory +Test UNKNOWN STEP 2026-05-02T06:04:24.5760833Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/link-cli/link-cli +Test UNKNOWN STEP 2026-05-02T06:04:24.5795908Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +Test UNKNOWN STEP 2026-05-02T06:04:24.5829094Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +Test UNKNOWN STEP 2026-05-02T06:04:24.6048483Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +Test UNKNOWN STEP 2026-05-02T06:04:24.6068954Z http.https://github.com/.extraheader +Test UNKNOWN STEP 2026-05-02T06:04:24.6081965Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +Test UNKNOWN STEP 2026-05-02T06:04:24.6113591Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +Test UNKNOWN STEP 2026-05-02T06:04:24.6331021Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir: +Test UNKNOWN STEP 2026-05-02T06:04:24.6360815Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url +Test UNKNOWN STEP 2026-05-02T06:04:24.6695389Z Cleaning up orphan processes +Test UNKNOWN STEP 2026-05-02T06:04:24.7049631Z ##[warning]Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@v4, actions/checkout@v4, actions/setup-node@v4, actions/upload-artifact@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7482347Z Current runner version: '2.334.0' +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7505792Z ##[group]Runner Image Provisioner +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7506545Z Hosted Compute Agent +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7507014Z Version: 20260213.493 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7507507Z Commit: 5c115507f6dd24b8de37d8bbe0bb4509d0cc0fa3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7508194Z Build Date: 2026-02-13T00:28:41Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7508798Z Worker ID: {88e212a4-eb60-4984-98c6-63a6848f2ff7} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7509364Z Azure Region: westus3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7509867Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7511462Z ##[group]Operating System +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7511989Z Ubuntu +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7512403Z 24.04.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7512894Z LTS +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7513264Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7513988Z ##[group]Runner Image +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7514499Z Image: ubuntu-24.04 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7514916Z Version: 20260413.86.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7516108Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20260413.86/images/ubuntu/Ubuntu2404-Readme.md +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7517393Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20260413.86 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7518163Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7519110Z ##[group]GITHUB_TOKEN Permissions +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7521085Z Contents: read +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7521623Z Metadata: read +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7522025Z Pages: write +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7522434Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7524389Z Secret source: Actions +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7525314Z Prepare workflow directory +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7841944Z Prepare all required actions +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:30.7881833Z Getting action download info +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:31.3165843Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:31.4281755Z Download action repository 'dtolnay/rust-toolchain@stable' (SHA:29eef336d9b2848a0b548edc03f92a220660cdb8) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:31.6783102Z Download action repository 'actions/setup-node@v4' (SHA:49933ea5288caeca8642d1e84afbd3f7d6820020) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:31.7472074Z Download action repository 'actions/configure-pages@v5' (SHA:983d7736d9b0ae728b81ab479565c72886d7745b) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:32.4024419Z Download action repository 'actions/upload-pages-artifact@v3' (SHA:56afc609e74202658d3ffba0e8f6dda462b719fa) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:32.6472682Z Download action repository 'actions/deploy-pages@v4' (SHA:d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:33.9302782Z Getting action download info +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.0849968Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2071901Z Complete job name: Deploy GitHub Pages +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2685901Z ##[group]Run actions/checkout@v4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2686437Z with: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2686650Z repository: link-foundation/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2687140Z token: *** +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2687324Z ssh-strict: true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2687517Z ssh-user: git +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2687717Z persist-credentials: true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2687940Z clean: true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2688193Z sparse-checkout-cone-mode: true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2688424Z fetch-depth: 1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2688607Z fetch-tags: false +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2688789Z show-progress: true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2688986Z lfs: false +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2689149Z submodules: false +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2689342Z set-safe-directory: true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.2689692Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3759794Z Syncing repository: link-foundation/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3761198Z ##[group]Getting Git version info +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3761569Z Working directory is '/home/runner/work/link-cli/link-cli' +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3762224Z [command]/usr/bin/git version +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3785678Z git version 2.53.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3808339Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3821660Z Temporarily overriding HOME='/home/runner/work/_temp/322a13ba-6e3d-4241-8463-5c8f169d463a' before making global git config changes +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3822622Z Adding repository directory to the temporary git global config as a safe directory +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3826701Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/link-cli/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3853430Z Deleting the contents of '/home/runner/work/link-cli/link-cli' +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3856631Z ##[group]Initializing the repository +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3860520Z [command]/usr/bin/git init /home/runner/work/link-cli/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3945765Z hint: Using 'master' as the name for the initial branch. This default branch name +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3946476Z hint: will change to "main" in Git 3.0. To configure the initial branch name +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3946990Z hint: to use in all of your new repositories, which will suppress this warning, +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3947357Z hint: call: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3947525Z hint: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3947797Z hint: git config --global init.defaultBranch +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3948067Z hint: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3948382Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3948870Z hint: 'development'. The just-created branch can be renamed via this command: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3949205Z hint: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3949402Z hint: git branch -m +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3949601Z hint: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3949919Z hint: Disable this message with "git config set advice.defaultBranchName false" +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3950540Z Initialized empty Git repository in /home/runner/work/link-cli/link-cli/.git/ +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3959645Z [command]/usr/bin/git remote add origin https://github.com/link-foundation/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3985817Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3986503Z ##[group]Disabling automatic garbage collection +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.3990998Z [command]/usr/bin/git config --local gc.auto 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4014433Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4014990Z ##[group]Setting up auth +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4022154Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4047213Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4299100Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4325814Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4492297Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4517016Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4689431Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4717860Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4718592Z ##[group]Fetching the repository +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:34.4727810Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +26050750382b801a4d9f33d1445627e2db2b7867:refs/remotes/origin/main +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1619766Z From https://github.com/link-foundation/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1620303Z * [new ref] 26050750382b801a4d9f33d1445627e2db2b7867 -> origin/main +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1641817Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1642379Z ##[group]Determining the checkout info +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1643626Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1648637Z [command]/usr/bin/git sparse-checkout disable +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1678697Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1698664Z ##[group]Checking out the ref +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1702757Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1804261Z Switched to a new branch 'main' +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1805009Z branch 'main' set up to track 'origin/main'. +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1811095Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1841889Z [command]/usr/bin/git log -1 --format=%H +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.1859523Z 26050750382b801a4d9f33d1445627e2db2b7867 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2157666Z ##[group]Run dtolnay/rust-toolchain@stable +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2157969Z with: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2158157Z targets: wasm32-unknown-unknown +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2158402Z toolchain: stable +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2158628Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2279124Z ##[group]Run : parse toolchain version +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2279553Z : parse toolchain version +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2279853Z if [[ -z $toolchain ]]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2280424Z  # GitHub does not enforce `required: true` inputs itself. https://github.com/actions/runner/issues/1070 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2281019Z  echo "'toolchain' is a required input" >&2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2281280Z  exit 1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2281589Z elif [[ $toolchain =~ ^stable' '[0-9]+' '(year|month|week|day)s?' 'ago$ ]]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2281998Z  if [[ Linux == macOS ]]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2282532Z  echo "toolchain=1.$((($(date -v-$(sed 's/stable \([0-9]*\) \(.\).*/\1\2/' <<< $toolchain) +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2282988Z  else +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2283349Z  echo "toolchain=1.$((($(date --date "${toolchain#stable }" +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2283754Z  fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2284012Z elif [[ $toolchain =~ ^stable' 'minus' '[0-9]+' 'releases?$ ]]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2284491Z  echo "toolchain=1.$((($(date +%s)/60/60/24-16569)/7/6-${toolchain//[^0-9]/}))" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2284900Z elif [[ $toolchain =~ ^1\.[0-9]+$ ]]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2285583Z  echo "toolchain=1.$((i=${toolchain#1.}, c=($(date +%s)/60/60/24-16569)/7/6, i+9*i*(10*i<=c)+90*i*(100*i<=c)))" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2286035Z else +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2286251Z  echo "toolchain=$toolchain" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2286511Z fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2302990Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2303309Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2303487Z toolchain: stable +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2303672Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2426899Z ##[group]Run : construct rustup command line +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2427237Z : construct rustup command line +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2427653Z echo "targets=$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2428244Z echo "components=$(for c in ${components//,/ }; do echo -n ' --component' $c; done)" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2428684Z echo "downgrade=" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2441308Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2441649Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2441865Z targets: wasm32-unknown-unknown +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2442102Z components: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2442285Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2507297Z ##[group]Run : set $CARGO_HOME +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2507573Z : set $CARGO_HOME +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2507863Z echo CARGO_HOME=${CARGO_HOME:-"$HOME/.cargo"} >> $GITHUB_ENV +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2520200Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2520520Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2585673Z ##[group]Run : install rustup if needed +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2585985Z : install rustup if needed +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2586262Z if ! command -v rustup &>/dev/null; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2586952Z  curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail https://sh.rustup.rs | sh -s -- --default-toolchain none -y +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2587614Z  echo "$CARGO_HOME/bin" >> $GITHUB_PATH +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2587977Z fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2599456Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2599760Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2600172Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2600404Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2660600Z ##[group]Run rustup toolchain install stable --target wasm32-unknown-unknown --profile minimal --no-self-update +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2661359Z rustup toolchain install stable --target wasm32-unknown-unknown --profile minimal --no-self-update +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2673167Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2673547Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2673776Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2674122Z RUSTUP_PERMIT_COPY_RENAME: 1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.2674415Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.4101023Z info: syncing channel updates for stable-x86_64-unknown-linux-gnu +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6003304Z info: latest update on 2026-04-16 for version 1.95.0 (59807616e 2026-04-14) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6136797Z info: removing previous version of component clippy +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6153976Z info: removing previous version of component rustfmt +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6165679Z info: removing previous version of component cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6202177Z info: removing previous version of component rust-std +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6231979Z info: removing previous version of component rustc +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:35.6272506Z info: downloading 6 components +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4639343Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4713372Z stable-x86_64-unknown-linux-gnu updated - rustc 1.95.0 (59807616e 2026-04-14) (from rustc 1.94.1 (e408947bf 2026-03-25)) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4714035Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4776401Z ##[group]Run rustup default stable +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4776744Z rustup default stable +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4789731Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4790108Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4790408Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4790718Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4871046Z info: using existing install for stable-x86_64-unknown-linux-gnu +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4880547Z info: default toolchain set to stable-x86_64-unknown-linux-gnu +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4881055Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4945404Z stable-x86_64-unknown-linux-gnu unchanged - rustc 1.95.0 (59807616e 2026-04-14) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4946233Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4976981Z ##[group]Run : create cachekey +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4977408Z : create cachekey +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4977940Z DATE=$(rustc +stable --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p') +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4978640Z HASH=$(rustc +stable --version --verbose | sed -ne 's/^commit-hash: //p') +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4979150Z echo "cachekey=$(echo $DATE$HASH | head -c12)" >> $GITHUB_OUTPUT +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4991795Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4992220Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4992447Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.4992773Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5300492Z ##[group]Run : disable incremental compilation +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5300848Z : disable incremental compilation +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5301155Z if [ -z "${CARGO_INCREMENTAL+set}" ]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5301464Z  echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5301728Z fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5314261Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5314615Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5314835Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5315062Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5362405Z ##[group]Run : enable colors in Cargo output +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5362738Z : enable colors in Cargo output +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5363062Z if [ -z "${CARGO_TERM_COLOR+set}" ]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5363363Z  echo CARGO_TERM_COLOR=always >> $GITHUB_ENV +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5363629Z fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5375778Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5376090Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5376276Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5376636Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5376841Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5427634Z ##[group]Run : enable Cargo sparse registry +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5427973Z : enable Cargo sparse registry +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5428322Z # implemented in 1.66, stabilized in 1.68, made default in 1.70 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5428976Z if [ -z "${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set}" -o -f "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol ]; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5429652Z  if rustc +stable --version --verbose | grep -q '^release: 1\.6[89]\.'; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5430172Z  touch "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol || true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5430664Z  echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5431134Z  elif rustc +stable --version --verbose | grep -q '^release: 1\.6[67]\.'; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5431664Z  touch "/home/runner/work/_temp"/.implicit_cargo_registries_crates_io_protocol || true +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5432131Z  echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=git >> $GITHUB_ENV +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5432444Z  fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5432604Z fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5443968Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5444276Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5444463Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5444696Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5444900Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5445280Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5726906Z ##[group]Run : work around spurious network errors in curl 8.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5727331Z : work around spurious network errors in curl 8.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5727841Z # https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/timeout.20investigation +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5728436Z if rustc +stable --version --verbose | grep -q '^release: 1\.7[01]\.'; then +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5728991Z  echo CARGO_HTTP_MULTIPLEXING=false >> $GITHUB_ENV +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5729467Z fi +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5742490Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5742818Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5743053Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5743289Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5743489Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5743743Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5907293Z ##[group]Run rustc +stable --version --verbose +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5907635Z rustc +stable --version --verbose +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5919910Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5920233Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5920416Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5920671Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5920867Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.5921069Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6052138Z rustc 1.95.0 (59807616e 2026-04-14) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6052835Z binary: rustc +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6053338Z commit-hash: 59807616e1fa2540724bfbac14d7976d7e4a3860 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6053873Z commit-date: 2026-04-14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6054291Z host: x86_64-unknown-linux-gnu +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6054690Z release: 1.95.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6055324Z LLVM version: 22.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6119632Z ##[group]Run cargo install wasm-pack --version 0.14.0 --locked +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6120042Z cargo install wasm-pack --version 0.14.0 --locked +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6132814Z shell: /usr/bin/bash -e {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6133045Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6133231Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6133472Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6133672Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6133879Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.6379290Z  Updating crates.io index +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.7778079Z  Downloading crates ... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.9162185Z  Downloaded wasm-pack v0.14.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.9687251Z  Installing wasm-pack v0.14.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:46.9728486Z  Updating crates.io index +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:47.6762951Z  Updating crates.io index +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:47.9106045Z  Downloading crates ... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:47.9920729Z  Downloaded anstyle-query v1.1.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0106803Z  Downloaded adler2 v2.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0119250Z  Downloaded autocfg v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0134941Z  Downloaded anstream v0.6.21 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0152003Z  Downloaded colorchoice v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0206756Z  Downloaded cargo-platform v0.3.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0230337Z  Downloaded anstyle v1.0.13 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0243826Z  Downloaded potential_utf v0.1.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0253273Z  Downloaded anstyle-parse v0.2.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0273137Z  Downloaded powerfmt v0.2.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0285561Z  Downloaded cargo_metadata v0.23.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0300616Z  Downloaded clap_lex v0.7.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0330096Z  Downloaded block-buffer v0.10.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0357630Z  Downloaded rustc-demangle v0.1.27 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0382474Z  Downloaded cfg-if v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0417327Z  Downloaded pkg-config v0.3.32 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0433766Z  Downloaded quote v1.0.43 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0456924Z  Downloaded byteorder v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0468906Z  Downloaded constant_time_eq v0.3.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0481875Z  Downloaded num-conv v0.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0494204Z  Downloaded env_filter v0.1.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0506138Z  Downloaded cpufeatures v0.2.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0517565Z  Downloaded proc-macro2 v1.0.105 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0543969Z  Downloaded fastrand v2.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0555755Z  Downloaded cipher v0.4.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0567338Z  Downloaded anyhow v1.0.100 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0599837Z  Downloaded is_terminal_polyfill v1.70.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0608670Z  Downloaded is_executable v0.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0617865Z  Downloaded env_home v0.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0627854Z  Downloaded generic-array v0.14.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0638870Z  Downloaded errno v0.3.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0653481Z  Downloaded itoa v1.0.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0665456Z  Downloaded equivalent v1.0.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0673357Z  Downloaded bitflags v2.10.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0700424Z  Downloaded crypto-common v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0708781Z  Downloaded camino v1.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0731055Z  Downloaded glob v0.3.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0744805Z  Downloaded percent-encoding v2.3.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0753738Z  Downloaded zerofrom-derive v0.1.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0762389Z  Downloaded siphasher v1.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0771463Z  Downloaded hex v0.4.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0784954Z  Downloaded subtle v2.6.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0799146Z  Downloaded siphasher v0.3.11 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0812229Z  Downloaded version_check v0.9.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0825403Z  Downloaded pbkdf2 v0.12.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0837249Z  Downloaded zeroize_derive v1.4.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0846305Z  Downloaded jobserver v0.1.34 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0861331Z  Downloaded utf8_iter v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0869269Z  Downloaded time-core v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0880443Z  Downloaded yoke v0.8.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0897025Z  Downloaded scopeguard v1.2.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0907314Z  Downloaded path-clean v1.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0918892Z  Downloaded xattr v1.6.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0934473Z  Downloaded once_cell v1.21.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0952010Z  Downloaded parking_lot v0.12.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0970417Z  Downloaded yoke-derive v0.8.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0986176Z  Downloaded zmij v1.0.16 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.0995789Z  Downloaded xz2 v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1012728Z  Downloaded zstd-safe v7.2.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1028988Z  Downloaded walkdir v2.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1045014Z  Downloaded toml_writer v1.0.6+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1057549Z  Downloaded zerovec-derive v0.11.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1070775Z  Downloaded unicode-ident v1.0.22 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1091304Z  Downloaded toml_parser v1.0.6+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1112504Z  Downloaded simd-adler32 v0.3.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1127533Z  Downloaded backtrace v0.3.76 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1167584Z  Downloaded zstd v0.13.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1191246Z  Downloaded zerotrie v0.2.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1220868Z  Downloaded url v2.5.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1244117Z  Downloaded rustls-webpki v0.103.9 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1272305Z  Downloaded zip v2.4.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1305507Z  Downloaded zerovec v0.11.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1343664Z  Downloaded ureq v2.12.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1384618Z  Downloaded winnow v0.7.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1445491Z  Downloaded sysinfo v0.37.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1513822Z  Downloaded time v0.3.45 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1588586Z  Downloaded webpki-roots v1.0.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1618135Z  Downloaded object v0.37.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1689012Z  Downloaded rustix v1.1.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1838381Z  Downloaded gimli v0.32.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1888782Z  Downloaded unicode-width v0.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.1932523Z  Downloaded rustix v0.38.44 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2071782Z  Downloaded rustls v0.23.36 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2146790Z  Downloaded syn v2.0.114 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2214457Z  Downloaded serde_json v1.0.149 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2263161Z  Downloaded chrono v0.4.43 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2310093Z  Downloaded icu_properties_data v2.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2372230Z  Downloaded typenum v1.19.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2391223Z  Downloaded serde v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2415708Z  Downloaded idna v1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2442117Z  Downloaded serde_core v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2460430Z  Downloaded hashbrown v0.16.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2497958Z  Downloaded clap_builder v4.5.54 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2540722Z  Downloaded bzip2-sys v0.1.13+1.0.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2622769Z  Downloaded zopfli v0.8.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2639104Z  Downloaded uuid v1.19.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2661532Z  Downloaded toml v0.9.11+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2687988Z  Downloaded tempfile v3.24.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2705348Z  Downloaded tar v0.4.44 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2723855Z  Downloaded serde_derive v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2745056Z  Downloaded indexmap v2.13.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2773989Z  Downloaded lzma-sys v0.1.20 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.2957389Z  Downloaded libc v0.2.180 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3167876Z  Downloaded memchr v2.7.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3200203Z  Downloaded bumpalo v3.19.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3219265Z  Downloaded base64 v0.22.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3244281Z  Downloaded zstd-sys v2.0.16+zstd.1.5.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3356706Z  Downloaded smallvec v1.15.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3370847Z  Downloaded rustls-pki-types v1.14.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3387847Z  Downloaded miniz_oxide v0.8.9 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3406645Z  Downloaded toml_datetime v0.7.5+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3417192Z  Downloaded zeroize v1.8.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3426879Z  Downloaded aes v0.8.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3448969Z  Downloaded icu_properties v2.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3464961Z  Downloaded icu_normalizer v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3487743Z  Downloaded icu_locale_core v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3530044Z  Downloaded icu_collections v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3567774Z  Downloaded getrandom v0.3.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3589635Z  Downloaded flate2 v1.1.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3624478Z  Downloaded cc v1.2.53 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3645363Z  Downloaded log v0.4.29 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3661544Z  Downloaded icu_normalizer_data v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3676987Z  Downloaded zerofrom v0.1.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3683135Z  Downloaded which v8.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3695892Z  Downloaded thiserror-impl v2.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3706031Z  Downloaded synstructure v0.13.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3713958Z  Downloaded num-traits v0.2.19 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3732038Z  Downloaded icu_provider v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3750347Z  Downloaded getrandom v0.2.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3769656Z  Downloaded writeable v0.6.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3782168Z  Downloaded tinystr v0.8.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3795770Z  Downloaded thiserror v2.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3829883Z  Downloaded semver v1.0.27 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3845818Z  Downloaded webpki-roots v0.26.11 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3855689Z  Downloaded utf8parse v0.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3862988Z  Downloaded untrusted v0.9.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3873515Z  Downloaded shlex v1.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.3882912Z  Downloaded ring v0.17.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4154043Z  Downloaded parking_lot_core v0.9.12 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4167003Z  Downloaded litemap v0.8.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4182069Z  Downloaded iana-time-zone v0.1.64 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4198966Z  Downloaded shell-words v1.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4205417Z  Downloaded serde_spanned v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4214334Z  Downloaded serde_ignored v0.1.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4222850Z  Downloaded displaydoc v0.2.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4240864Z  Downloaded deflate64 v0.1.10 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4249825Z  Downloaded crc32fast v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4264615Z  Downloaded strsim v0.11.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4273019Z  Downloaded stable_deref_trait v1.2.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4279613Z  Downloaded socks v0.3.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4287918Z  Downloaded sha1 v0.10.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4297861Z  Downloaded fs4 v0.6.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4312048Z  Downloaded filetime v0.2.27 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4322399Z  Downloaded env_logger v0.11.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4339522Z  Downloaded binary-install v0.4.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4351649Z  Downloaded hmac v0.12.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4364131Z  Downloaded clap_derive v4.5.49 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4378266Z  Downloaded bzip2 v0.5.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4390381Z  Downloaded human-panic v2.0.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4399476Z  Downloaded dialoguer v0.12.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4419330Z  Downloaded lzma-rs v0.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4435821Z  Downloaded lock_api v0.4.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4445380Z  Downloaded digest v0.10.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4456398Z  Downloaded inout v0.1.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4463830Z  Downloaded idna_adapter v1.2.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4470311Z  Downloaded form_urlencoded v1.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4484738Z  Downloaded same-file v1.0.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4493204Z  Downloaded heck v0.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4501251Z  Downloaded dirs-next v2.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4508606Z  Downloaded linux-raw-sys v0.4.15 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4815424Z  Downloaded find-msvc-tools v0.1.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4825880Z  Downloaded deranged v0.5.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4836652Z  Downloaded clap v4.5.54 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4887422Z  Downloaded addr2line v0.25.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4900177Z  Downloaded dirs-sys-next v0.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4907270Z  Downloaded crc-catalog v2.4.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4914591Z  Downloaded crc v3.4.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4924667Z  Downloaded console v0.16.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.4941670Z  Downloaded linux-raw-sys v0.11.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.5734774Z  Compiling libc v0.2.180 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.5735670Z  Compiling proc-macro2 v1.0.105 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.5736320Z  Compiling quote v1.0.43 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.5737292Z  Compiling unicode-ident v1.0.22 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.6366465Z  Compiling shlex v1.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.7125929Z  Compiling find-msvc-tools v0.1.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.7421793Z  Compiling cfg-if v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:48.7706181Z  Compiling pkg-config v0.3.32 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.3107110Z  Compiling syn v2.0.114 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.3539799Z  Compiling serde_core v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.4876324Z  Compiling stable_deref_trait v1.2.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.5236472Z  Compiling version_check v0.9.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.6065438Z  Compiling jobserver v0.1.34 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.7186329Z  Compiling typenum v1.19.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.7516482Z  Compiling generic-array v0.14.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:49.8066673Z  Compiling cc v1.2.53 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.0236474Z  Compiling writeable v0.6.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.1857346Z  Compiling bitflags v2.10.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.2137442Z  Compiling memchr v2.7.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.5116590Z  Compiling litemap v0.8.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.6506932Z  Compiling crypto-common v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.7237707Z  Compiling rustix v1.1.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:51.9166846Z  Compiling subtle v2.6.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.0046789Z  Compiling smallvec v1.15.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.1946967Z  Compiling icu_normalizer_data v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.2007708Z  Compiling icu_properties_data v2.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.2589781Z  Compiling simd-adler32 v0.3.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.2626637Z  Compiling getrandom v0.3.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.4137109Z  Compiling synstructure v0.13.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.5486426Z  Compiling ring v0.17.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.7692921Z  Compiling zstd-sys v2.0.16+zstd.1.5.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.8486520Z  Compiling linux-raw-sys v0.11.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.8797143Z  Compiling log v0.4.29 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:52.9486746Z  Compiling adler2 v2.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:53.0326485Z  Compiling crc32fast v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:53.0546825Z  Compiling miniz_oxide v0.8.9 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:53.8564409Z  Compiling zerofrom-derive v0.1.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:54.6836537Z  Compiling zerofrom v0.1.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:54.7344783Z  Compiling yoke-derive v0.8.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:54.7466494Z  Compiling zerovec-derive v0.11.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:55.4796528Z  Compiling yoke v0.8.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:55.5377435Z  Compiling displaydoc v0.2.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:55.5765612Z  Compiling zerovec v0.11.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:55.8746759Z  Compiling zeroize_derive v1.4.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:55.9976430Z  Compiling zerotrie v0.2.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:56.1463852Z  Compiling tinystr v0.8.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:56.2396480Z  Compiling zeroize v1.8.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:56.2856699Z  Compiling icu_locale_core v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:56.3566569Z  Compiling potential_utf v0.1.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:56.3946675Z  Compiling rustls-pki-types v1.14.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:56.4516514Z  Compiling icu_collections v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:57.1036011Z  Compiling icu_provider v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:57.7606339Z  Compiling block-buffer v0.10.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:57.8426336Z  Compiling once_cell v1.21.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:58.0106316Z  Compiling zmij v1.0.16 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:58.1476587Z  Compiling serde v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:58.3157300Z  Compiling digest v0.10.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:58.4946643Z  Compiling icu_normalizer v2.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:59.0181713Z  Compiling icu_properties v2.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:04:59.8565893Z  Compiling serde_derive v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:00.6636394Z  Compiling lzma-sys v0.1.20 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:00.8167468Z  Compiling bzip2-sys v0.1.13+1.0.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:00.9182955Z  Compiling getrandom v0.2.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.0656858Z  Compiling byteorder v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.2596433Z  Compiling zstd-safe v7.2.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.3256562Z  Compiling utf8parse v0.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.3686676Z  Compiling serde_json v1.0.149 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.4320614Z  Compiling thiserror v2.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.5458476Z  Compiling untrusted v0.9.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:01.6476666Z  Compiling anstyle-parse v0.2.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:06.7931833Z  Compiling idna_adapter v1.2.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:07.0257059Z  Compiling thiserror-impl v2.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:07.8783010Z  Compiling inout v0.1.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:07.9480239Z  Compiling rustix v0.38.44 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.0946436Z  Compiling anstyle v1.0.13 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.2810395Z  Compiling colorchoice v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.3205246Z  Compiling percent-encoding v2.3.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.5026572Z  Compiling rustls v0.23.36 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.5626423Z  Compiling object v0.37.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.6716426Z  Compiling autocfg v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:08.9506501Z  Compiling powerfmt v0.2.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:09.1186714Z  Compiling is_terminal_polyfill v1.70.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:09.1424998Z  Compiling utf8_iter v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:09.2264595Z  Compiling anstyle-query v1.1.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:09.2656300Z  Compiling cpufeatures v0.2.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:09.2922743Z  Compiling crc-catalog v2.4.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:09.3277076Z  Compiling itoa v1.0.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:12.1623145Z  Compiling crc v3.4.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:12.2656726Z  Compiling anstream v0.6.21 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:12.3076427Z  Compiling idna v1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:12.7403110Z  Compiling deranged v0.5.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:13.8478264Z  Compiling num-traits v0.2.19 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:13.8940739Z  Compiling rustls-webpki v0.103.9 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:14.6640255Z  Compiling form_urlencoded v1.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:14.8646435Z  Compiling cipher v0.4.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.0431356Z  Compiling flate2 v1.1.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.0466338Z  Compiling hmac v0.12.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.1317364Z  Compiling webpki-roots v1.0.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.1906786Z  Compiling hashbrown v0.16.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.5416407Z  Compiling camino v1.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.6816507Z  Compiling equivalent v1.0.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.7096503Z  Compiling winnow v0.7.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:15.8636447Z  Compiling gimli v0.32.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:16.8166496Z  Compiling bumpalo v3.19.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.0296599Z  Compiling zip v2.4.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.1018198Z  Compiling anyhow v1.0.100 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.2436536Z  Compiling time-core v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.3326586Z  Compiling linux-raw-sys v0.4.15 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.5932856Z  Compiling parking_lot_core v0.9.12 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.6486282Z  Compiling num-conv v0.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:17.7543391Z  Compiling time v0.3.45 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:18.4116928Z  Compiling addr2line v0.25.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:18.8706379Z  Compiling toml_parser v1.0.6+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:19.2756335Z  Compiling zopfli v0.8.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:20.3866637Z  Compiling indexmap v2.13.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:21.0276456Z  Compiling webpki-roots v0.26.11 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:21.0536933Z  Compiling pbkdf2 v0.12.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:21.1226431Z  Compiling bzip2 v0.5.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:21.2016959Z  Compiling aes v0.8.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:21.2286271Z  Compiling xz2 v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:21.2776693Z  Compiling url v2.5.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:24.1156447Z  Compiling lzma-rs v0.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:24.8813725Z  Compiling sha1 v0.10.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:25.2886322Z  Compiling socks v0.3.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:25.7196384Z  Compiling xattr v1.6.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:25.9511140Z  Compiling toml_datetime v0.7.5+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:26.3147107Z  Compiling serde_spanned v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:26.3277183Z  Compiling filetime v0.2.27 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:26.3892287Z  Compiling dirs-sys-next v0.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:26.4896509Z  Compiling clap_lex v0.7.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:26.7696477Z  Compiling base64 v0.22.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:26.8716555Z  Compiling toml_writer v1.0.6+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:27.0576487Z  Compiling scopeguard v1.2.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:27.0977715Z  Compiling strsim v0.11.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:27.2337759Z  Compiling rustc-demangle v0.1.27 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:27.8536495Z  Compiling deflate64 v0.1.10 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:28.2556569Z  Compiling fastrand v2.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:28.2806134Z  Compiling heck v0.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:28.4216552Z  Compiling constant_time_eq v0.3.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:28.4551246Z  Compiling unicode-width v0.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:28.4717920Z  Compiling clap_derive v4.5.49 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:28.6636947Z  Compiling console v0.16.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:29.9499081Z  Compiling tempfile v3.24.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:29.9936584Z  Compiling backtrace v0.3.76 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:30.8767704Z  Compiling clap_builder v4.5.54 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:32.9296590Z  Compiling zstd v0.13.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:35.7876367Z  Compiling lock_api v0.4.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:35.9726975Z  Compiling toml v0.9.11+spec-1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:37.5996698Z  Compiling ureq v2.12.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:41.1086533Z  Compiling dirs-next v2.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:41.1926824Z  Compiling tar v0.4.44 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:44.1436613Z  Compiling fs4 v0.6.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:44.4296903Z  Compiling uuid v1.19.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:44.4576253Z  Compiling env_filter v0.1.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:44.8256269Z  Compiling semver v1.0.27 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:44.8776753Z  Compiling cargo-platform v0.3.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.1806563Z  Compiling sysinfo v0.37.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.4296763Z  Compiling siphasher v0.3.11 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.4676791Z  Compiling iana-time-zone v0.1.64 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.5664562Z  Compiling same-file v1.0.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.6588341Z  Compiling hex v0.4.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.9026785Z  Compiling env_home v0.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.9138141Z  Compiling is_executable v0.1.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.9476831Z  Compiling shell-words v1.1.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.9676557Z  Compiling binary-install v0.4.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:45.9896625Z  Compiling which v8.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:46.1390394Z  Compiling dialoguer v0.12.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:46.3801370Z  Compiling human-panic v2.0.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:47.0466467Z  Compiling walkdir v2.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:47.8526558Z  Compiling chrono v0.4.43 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:48.1451741Z  Compiling cargo_metadata v0.23.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:48.2306546Z  Compiling env_logger v0.11.8 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:48.8186586Z  Compiling parking_lot v0.12.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:49.6486479Z  Compiling clap v4.5.54 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:49.6764496Z  Compiling serde_ignored v0.1.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:49.7516498Z  Compiling siphasher v1.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:49.8336107Z  Compiling path-clean v1.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:49.8886691Z  Compiling glob v0.3.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:50.4970691Z  Compiling wasm-pack v0.14.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9118118Z  Finished `release` profile [optimized] target(s) in 1m 11s +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9289264Z  Installing /home/runner/.cargo/bin/wasm-pack +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9291766Z  Installed package `wasm-pack v0.14.0` (executable `wasm-pack`) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9895541Z ##[group]Run actions/setup-node@v4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9895802Z with: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9895968Z node-version: 20.x +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9896155Z cache: npm +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9896326Z always-auth: false +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9896505Z check-latest: false +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9896822Z token: *** +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9896977Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9897154Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9897371Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9897564Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:57.9897756Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.1607841Z Found in cache @ /opt/hostedtoolcache/node/20.20.2/x64 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.1613649Z ##[group]Environment details +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.5066416Z node: v20.20.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.5066851Z npm: 10.8.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.5067150Z yarn: 1.22.22 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.5067915Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.5086722Z [command]/opt/hostedtoolcache/node/20.20.2/x64/bin/npm config get cache +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.6237692Z /home/runner/.npm +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:05:58.8906343Z Cache hit for: node-cache-Linux-x64-npm-d315d8b9cf81d047cf497bbcc55d1d84ab2bcc1d591d7e669c7aa9738b286549 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.1451763Z Received 11038429 of 19427037 (56.8%), 10.5 MBs/sec +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2154131Z Received 19427037 of 19427037 (100.0%), 17.3 MBs/sec +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2154704Z Cache Size: ~19 MB (19427037 B) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2181338Z [command]/usr/bin/tar -xf /home/runner/work/_temp/018b4fb5-ac52-48c2-9cfc-dc013b2184d7/cache.tzst -P -C /home/runner/work/link-cli/link-cli --use-compress-program unzstd +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2427028Z Cache restored successfully +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2440882Z Cache restored from key: node-cache-Linux-x64-npm-d315d8b9cf81d047cf497bbcc55d1d84ab2bcc1d591d7e669c7aa9738b286549 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2541336Z ##[group]Run npm ci +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2541574Z npm ci +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2563731Z shell: /usr/bin/bash -e {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2563974Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2564155Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2564401Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2564609Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:00.2564814Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8929166Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8936753Z added 23 packages, and audited 24 packages in 2s +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8937047Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8937225Z 8 packages are looking for funding +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8937508Z run `npm fund` for details +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8937787Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.8937963Z found 0 vulnerabilities +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9074775Z ##[group]Run npm run build:pages +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9075060Z npm run build:pages +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9088299Z shell: /usr/bin/bash -e {0} +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9088552Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9088738Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9088985Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9089220Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:01.9089425Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.0277209Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.0278208Z > link-cli-web@2.3.0 build:pages +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.0279108Z > npm run build:wasm && DEPLOY_TARGET=github-pages npm run build:web +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.0279577Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.1457866Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.1458488Z > link-cli-web@2.3.0 build:wasm +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.1459190Z > wasm-pack build --target web --out-dir web/pkg +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:02.1459564Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.2685642Z [INFO]: 🎯 Checking for the Wasm target... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.2956904Z [INFO]: 🌀 Compiling to Wasm... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.3897962Z  Compiling unicode-ident v1.0.24 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.3906945Z  Compiling proc-macro2 v1.0.106 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.3907896Z  Compiling quote v1.0.45 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.3915030Z  Compiling wasm-bindgen-shared v0.2.120 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.4437250Z  Compiling rustversion v1.0.22 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.4995040Z  Compiling autocfg v1.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.5157683Z  Compiling once_cell v1.21.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.7946321Z  Compiling cfg-if v1.0.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.8119237Z  Compiling num-traits v0.2.19 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.8198637Z  Compiling bumpalo v3.20.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:03.9356745Z  Compiling thiserror v2.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.0318049Z  Compiling serde_core v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.1036933Z  Compiling utf8parse v0.2.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.1424927Z  Compiling syn v2.0.117 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.1543488Z  Compiling anstyle-parse v1.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.1948676Z  Compiling wasm-bindgen v0.2.120 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.2816974Z  Compiling colorchoice v1.0.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.3256881Z  Compiling is_terminal_polyfill v1.70.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.3542991Z  Compiling anstyle v1.0.14 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.3629207Z  Compiling anstyle-query v1.1.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.5567199Z  Compiling anstream v1.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.9466805Z  Compiling platform-num v0.8.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.9959828Z  Compiling strsim v0.11.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:04.9964047Z  Compiling heck v0.5.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:05.1336680Z  Compiling clap_lex v1.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:05.3476950Z  Compiling thiserror v1.0.69 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:05.4816722Z  Compiling memchr v2.8.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:05.6356549Z  Compiling serde v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:05.7628203Z  Compiling fastrand v2.4.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:05.9126784Z  Compiling dtor-proc-macro v0.0.5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.0428335Z  Compiling tempfile v3.27.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.0511269Z  Compiling dtor v0.0.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.1176779Z  Compiling clap_builder v4.6.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.5516532Z  Compiling beef v0.5.2 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.6270271Z  Compiling ctor-proc-macro v0.0.6 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.7680623Z  Compiling anyhow v1.0.102 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:06.9166728Z  Compiling zmij v1.0.21 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.0236031Z  Compiling slab v0.4.12 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.0357335Z  Compiling pin-project-lite v0.2.17 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.0738027Z  Compiling allocator-api2 v0.4.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.1316640Z  Compiling futures-core v0.3.32 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.2096695Z  Compiling futures-task v0.3.32 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.3068816Z  Compiling wasm-bindgen-macro-support v0.2.120 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.4209357Z  Compiling memmap2 v0.9.10 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:07.5366611Z  Compiling futures-util v0.3.32 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:08.7257226Z  Compiling thiserror-impl v2.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:09.3210728Z  Compiling clap_derive v4.6.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:09.7926731Z  Compiling thiserror-impl v1.0.69 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:10.4066737Z  Compiling wasm-bindgen-macro v0.2.120 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:10.7928239Z  Compiling serde_derive v1.0.228 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:10.9866707Z  Compiling clap v4.6.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:11.0547222Z  Compiling platform-data v2.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:11.1896785Z  Compiling platform-mem v0.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:11.3966684Z  Compiling ctor v0.4.3 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:11.4236646Z  Compiling nom v8.0.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:12.0517769Z  Compiling platform-trees v0.3.4 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:12.1386530Z  Compiling lino-env v0.1.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:12.5476655Z  Compiling serde_json v1.0.149 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:12.6086705Z  Compiling leak_slice v0.2.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:12.6340221Z  Compiling tap v1.0.1 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:12.6869450Z  Compiling dotenvy v0.15.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:13.2490931Z  Compiling doublets v0.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:13.8536736Z  Compiling js-sys v0.3.97 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:14.1476646Z  Compiling lino-arguments v0.3.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:14.4200221Z  Compiling links-notation v0.13.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:15.1116463Z  Compiling itoa v1.0.18 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:15.3626771Z  Compiling link-cli v0.1.0 (/home/runner/work/link-cli/link-cli/rust) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:15.9606735Z  Compiling console_error_panic_hook v0.1.7 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:20.7273849Z  Compiling web-sys v0.3.97 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:21.5500190Z  Compiling clink-wasm v2.3.0 (/home/runner/work/link-cli/link-cli) +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:22.3257158Z  Finished `release` profile [optimized] target(s) in 19.02s +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:22.3334095Z [INFO]: ⬇️ Installing wasm-bindgen... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:24.3703531Z [INFO]: Optimizing wasm binaries with `wasm-opt`... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.1041123Z [INFO]: ✨ Done in 24.84s +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.1041789Z [INFO]: 📦 Your wasm pkg is ready to publish at /home/runner/work/link-cli/link-cli/web/pkg. +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.2115331Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.2115993Z > link-cli-web@2.3.0 build:web +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.2116722Z > vite build --config web/vite.config.js +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.2117137Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.3967805Z vite v8.0.10 building client environment for production... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.4078435Z  +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6108731Z transforming...✓ 1736 modules transformed. +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6403678Z rendering chunks... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6770809Z computing gzip size... +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6822792Z dist/assets/favicon-CIVoLc1m.svg 0.37 kB │ gzip: 0.24 kB +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6823812Z dist/index.html 0.66 kB │ gzip: 0.38 kB +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6824762Z dist/assets/doublets_web_bg-cVQpTmMF.wasm 51.41 kB │ gzip: 20.96 kB +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6826472Z dist/assets/clink_wasm_bg-CdOWT-Uc.wasm 283.33 kB │ gzip: 123.51 kB +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6827514Z dist/assets/index-D8XZ-J-o.css 5.91 kB │ gzip: 2.07 kB +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6828394Z dist/assets/index-BPCELU7J.js 220.96 kB │ gzip: 68.68 kB +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6828787Z +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.6829077Z ✓ built in 285ms +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7089547Z ##[group]Run actions/configure-pages@v5 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7089809Z with: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7090116Z token: *** +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7090295Z enablement: false +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7090466Z env: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7090643Z CARGO_HOME: /home/runner/.cargo +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7090876Z CARGO_INCREMENTAL: 0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7091074Z CARGO_TERM_COLOR: always +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:28.7091277Z ##[endgroup] +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.1698083Z ##[error]Get Pages site failed. Please verify that the repository has Pages enabled and configured to build using GitHub Actions, or consider exploring the `enablement` parameter for this action. Error: Not Found - https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.1710064Z ##[error]HttpError: Not Found - https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.1803269Z Post job cleanup. +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2694656Z [command]/usr/bin/git version +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2728054Z git version 2.53.0 +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2766188Z Temporarily overriding HOME='/home/runner/work/_temp/b85c40e5-2954-4614-abf8-0f8c353aed06' before making global git config changes +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2766958Z Adding repository directory to the temporary git global config as a safe directory +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2779953Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/link-cli/link-cli +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2810801Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.2840297Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3016518Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3034335Z http.https://github.com/.extraheader +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3045604Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3071653Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3245770Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3272344Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3549494Z Evaluate and set environment url +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3552988Z Evaluated environment url: +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3553627Z Cleaning up orphan processes +Deploy GitHub Pages UNKNOWN STEP 2026-05-02T06:06:29.3767802Z ##[warning]Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/configure-pages@v5, actions/setup-node@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ diff --git a/docs/case-studies/issue-69/evidence/run-25249954218.json b/docs/case-studies/issue-69/evidence/run-25249954218.json new file mode 100644 index 0000000..7143d2c --- /dev/null +++ b/docs/case-studies/issue-69/evidence/run-25249954218.json @@ -0,0 +1 @@ +{"conclusion":"success","createdAt":"2026-05-02T10:32:07Z","databaseId":25249954218,"event":"push","headSha":"fb2298021fc5fae82c40cb22d98736b4213e50be","jobs":[{"completedAt":"2026-05-02T10:34:13Z","conclusion":"success","databaseId":74040389437,"name":"Test","startedAt":"2026-05-02T10:32:09Z","status":"completed","steps":[{"completedAt":"2026-05-02T10:32:11Z","conclusion":"success","name":"Set up job","number":1,"startedAt":"2026-05-02T10:32:10Z","status":"completed"},{"completedAt":"2026-05-02T10:32:12Z","conclusion":"success","name":"Run actions/checkout@v4","number":2,"startedAt":"2026-05-02T10:32:11Z","status":"completed"},{"completedAt":"2026-05-02T10:32:24Z","conclusion":"success","name":"Setup Rust","number":3,"startedAt":"2026-05-02T10:32:12Z","status":"completed"},{"completedAt":"2026-05-02T10:33:37Z","conclusion":"success","name":"Install wasm-pack","number":4,"startedAt":"2026-05-02T10:32:24Z","status":"completed"},{"completedAt":"2026-05-02T10:33:43Z","conclusion":"success","name":"Setup Node.js","number":5,"startedAt":"2026-05-02T10:33:37Z","status":"completed"},{"completedAt":"2026-05-02T10:33:50Z","conclusion":"success","name":"Cache cargo registry","number":6,"startedAt":"2026-05-02T10:33:43Z","status":"completed"},{"completedAt":"2026-05-02T10:33:54Z","conclusion":"success","name":"Install npm dependencies","number":7,"startedAt":"2026-05-02T10:33:50Z","status":"completed"},{"completedAt":"2026-05-02T10:33:57Z","conclusion":"success","name":"Test Rust CLI core","number":8,"startedAt":"2026-05-02T10:33:54Z","status":"completed"},{"completedAt":"2026-05-02T10:34:02Z","conclusion":"success","name":"Test WebAssembly wrapper","number":9,"startedAt":"2026-05-02T10:33:57Z","status":"completed"},{"completedAt":"2026-05-02T10:34:10Z","conclusion":"success","name":"Build React WebAssembly app","number":10,"startedAt":"2026-05-02T10:34:02Z","status":"completed"},{"completedAt":"2026-05-02T10:34:11Z","conclusion":"success","name":"Upload built app","number":11,"startedAt":"2026-05-02T10:34:10Z","status":"completed"},{"completedAt":"2026-05-02T10:34:11Z","conclusion":"success","name":"Post Cache cargo registry","number":20,"startedAt":"2026-05-02T10:34:11Z","status":"completed"},{"completedAt":"2026-05-02T10:34:11Z","conclusion":"success","name":"Post Setup Node.js","number":21,"startedAt":"2026-05-02T10:34:11Z","status":"completed"},{"completedAt":"2026-05-02T10:34:11Z","conclusion":"success","name":"Post Run actions/checkout@v4","number":22,"startedAt":"2026-05-02T10:34:11Z","status":"completed"},{"completedAt":"2026-05-02T10:34:11Z","conclusion":"success","name":"Complete job","number":23,"startedAt":"2026-05-02T10:34:11Z","status":"completed"}],"url":"https://github.com/link-foundation/link-cli/actions/runs/25249954218/job/74040389437"},{"completedAt":"2026-05-02T10:34:13Z","conclusion":"skipped","databaseId":74040474609,"name":"Deploy GitHub Pages","startedAt":"2026-05-02T10:34:13Z","status":"completed","steps":[],"url":"https://github.com/link-foundation/link-cli/actions/runs/25249954218/job/74040474609"}],"status":"completed","url":"https://github.com/link-foundation/link-cli/actions/runs/25249954218"} diff --git a/docs/case-studies/issue-69/evidence/run-25249954818.json b/docs/case-studies/issue-69/evidence/run-25249954818.json new file mode 100644 index 0000000..9bd1eb4 --- /dev/null +++ b/docs/case-studies/issue-69/evidence/run-25249954818.json @@ -0,0 +1 @@ +{"conclusion":"success","createdAt":"2026-05-02T10:32:09Z","databaseId":25249954818,"event":"pull_request","headSha":"fb2298021fc5fae82c40cb22d98736b4213e50be","jobs":[{"completedAt":"2026-05-02T10:34:10Z","conclusion":"success","databaseId":74040390736,"name":"Test","startedAt":"2026-05-02T10:32:11Z","status":"completed","steps":[{"completedAt":"2026-05-02T10:32:13Z","conclusion":"success","name":"Set up job","number":1,"startedAt":"2026-05-02T10:32:11Z","status":"completed"},{"completedAt":"2026-05-02T10:32:14Z","conclusion":"success","name":"Run actions/checkout@v4","number":2,"startedAt":"2026-05-02T10:32:13Z","status":"completed"},{"completedAt":"2026-05-02T10:32:24Z","conclusion":"success","name":"Setup Rust","number":3,"startedAt":"2026-05-02T10:32:14Z","status":"completed"},{"completedAt":"2026-05-02T10:33:36Z","conclusion":"success","name":"Install wasm-pack","number":4,"startedAt":"2026-05-02T10:32:24Z","status":"completed"},{"completedAt":"2026-05-02T10:33:40Z","conclusion":"success","name":"Setup Node.js","number":5,"startedAt":"2026-05-02T10:33:36Z","status":"completed"},{"completedAt":"2026-05-02T10:33:48Z","conclusion":"success","name":"Cache cargo registry","number":6,"startedAt":"2026-05-02T10:33:40Z","status":"completed"},{"completedAt":"2026-05-02T10:33:51Z","conclusion":"success","name":"Install npm dependencies","number":7,"startedAt":"2026-05-02T10:33:48Z","status":"completed"},{"completedAt":"2026-05-02T10:33:55Z","conclusion":"success","name":"Test Rust CLI core","number":8,"startedAt":"2026-05-02T10:33:51Z","status":"completed"},{"completedAt":"2026-05-02T10:34:00Z","conclusion":"success","name":"Test WebAssembly wrapper","number":9,"startedAt":"2026-05-02T10:33:55Z","status":"completed"},{"completedAt":"2026-05-02T10:34:08Z","conclusion":"success","name":"Build React WebAssembly app","number":10,"startedAt":"2026-05-02T10:34:00Z","status":"completed"},{"completedAt":"2026-05-02T10:34:08Z","conclusion":"success","name":"Upload built app","number":11,"startedAt":"2026-05-02T10:34:08Z","status":"completed"},{"completedAt":"2026-05-02T10:34:09Z","conclusion":"success","name":"Post Cache cargo registry","number":20,"startedAt":"2026-05-02T10:34:08Z","status":"completed"},{"completedAt":"2026-05-02T10:34:09Z","conclusion":"success","name":"Post Setup Node.js","number":21,"startedAt":"2026-05-02T10:34:09Z","status":"completed"},{"completedAt":"2026-05-02T10:34:09Z","conclusion":"success","name":"Post Run actions/checkout@v4","number":22,"startedAt":"2026-05-02T10:34:09Z","status":"completed"},{"completedAt":"2026-05-02T10:34:09Z","conclusion":"success","name":"Complete job","number":23,"startedAt":"2026-05-02T10:34:09Z","status":"completed"}],"url":"https://github.com/link-foundation/link-cli/actions/runs/25249954818/job/74040390736"},{"completedAt":"2026-05-02T10:34:10Z","conclusion":"skipped","databaseId":74040472966,"name":"Deploy GitHub Pages","startedAt":"2026-05-02T10:34:11Z","status":"completed","steps":[],"url":"https://github.com/link-foundation/link-cli/actions/runs/25249954818/job/74040472966"}],"status":"completed","url":"https://github.com/link-foundation/link-cli/actions/runs/25249954818"} diff --git a/experiments/validate-wasm-workflow.mjs b/experiments/validate-wasm-workflow.mjs new file mode 100644 index 0000000..035c20d --- /dev/null +++ b/experiments/validate-wasm-workflow.mjs @@ -0,0 +1,39 @@ +#!/usr/bin/env node + +import { readFileSync } from 'fs'; + +const workflowPath = '.github/workflows/wasm.yml'; +const workflow = readFileSync(workflowPath, 'utf8'); + +function fail(message) { + console.error(`FAIL: ${message}`); + process.exitCode = 1; +} + +function pass(message) { + console.log(`PASS: ${message}`); +} + +if (workflow.includes("github.event_name == 'push' && github.ref == 'refs/heads/main'")) { + fail('GitHub Pages deployment still runs automatically on main pushes'); +} else { + pass('GitHub Pages deployment is not automatic on main pushes'); +} + +if (!workflow.includes('deploy_pages:')) { + fail('workflow_dispatch deploy_pages input is missing'); +} else { + pass('workflow_dispatch deploy_pages input exists'); +} + +if (!workflow.includes("github.event_name == 'workflow_dispatch'") || !workflow.includes('inputs.deploy_pages')) { + fail('Deploy job is not gated by manual workflow_dispatch opt-in'); +} else { + pass('Deploy job is gated by manual workflow_dispatch opt-in'); +} + +if (!workflow.includes('actions/configure-pages@v5')) { + fail('GitHub Pages configuration step is missing'); +} else { + pass('GitHub Pages configuration step is still present for opt-in deployments'); +}

::next::h755c87a1783cac64") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 286 } Some("::invalid_value::h9b500c3d8f056bb4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 719 } Some(" as nom::internal::Parser>::process::h3cbd0555360377ba") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 938 } Some("rustc_demangle::demangle::h461cb3a5b50fef57") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 677 } Some(">::process::h0a6b7da71c5f7fda") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 368 } Some(" as core::ops::drop::Drop>::drop::hdf6602940055194f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1021 } Some("::fmt::h33079d1ee4561b89") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 511 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::hf247005b4c31aace") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 370 } Some("__externref_table_dealloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 692 } Some(">::process::hb7ddba237cf03949") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 879 } Some("<&std::io::stdio::Stderr as std::io::Write>::write_fmt::hb88020ac45491cb2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 699 } Some(">::process::h9a89cf7b65c8fa72") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 512 } Some("link_cli::cli::Cli::version_text::hc3adfa87b9615c64") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 527 } Some("link_cli::query_processor::QueryProcessor::is_numeric_or_wildcard::h117640026f8c3e61") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 293 } Some("serde_json::de::Deserializer::parse_decimal::h057b2439463b18be") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 431 } Some("hashbrown::raw::RawTableInner::drop_elements::h0e028c879024040e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 597 } Some("::to_string::hdf1d1fc232f36994") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 342 } Some("::write_to_zmij_buffer::hadc4ba6fd8ed38af") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 303 } Some("serde_json::de::Deserializer::parse_object_colon::h2fc5b45cede60c92") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 720 } Some(" as nom::internal::Parser>::process::h7fc767e4c3c235ea") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 288 } Some("serde_json::de::ParserNumber::invalid_type::h0338d749dfae6b3b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 480 } Some("hashbrown::map::HashMap::get_mut::hc86f0add0d8dce9d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 433 } Some("hashbrown::raw::RawTableInner::drop_elements::h7f65fa203f904b36") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 686 } Some(">::process::h681ad601734627b8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 382 } Some("alloc::vec::Vec::try_reserve_exact::haa4ea2da5cf88cba") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 275 } Some("serde_json::error::make_error::h234f4e2eb247a81e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 691 } Some(">::process::h45cae5ecae6aa954") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 606 } Some(" as core::iter::traits::iterator::Iterator>::fold::ha1b46933ec563734") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 746 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::h4405173b52332dce") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 958 } Some("rustc_demangle::v0::Printer::print_pat::h29bc1584a45baeeb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1011 } Some("core::char::methods::::escape_debug_ext::h697d2991ee43dd73") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 937 } Some("rustc_demangle::try_demangle::h6d8b3a45c8ace536") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1063 } Some("core::fmt::Formatter::debug_tuple_field1_finish::hf7bab4a1f0b45def") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 944 } Some("rustc_demangle::v0::Parser::opt_integer_62::hcca2235a0baaf9a9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 227 } Some(" as core::ops::drop::Drop>::drop::h5a0ed48c73a36ef7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 113 } Some("::set_name::h71b8d7e407dcec7b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 98 } Some("::write_char::h32949ed49a1ffdbf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 245 } Some("serde_json::de::from_trait::h2b1a0536e2a564ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 77 } Some("clink_wasm::_::::serialize::ha6080b5932cb4bfa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 682 } Some("links_notation::parser::parse_dynamic_quote_string::h82c4c709ea52d98c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 607 } Some(" as core::ops::drop::Drop>::drop::hb9d6b2ef52e604a0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 32 } Some("core::slice::sort::stable::quicksort::stable_partition::h15df334552c6efcf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 270 } Some("::write_char::h32949ed49a1ffdbf[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 640 } Some(" as core::hash::Hasher>::write::h9c58ffdab8b16f25") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 78 } Some("clink_wasm::_::::serialize::he5c12f168a779c0f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 631 } Some(" as core::ops::drop::Drop>::drop::h23e57121b6fd3997") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 35 } Some("core::slice::sort::stable::quicksort::stable_partition::h655387abe18de136") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 432 } Some("hashbrown::raw::RawTableInner::drop_elements::h1e2bda50adfc708d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 738 } Some(" as core::ops::drop::Drop>::drop::hed28ce8bc1430309") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 518 } Some("::write_char::h32949ed49a1ffdbf[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 521 } Some("link_cli::query_processor::QueryProcessor::assign_variable::hf34d7eb59c15d35a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 947 } Some("rustc_demangle::v0::Printer::print_path::hb124c76c93b75813") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 107 } Some("::ensure_created::he5cd0f2e42688c5b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 37 } Some("core::slice::sort::stable::quicksort::quicksort::h0db49567caef8cea") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 530 } Some("link_cli::parser::Parser::convert_link::h3703be1623a0773b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 835 } Some("anyhow::fmt::::debug::h2bf2dbebd15d7103") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 613 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::hd379fe551606ca25") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 940 } Some("core::str::::trim_start_matches::h9729ab51c0d4cd27") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 38 } Some("core::slice::sort::stable::quicksort::quicksort::h4b3a5da17a1c5a1d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 698 } Some(">::process::hb4043e844f6ba397") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1006 } Some("alloc::raw_vec::RawVec::grow_one::hc8d51d460bbc6465") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 40 } Some("core::slice::sort::stable::quicksort::quicksort::h5e8ff5053032ce31") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 605 } Some("core::slice::sort::stable::drift::create_run::h60c302a3168245d5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 636 } Some("hashbrown::raw::RawTableInner::drop_elements::h9fea0834b93b467e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1090 } Some("core::panicking::assert_failed_inner::h7a49bbc1d2417104") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1049 } Some("core::num::flt2dec::strategy::grisu::format_shortest_opt::hfcab0953839aa679") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 41 } Some("core::slice::sort::stable::quicksort::quicksort::hd5854ea647120fe5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1054 } Some("core::fmt::builders::DebugStruct::finish::h3fcc12ee0cf91939") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 184 } Some("serde_core::ser::SerializeMap::serialize_entry::h7062c8d8c97fa52b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 985 } Some("core::iter::traits::iterator::Iterator::try_fold::h15bd061a8af1ae1e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 166 } Some("alloc::vec::in_place_collect::from_iter_in_place::h21f6c28ea842c8f7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 284 } Some("::fmt::h0dd02c1abbdff49c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 27 } Some("link_cli::query_processor::QueryProcessor::resolve_identifier::hf69d55e67e6b721f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 165 } Some("::slice_contains::hbb07f19b2f547a6e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 43 } Some("core::slice::sort::stable::quicksort::quicksort::hfde3f806da7da5d8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 167 } Some("alloc::vec::in_place_collect::from_iter_in_place::h4b22a306d7469ad9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 285 } Some("::custom::hc435fa7053f14a73") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 246 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h50aa37e0b34d13c3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 207 } Some("core::slice::sort::shared::pivot::median3_rec::h5a2f059792f1e4ca") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 337 } Some("alloc::vec::Vec::into_boxed_slice::h822e559ecef9842b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 63 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h40b9b2d024beedcc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 325 } Some("serde_json::read::SliceRead::skip_to_escape::h8c0a522688598350") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 569 } Some("core::slice::sort::stable::merge::MergeState::merge_up::hbe0932f104311ef9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 633 } Some("lino_env::LinoEnv::new::hcdd338eea5f07b45") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 379 } Some("alloc::vec::Vec::into_boxed_slice::hb90a0d176d812c59") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 160 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::h049fce788c80fcf5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 759 } Some("<&T as core::fmt::Debug>::fmt::hdaeb621a52633c8d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 876 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hcef08ec0cc696d81") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 953 } Some("rustc_demangle::v0::Printer::print_const::h7532dfd944e4a886") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 573 } Some("core::slice::sort::unstable::heapsort::heapsort::h2352c2c3b6b76ef1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 932 } Some("::alloc::h5d11e6618597802f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 129 } Some(" as core::iter::traits::iterator::Iterator>::next::h5e6eb65a233ea6a4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 884 } Some("std::io::stdio::_eprint::h164d11821d17dea7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 673 } Some("links_notation::parser::links::haaa16b74604584fe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 210 } Some(" as core::clone::Clone>::clone::h058a12c455d7c4b4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 637 } Some("hashbrown::raw::RawTableInner::new_uninitialized::hac1ec10c576dbe93") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 946 } Some("rustc_demangle::v0::Parser::backref::hcee1c7687ad31d67") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 477 } Some("hashbrown::map::HashMap::remove::h825a47e21313571d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 242 } Some("core::slice::sort::stable::merge::merge::h045cacbfe52d76cc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 553 } Some("anyhow::error::::construct::h0f906f5d7b407046") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 106 } Some("::search::h967af9ec9e72a07b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 140 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::hcaade9ab3641d82f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1019 } Some("core::fmt::Formatter::pad::h950d3375a7ef2727") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 566 } Some("core::slice::sort::shared::pivot::median3_rec::hf6f94001a46b2b78") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1078 } Some("core::str::pattern::StrSearcher::new::hedfc561af0a4e4fb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 786 } Some("anyhow::error::::construct::h84233993b8e4ff20") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 435 } Some("hashbrown::raw::RawIterRange::fold_impl::h6ab0555b0ad3a442") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 161 } Some("std::sys::sync::once::no_threads::Once::call::hdc764a2665022179") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 619 } Some("lino_arguments::load_lenv_file::hba12f99d568abb7d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 159 } Some("serde_core::de::impls::>::deserialize::h2b5802f62f0764b7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 544 } Some("alloc::vec::in_place_collect::from_iter_in_place::h585c7642e5316278") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 988 } Some("::fmt::h49533a304087dfc2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 83 } Some("clink_wasm::Clink::execute::h28ec75636b906427") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 437 } Some("hashbrown::raw::RawTable::erase_no_drop::h105dabd8693d5017") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1003 } Some("alloc::fmt::format::format_inner::h17065fade03a5f8e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 562 } Some(" as core::iter::traits::iterator::Iterator>::next::hb151922a28e9a4ee") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 434 } Some("hashbrown::raw::RawTableInner::rehash_in_place::h815e9802b7f6bcbf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 483 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h27ae2f5f76792e84") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 461 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::haa711f143ce45bf4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 266 } Some("console_error_panic_hook::hook::hd9bcab0d329775c6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 711 } Some("::fmt::hdda12cdc899f21a5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 949 } Some("rustc_demangle::v0::Printer::print_backref::h2d91aa542dce40c1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 638 } Some("hashbrown::raw::RawTable::clear::h09357de16ef41f2c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 30 } Some("link_cli::query_processor::QueryProcessor::recursive_match_subpattern::h805b5dc83c963517") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 51 } Some("core::slice::sort::stable::drift::sort::h1d5607eba1b1050b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 318 } Some("serde_json::read::parse_unicode_escape::he19966d80a521db4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 661 } Some("lino_env::LinoEnv::keys::hb490c658b15d9f07") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 722 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h77b18afdc6d4b524") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 963 } Some("rustc_demangle::v0::Printer::print_backref::hc27f4820a470ce24") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 815 } Some(" as core::iter::traits::iterator::Iterator>::next::h4fd449b2969d76fe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 528 } Some("link_cli::query_processor::QueryProcessor::solutions_are_compatible::he0fb065d220a48be") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 910 } Some("core::ptr::drop_in_place>::h37818cad86e7727b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 967 } Some("rustc_demangle::v0::Printer::print_sep_list::hca8782c08517f866") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 292 } Some("serde_json::de::Deserializer::parse_number::h97a8eac9c56c5319") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 705 } Some("links_notation::flatten_link_recursive::hf8def92b3f9b7cf6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 980 } Some("<[T] as core::fmt::Debug>::fmt::h2a28fdeaca8f0f0b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 76 } Some("clink_wasm::BrowserStorage::snapshot::h776aba73f02b7746") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 755 } Some("nom::character::complete::line_ending::h937bdf35ba4225c8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 52 } Some("core::slice::sort::stable::drift::sort::h4df7c79926d1ddbd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 211 } Some("hashbrown::raw::RawTable::new_uninitialized::hfaa5a5b643e5f015") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 707 } Some("links_notation::parse_lino_to_links::h0af9fdb181639b29") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 101 } Some("::from_abi::h4546d209a1043e50") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 849 } Some("anyhow::error::object_reallocate_boxed::h6b4fb7e5609314f5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 66 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::he61fc35fc1402f62") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 957 } Some("rustc_demangle::v0::Printer::print_backref::h8eaa2a287c7bc9d7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 478 } Some("hashbrown::map::HashMap::remove::hcacef29cd516c835") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 23 } Some("link_cli::query_processor::QueryProcessor::apply_operation::h7628a930f2e5b677") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 109 } Some("::delete::h813d072b77c92fd7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 503 } Some("core::slice::sort::shared::smallsort::insert_tail::hb861236563da5108") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 753 } Some(" as core::ops::drop::Drop>::drop::hc99dcb1ad294425c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 53 } Some("core::slice::sort::stable::drift::sort::h6a040f831fea646b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1055 } Some("core::fmt::builders::DebugSet::entry::h614b20745ed38459") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 188 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hb67e7b854c54ddbd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 857 } Some("dlmalloc::dlmalloc::Dlmalloc::memalign::h4d574c3a3414c418") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 777 } Some("alloc::vec::splice::>::move_tail::h32914e001d126528") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 737 } Some(" as core::ops::drop::Drop>::drop::h4567386aef5c9b2c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 931 } Some("::take_box::ha4d04ad03cee361a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 860 } Some("__rustc[16f1505adc47261a]::__rdl_dealloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1073 } Some("core::num::flt2dec::strategy::dragon::mul_pow10::h29c922d5b323c1a1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 143 } Some("alloc::vec::Vec::extend_desugared::h664e0a7e7764a273") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1089 } Some("core::result::unwrap_failed::h8a0dea2fe721e8ce") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1030 } Some("core::fmt::num::imp::::fmt::hcc4fdae794c9e627") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 138 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::ha1e4735b96d231db") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 54 } Some("core::slice::sort::stable::drift::sort::h6f3066e459e4069d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 155 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::h26e22bfe9126ce1c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 92 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h435480269bee32f6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1070 } Some("core::num::flt2dec::strategy::grisu::format_exact_opt::possibly_round::h6d2a0d3ecc48ff3d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 257 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_bool::h35ce1a3d1be80ea9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 156 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::hcf3d09c2fc7c8434") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 314 } Some("serde_json::read::next_or_eof::h331b22c04c559f46") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 602 } Some("link_cli::named_type_links::escape_lino_reference::h6c6b7f531a0c88ed") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 55 } Some("core::slice::sort::stable::drift::sort::h76be9344d6c791c1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 496 } Some("alloc::slice:: for alloc::vec::Vec>::with_capacity::h138f2bc133030b33") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 193 } Some("core::iter::adapters::try_process::hfa3c4bb44a80b059") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 333 } Some("alloc::raw_vec::RawVecInner::shrink_unchecked::h696474aad6f83133") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 672 } Some("links_notation::parser::parse_document::h0780c891471c9d9d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 816 } Some("core::iter::traits::iterator::Iterator::nth::h227868f869da7bb9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 205 } Some("core::slice::sort::shared::pivot::median3_rec::h16f63e1628f70f8d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 367 } Some("alloc::raw_vec::RawVecInner::shrink_unchecked::h634c1072ee8f6bf1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1031 } Some("core::fmt::num::imp::::fmt::h09880411cb7be385") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 86 } Some("link_cli::named_type_links::NamedTypeLinks::format_lino::hd0740860e3557787") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 56 } Some("core::slice::sort::stable::drift::sort::ha992cb25f721469a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 507 } Some("core::slice::sort::shared::smallsort::sort13_optimal::hf5ecfa42f5f0526b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 206 } Some("core::slice::sort::shared::pivot::median3_rec::h31f2bdb1ac14c9b2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 336 } Some("zmij::Buffer::format::h17de4a4a10439d18") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 863 } Some("dlmalloc::dlmalloc::Dlmalloc::unlink_chunk::h16ef10954c05020c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 909 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::haeda21ffcd811ab0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 401 } Some("<::fmt::LookForDecimalPoint as core::fmt::Write>::write_str::h40f9810846f5f531") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 669 } Some("links_notation::parser::ParserState::push_indentation::he1b81e702f132148") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 57 } Some("core::slice::sort::stable::drift::sort::hd6f6529e0521b785") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 490 } Some("alloc::vec::Vec::extend_trusted::h3aab98b8e9670c2e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1007 } Some("::clone::hf40c2608d3982c00") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 243 } Some("core::slice::sort::stable::merge::merge::h2d4bc05234debc02") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 491 } Some("alloc::vec::Vec::extend_trusted::h539fae159b45b917") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 172 } Some("hashbrown::map::HashMap::contains_key::h2bc44c017a7167cf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 725 } Some("alloc::str::join_generic_copy::h0897c4195e60152a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 102 } Some("::ref_mut_from_abi::h55e8489ce9a3dd41") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 492 } Some("alloc::vec::Vec::insert::h708ce455b3d42fdf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 970 } Some("rustc_demangle::v0::Printer::print_path_maybe_open_generics::hf723e4ce536d5864") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 604 } Some("core::slice::sort::stable::drift::sort::h93558412933008a0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 108 } Some("::create::h1b2f58fb0e48a322") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 567 } Some("core::slice::sort::shared::pivot::median3_rec::hf8eebc9fcca66877") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 713 } Some("core::str::::starts_with::hb8be0641c36cf8d8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 785 } Some("anyhow::error::::construct::hafaab39e80d8e56b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 329 } Some("::parse_str::h19c69b3ab09b6d63") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 110 } Some("::update::h47f24afed99e0a67") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 951 } Some("rustc_demangle::v0::Printer::print_type::h4d6776181fdd92c4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 971 } Some("core::escape::escape_unicode::hc11326ceefb5335d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1032 } Some("core::fmt::num::imp::::fmt::h5bb1559f35fa2c5d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 531 } Some("link_cli::parser::Parser::parse::h704390f494fbd050") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 405 } Some("::fmt::h024b548baff6a511") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 680 } Some(">::process::h97fcc9890b03ff09") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 88 } Some("clink_wasm::to_json::h5d0e2a7386bb89f8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 176 } Some(" as core::iter::traits::iterator::Iterator>::next::h41b7e5e135cca752") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 44 } Some("core::slice::sort::stable::drift::create_run::h1810b070603681ed") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 954 } Some("rustc_demangle::v0::Printer::print_sep_list::hedfc2fde5642a933") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 479 } Some("hashbrown::map::HashMap::remove::hcd6755021c650002") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 948 } Some("::fmt::h337531cd2bca8803") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 182 } Some("serde_core::ser::SerializeMap::serialize_entry::h5ba9324c17fbb45e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 45 } Some("core::slice::sort::stable::drift::create_run::h32e87b510a7f56d8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 469 } Some("hashbrown::map::HashMap::contains_key::h7d7c6a64d39742b9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 70 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h47595f6b49d0bcba") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 326 } Some("serde_json::read::SliceRead::skip_to_escape_slow::ha37629d005fff596") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 489 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::h402d64d830c4fa42") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 46 } Some("core::slice::sort::stable::drift::create_run::h487c95685c37ce4c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 696 } Some(">::process::h80359732fa9dfa6f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 977 } Some("::fmt::hf57eabd068e2a302") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 810 } Some("core::fmt::Write::write_char::h124090d117ca6e2c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 11 } Some("alloc::slice::::sort_by_key::h043dace55594f160") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 47 } Some("core::slice::sort::stable::drift::create_run::h631297a36a62b2b2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 233 } Some("link_cli::link_reference_validator::LinkReferenceValidator::next_available_link_id::hc77943cc5a71781b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 981 } Some("core::fmt::Write::write_char::h6753d16224737d2e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 683 } Some("links_notation::parser::element::hedb66ef0b1f95aa6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 930 } Some("::get::heb4b8bac6804dc2b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 24 } Some("link_cli::query_processor::QueryProcessor::check_id_match::h6e9e1471f3fee80c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 316 } Some("serde_json::read::peek_or_eof::hdcddf5937e0b1b33") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 185 } Some("serde_json::ser::format_escaped_str_contents::h59cb93beb9598939") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 48 } Some("core::slice::sort::stable::drift::create_run::h90635781c3d8a0bc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1008 } Some("::fmt::h4715f37320baf771") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 195 } Some("core::slice::sort::stable::driftsort_main::h2bf9748f35f695ab") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 335 } Some(" as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend::ha00cace9c4ed1c93") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 26 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern::h615ff2d47b1cc0e6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 50 } Some("core::slice::sort::stable::drift::create_run::hf34eda431e5c2d89") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 20 } Some("link_cli::query_processor::QueryProcessor::ensure_link_created::h777b662560c85a58") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 485 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h3f9919fdab524375") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 196 } Some("core::slice::sort::stable::driftsort_main::h42dadf28284e62a4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 670 } Some("links_notation::parser::ParserState::current_indentation::h8945edb166a6e6c1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 466 } Some("hashbrown::rustc_entry::>::rustc_entry::h7311d210e46abc69") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 702 } Some(" as core::convert::From>::from::h4fd0dd18746d7503") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 197 } Some("core::slice::sort::stable::driftsort_main::h4ec0ca4479b32ccf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 198 } Some("core::slice::sort::stable::driftsort_main::haac1f3d8bcf9fb41") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 745 } Some(" as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend::h274a095c8b807992") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 239 } Some("link_cli::link_reference_validator::LinkReferenceValidator::validate_links_exist_or_will_be_created::hcf6418ebb605f4cd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 84 } Some("link_cli::named_type_links::NamedTypeLinks::format_structure::hb58b3a154f74bc88") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 238 } Some("link_cli::link_reference_validator::LinkReferenceValidator::auto_create_missing_references::hf4c379eaf29cc7ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 199 } Some("core::slice::sort::stable::driftsort_main::hb4ac42c2e6c0f16e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 467 } Some("hashbrown::rustc_entry::>::rustc_entry::hb41137579fd52442") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 752 } Some(" as core::ops::drop::Drop>::drop::h42c74c37bea024ed") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 173 } Some("hashbrown::map::HashMap::contains_key::h30597ba7232de569") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 200 } Some("core::slice::sort::stable::driftsort_main::he139183721b753d7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 302 } Some("serde_json::de::Deserializer::peek_invalid_type::h88ebffadcb9a52a4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 588 } Some("link_cli::link_reference_validator::LinkReferencePlan::add_missing_reference::ha272f2824b36fd65") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 923 } Some(" as core::fmt::Write>::write_str::hc5a49c5b09555a86") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 21 } Some("link_cli::query_processor::QueryProcessor::find_all_solutions::hcc4b15e87feb6f0f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 603 } Some("core::slice::sort::stable::driftsort_main::h40bf993a676ba8ec") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 244 } Some("core::slice::sort::stable::merge::merge::h3d9f1eb40a031e29") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1047 } Some("core::num::flt2dec::digits_to_dec_str::h8999c0e105d2a98f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1004 } Some("alloc::vec::Vec::insert_mut::assert_failed::h2949680eedb96bd6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 942 } Some("rustc_demangle::v0::Parser::integer_62::hbe2dbddfe2890d14") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 139 } Some("alloc::vec::Vec::extend_desugared::h7388bdf2c44abd22") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 570 } Some("core::slice::sort::stable::merge::merge::h542e26a1ee7a99ac") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 28 } Some("link_cli::query_processor::QueryProcessor::resolve_identifier_readonly::h2c80d7b94b9733d4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 687 } Some(">::process::h48420a8b946daec2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1027 } Some("core::panicking::panic_bounds_check::he16a4bbc04eea6a6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 228 } Some(" as core::ops::drop::Drop>::drop::hf640e493581bc68c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 290 } Some("serde_json::de::Deserializer::parse_ident::hb2137cf335ca6bb4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 231 } Some("alloc::fmt::format::h0bca27cabb6c99c2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 146 } Some(" as alloc::vec::spec_extend::SpecExtend>>::spec_extend::habd32ce9e473fdc0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 65 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h07a76238d09ae6d1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 919 } Some("::fmt::h15c4bfdfd49dff55") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 475 } Some("hashbrown::map::HashMap::insert::hc2d6af81e2215342") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 632 } Some("lino_env::read_lino_env::h68fdec149eabd121") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 58 } Some("core::slice::sort::shared::smallsort::insert_tail::ha87f412c2e1b4dfa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 158 } Some(" as core::ops::drop::Drop>::drop::h7643f9001d9fc0f4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 306 } Some("serde_json::de::Deserializer::end_map::h3421e886f5b9effc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 999 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4a4baaf90ee85523") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 68 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h6aa631b752473a70") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 178 } Some("serde_core::ser::Serializer::collect_seq::h8e2585a5af567a1e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 972 } Some("::next::h6bf67b7957dc178c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 247 } Some("serde_json::de::ParserNumber::visit::ha118c970710104f8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 939 } Some("rustc_demangle::v0::HexNibbles::try_parse_uint::h86f911c72dcaed25") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 416 } Some("core::ptr::drop_in_place::{{closure}}>>::h85c2b54052ef00e6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 42 } Some("core::slice::sort::stable::quicksort::quicksort::heb3face987a30bec") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 225 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h6bca7589ab9eaa2f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 622 } Some("core::ptr::drop_in_place::h2332d5a299caf83c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 320 } Some("serde_json::read::ignore_escape::h07ad0151ff4541ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 532 } Some(" as core::iter::traits::iterator::Iterator>::next::h6db6ce5ac40f972e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 627 } Some("std::env::set_var::{{closure}}::h85e203573cdbc1bf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 248 } Some("serde_json::de::Deserializer::ignore_value::he936138ebdf9a942") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 234 } Some("link_cli::link_reference_validator::LinkReferenceValidator::build_link_reference_plan::h2de01f8361db3c50") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 417 } Some("core::ptr::swap_nonoverlapping_bytes::h2320c662b87352f9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 630 } Some("hashbrown::raw::RawTableInner::drop_inner_table::hd49231d9065344aa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1035 } Some("core::fmt::Formatter::pad_formatted_parts::hba4ee7ec573a5615") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 875 } Some("::fmt::hde3decec68ee41cb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 880 } Some("alloc::sync::Arc::drop_slow::h419f2ba926fd2183") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 697 } Some(">::process::h8cff21c4b74a184c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 486 } Some("alloc::vec::Vec::extend_desugared::hbd2415893f36cb11") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 888 } Some("std::sys::random::unsupported::hashmap_random_keys::h42a15f65dfd217f2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 487 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::hcb7f43f57b931e3d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 17 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern_readonly::h93a6253190c085d4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 741 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h29cdea259670f71e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 251 } Some("serde_json::de::Deserializer::ignore_exponent::h0b4129fbd75a2e63") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 80 } Some("clink_wasm::Clink::reset::heb48160e0c119aab") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1083 } Some("core::unicode::unicode_data::grapheme_extend::lookup_slow::h40490b0ac92efe4b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 743 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::he2f55991f99a96b4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 69 } Some("core::slice::sort::shared::smallsort::small_sort_general_with_scratch::h01874dec16c833e8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 259 } Some(" as serde_core::de::SeqAccess>::next_element_seed::he7ad085121b56ae8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 482 } Some("alloc::vec::Vec::extend_desugared::h7d699a9ee63f7cbf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 213 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h8ee34214f2ddb4f2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 813 } Some("core::str::::trim_end_matches::hd6f7180448b7984b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 429 } Some("hashbrown::raw::RawIterRange::next_impl::h90c51ecc4398bd6e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 15 } Some("link_cli::query_processor::QueryProcessor::match_link_against_pattern::h73724328c57d7f97") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 510 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::hf1172e3deda42124") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 552 } Some("anyhow::error::object_reallocate_boxed::h54d33f770e4ee84e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 289 } Some("serde_json::de::Deserializer::peek_error::heb4c31a755124fbb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 792 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::he8fdaaae31aa8ee5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 339 } Some("::fmt::h7fd6e94562424753") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 508 } Some("core::slice::sort::shared::smallsort::small_sort_network::hb74b628b96f973c5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 419 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h0b32a9ca04a45630") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 848 } Some("anyhow::error::object_reallocate_boxed::h39ac0331ab3961e0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 14 } Some("link_cli::query_processor::QueryProcessor::resolve_match_id::hd709a8ce8cc1b4e4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 693 } Some(">::process::hf4a72bef636bd490") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 420 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h5d6c88571c7f61d2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 36 } Some("core::slice::sort::stable::quicksort::stable_partition::hd650facfce3aff2e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 966 } Some("rustc_demangle::v0::Printer::print_sep_list::h1167725efa676d43") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 423 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h4b11b1beb6629ea0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 524 } Some("link_cli::query_processor::QueryProcessor::create_pattern_from_lino::h3317035002d6cdb5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 695 } Some(">::process::h683c7f58a8a8ca8d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 717 } Some(">::process::hb3e01113e5e90b33") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 425 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h3c01a7c82e6b262f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 872 } Some("std::backtrace_rs::print::BacktraceFrameFmt::print_raw_with_column::h172858746475c5bf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 757 } Some("<&T as core::fmt::Debug>::fmt::h8cfdce0eb497b4d5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 764 } Some(">::process::hfdc7b402899a19b4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 766 } Some("::write_str::he0f136bfd437b8d6[3]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 676 } Some("links_notation::parser::reference_or_link::h83c9f76e0b3ee750") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 104 } Some("::remove_name::h4d292a70d4d2b015") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 952 } Some("rustc_demangle::v0::Printer::print_sep_list::h13d938e40457b07b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1052 } Some("::write_str::hca0c70a1f76e04ee") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1061 } Some("core::str::count::do_count_chars::ha059beff1dcfd22f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 801 } Some("::write_str::he0f136bfd437b8d6[4]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 153 } Some("alloc::vec::Vec::dedup_by::h76f2d1cc8d85f54b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 219 } Some("hashbrown::raw::RawIterRange::next_impl::had32e004dd8b9da9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 832 } Some("::write_str::he0f136bfd437b8d6[5]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 917 } Some("::write_str::he0f136bfd437b8d6[6]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 572 } Some("core::slice::sort::unstable::quicksort::quicksort::h112e86010fbdba83") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 34 } Some("core::slice::sort::stable::quicksort::stable_partition::h5227454409672586") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 134 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h8cb09994f965f658") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 776 } Some("alloc::vec::splice::>::fill::h8ca4bdb8bbc8db5b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1096 } Some("memcmp") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 678 } Some(">::process::hbce033ff1a4a9adc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1069 } Some("core::num::bignum::Big32x40::mul_pow2::he540d63cbba9f9ce") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 192 } Some("core::iter::adapters::try_process::h94f60ebdeab49748") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 258 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h16637c580ae9cd08") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1094 } Some("::fmt::h70826c1471ad6aa5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 715 } Some("core::str::::trim_start_matches::h1af5fd3cacf24dd7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 317 } Some("serde_json::read::parse_escape::hb8b09a781dd3a88b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 12 } Some(" as core::fmt::Debug>::fmt::h2aab8e16414aa247") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 662 } Some("lino_env::LinoEnv::read::hc76d0e1f17753b8c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 535 } Some("core::str::::trim_end_matches::h5a4be1cde2259590") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 751 } Some(" as core::clone::Clone>::clone::ha4fdad38e8edc67f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 783 } Some("anyhow::chain::::next::h98a6501635c2439f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 933 } Some(" as core::iter::traits::iterator::Iterator>::next::h06ac467fa6821447") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 73 } Some("anyhow::__private::format_err::h515feed03fd0eb31") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 366 } Some("alloc::raw_vec::RawVecInner::grow_exact::h144d15d77c2a7fb4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 29 } Some("link_cli::query_processor::QueryProcessor::resolve_patterns_readonly::h82f6551c88fa79cf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 89 } Some("core::ptr::drop_in_place::hce020fc2df362ca7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 559 } Some("link_cli::query_types::Pattern::new::h1870cc4cfa454617") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1009 } Some("core::fmt::write::h31474238f266a14a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1010 } Some("::fmt::hdabd1f682409e9fe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 653 } Some("std::sys::thread_local::no_threads::LazyStorage::initialize::he0d61400c0c75a47") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 214 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h603a7c6dbefb45a9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 61 } Some("core::slice::sort::shared::smallsort::sort4_stable::h8ac8c2af49a0bb27") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1002 } Some("alloc::raw_vec::RawVecInner::finish_grow::h3f58234d4b0bf44e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 224 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h64fbbbfb6373d9e7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 421 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h45ed519d0e54e330") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 701 } Some(">::process::he841c67876f41dc8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 626 } Some("std::env::set_var::h8c8fd532ac3f9856") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1074 } Some("core::str::slice_error_fail_rt::he82115ffb6428cf1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1036 } Some("core::fmt::num::::fmt::ha732d4e58d578f99") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1062 } Some("core::fmt::Formatter::write_formatted_parts::h6b7de073ecd0899c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 822 } Some("core::error::Error::cause::h45b0c5013acb14cc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 240 } Some("core::slice::sort::stable::merge::MergeState::merge_down::h8689884e00d69c2d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1037 } Some("core::fmt::num::::fmt::h9e0bbeff346e659b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 956 } Some("rustc_demangle::v0::Printer::in_binder::hbd2f3656a39967ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 105 } Some("::get_or_create::hbc6d3be2ba31b855") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1043 } Some("core::fmt::float::float_to_decimal_common_exact::hdea1d2c294e1b44a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 852 } Some(" as core::error::Error>::source::h15f2d59419c0814e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 608 } Some(" as core::iter::traits::iterator::Iterator>::fold::hc249f7f698762cc8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 984 } Some("core::num::::from_ascii_radix::h4e90144f6e2f4ef0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 709 } Some(" as core::clone::Clone>::clone::h9ad5700457ff3681") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 473 } Some("hashbrown::map::HashMap::insert::h9dd17f25c2c90cfb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 862 } Some("__rustc[16f1505adc47261a]::__rdl_realloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1097 } Some("__multi3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 181 } Some("serde_core::ser::SerializeMap::serialize_entry::h361fc92a2772860c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 955 } Some("rustc_demangle::v0::Printer::in_binder::heb739412fb9432e3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 74 } Some("core::ptr::drop_in_place::hf8df4bf330256d8b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 179 } Some("serde_core::ser::SerializeMap::serialize_entry::h2e5cf5e4e3c48534") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 763 } Some(">::process::h6b06469aa07c84b3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 965 } Some("rustc_demangle::v0::Printer::print_const_str_literal::hede1b3eac6c81742") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 964 } Some("rustc_demangle::v0::Printer::print_quoted_escaped_chars::h85a9f6612023728d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 959 } Some("rustc_demangle::v0::Printer::print_lifetime_from_index::ha53286208e1da926") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 253 } Some("core::ptr::drop_in_place::hf8df4bf330256d8b[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 136 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h8cf43c76e061b983") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 441 } Some("hashbrown::raw::RawTable::reserve_rehash::h1065930b5221434a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 81 } Some("clink_wasm::Clink::snapshot::hb146ea4842a3d372") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 301 } Some("serde_json::de::Deserializer::parse_whitespace::hf497829b48622b53") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 750 } Some(" as core::clone::Clone>::clone::h2b8dccc6ef517517") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 471 } Some("hashbrown::map::HashMap::insert::h165e6083300a1d70") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 703 } Some(" as core::fmt::Debug>::fmt::h8f3c03da4bcb533d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 116 } Some("link_cli::named_type_links::NamedTypeLinks::get_or_create_named::h90b5bf6c089dfa2e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 668 } Some("links_notation::parser::whitespace::hb7448ddcdbe6f1c1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 727 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::hbf1c0fe891df8e56") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 960 } Some("rustc_demangle::v0::Printer::print_type::{{closure}}::h98dbc4414ca0c35c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 393 } Some("alloc::raw_vec::RawVecInner::deallocate::h2a9f09ba5f157bc9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 675 } Some("links_notation::parser::multi_line_values::hb7485c5a8e07359e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 311 } Some(" as serde_core::de::SeqAccess>::next_element_seed::has_next_element::h1db02720e7e1a0a8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 718 } Some("alloc::vec::in_place_collect::from_iter_in_place::h66b6a475a300f8b3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 616 } Some("alloc::raw_vec::RawVecInner::deallocate::h022515dbe4da5470") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 867 } Some("__rustc[16f1505adc47261a]::__rdl_alloc_zeroed") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1045 } Some("core::num::flt2dec::strategy::grisu::format_exact_opt::he1be7fe0b3d2452a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 643 } Some("alloc::raw_vec::RawVecInner::deallocate::hb00a68af5af85451") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 464 } Some(" as core::iter::traits::iterator::Iterator>::next::hc1d3bc456bd56efc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 962 } Some("rustc_demangle::v0::Printer::print_const_uint::h104a5faf47ecbfea") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1000 } Some("::write_str::he0f136bfd437b8d6[7]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 665 } Some("alloc::raw_vec::RawVecInner::deallocate::h889d3625a688152c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 688 } Some(">::process::h2a4379722e56f3c3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 624 } Some("lino_arguments::init::h7b6fa5990669a203") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 252 } Some("serde_json::de::Deserializer::deserialize_number::h901e841e9efce3f2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 771 } Some("alloc::raw_vec::RawVecInner::deallocate::h9574a328f66dd5fd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 648 } Some(" as core::iter::traits::iterator::Iterator>::next::h4572834ee8d3d066") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 833 } Some("alloc::string::String::truncate::h3be68fc5377b9f45") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 780 } Some("alloc::raw_vec::RawVecInner::deallocate::h50458ed76d41c850") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 926 } Some("dlmalloc::dlmalloc::Dlmalloc::insert_large_chunk::hc7cb11ca1345ed38") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 897 } Some("std::panicking::panic_with_hook::h77afe0ddfda2cb89") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 793 } Some("alloc::vec::Vec::extend_trusted::h8b465e1315e144dd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 950 } Some("rustc_demangle::v0::Printer::skipping_printing::h36761da78cb165de") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 472 } Some("hashbrown::map::HashMap::insert::h91278246980f1cfd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1038 } Some("core::fmt::num::::fmt::he6fbcf49a3276d84") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1077 } Some("core::str::count::char_count_general_case::h06e4f9b890e9ec50") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 25 } Some("link_cli::query_processor::QueryProcessor::create_or_update_resolved_link::hf8ce97713f7b3bd2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 447 } Some("hashbrown::raw::RawTable::reserve_rehash::hc6a91d93344fda4a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1095 } Some("::write_char::hf6357790f0441c1f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1040 } Some("core::fmt::num::::fmt::h05406171d1c9dd7b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 117 } Some("__wbg_clink_free") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 79 } Some("clink_wasm::Clink::new::haf41c9c06a4a0b2d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 495 } Some("alloc::vec::Vec::dedup_by::h683f8bcbb57b0cde") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 175 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::hbc412a8cd32b7085") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 171 } Some(" as core::iter::traits::iterator::Iterator>::next::hf1b19675a559faac") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 460 } Some("hashbrown::map::HashMap::insert::h2b5909ac14d4831f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 449 } Some("hashbrown::raw::RawTable::reserve_rehash::hf6366566d11ae8ae") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 82 } Some("clink_wasm::Clink::result::h1e9263188aa65206") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 463 } Some(" as core::iter::traits::iterator::Iterator>::next::hbb0cec1f777484a1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 249 } Some("serde_json::de::Deserializer::ignore_integer::hf0e1f6a65fc327be") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 208 } Some("alloc::rc::Rc::drop_slow::hc15a8356091377e3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 254 } Some(" as serde_core::de::MapAccess>::next_key_seed::h309eefa7ab2ce163") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 241 } Some("core::slice::sort::stable::merge::MergeState::merge_up::h8989bf7f92ca78bf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 280 } Some("::fmt::hac9c0e10d97fd087") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 442 } Some("hashbrown::raw::RawTable::reserve_rehash::h477522cfe45cdb67") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 756 } Some("<&T as core::fmt::Debug>::fmt::h51dd8db3eaef7b46") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 462 } Some(" as core::iter::traits::iterator::Iterator>::next::h8a6aa94deb00ddc7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 299 } Some("serde_json::de::Deserializer::parse_long_integer::hd8502860d6bf9f38") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1028 } Some("core::fmt::num::imp::::_fmt_inner::h21f77f4c8510767c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 124 } Some("clink_reset") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 328 } Some("::ignore_str::h436fdd2f88a54a02") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 126 } Some("clink_snapshot") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 465 } Some(" as core::iter::traits::iterator::Iterator>::next::hf8fee658d65ca054") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 768 } Some("alloc::slice::::repeat::h03c8beb4ee54ef9c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 331 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h876e6db0a1e0ea3d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 298 } Some("serde_json::de::Deserializer::parse_integer::h469e968a01b59c5c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 201 } Some("alloc::raw_vec::RawVec::grow_one::hf0349bf9cfe2bb20") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 397 } Some("alloc::raw_vec::RawVecInner::grow_amortized::hbfb2e600506432e3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 309 } Some("serde_json::de::Deserializer::next_char::h53c32edf8c04962e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 883 } Some("::fmt::h65634188156334a3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 448 } Some("hashbrown::raw::RawTable::reserve_rehash::hd30bb4f7a0c14cc5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 877 } Some("std::io::Write::write_fmt::hf2f7ade7905b1f4b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 642 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h08f22121a4bdb26f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 529 } Some("link_cli::query_processor::QueryProcessor::trace_msg::h5f5ec7085dbe867a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 689 } Some(">::process::h3b9bc179ab51e225") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 729 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h92f137c7d71524c6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 538 } Some("core::error::Error::cause::h187886d889cfd38a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1026 } Some("core::fmt::pointer_fmt_inner::he8c75c96296bd5e9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 779 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h70aafab78e1bb085") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1068 } Some("core::num::bignum::Big32x40::mul_digits::h4b3970c225d9a61a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 563 } Some("core::slice::sort::stable::quicksort::stable_partition::h39750de3fc27b8e8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 574 } Some("core::slice::sort::unstable::quicksort::partition_lomuto_branchless_cyclic::hb489d225c290e735") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 556 } Some(" as core::error::Error>::source::h7854a8daea7b3c5d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 892 } Some("alloc::raw_vec::RawVecInner::finish_grow::h4217bbf3026c2f59") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 578 } Some("alloc::raw_vec::RawVec::grow_one::h1133fb69ba9df3c0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 575 } Some("core::slice::sort::unstable::quicksort::partition_lomuto_branchless_cyclic::hf20080e387cbf4f2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1065 } Some("core::fmt::Formatter::debug_struct_field2_finish::h08cac909ec906e0d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 564 } Some("core::slice::sort::stable::quicksort::stable_partition::h95b83ceff73d9c91") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 122 } Some("clink_execute") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 579 } Some("alloc::raw_vec::RawVec::grow_one::h287bcb6409675470") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1084 } Some("core::unicode::printable::is_printable::hc2278c0d26a86fbc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 131 } Some("alloc::vec::Vec::extend_desugared::h6bf53397a373b8d6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1053 } Some("core::fmt::builders::DebugStruct::field::hd6fb479e598dd824") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 580 } Some("alloc::raw_vec::RawVec::grow_one::h42410122e9099377") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 170 } Some(" as core::iter::traits::iterator::Iterator>::next::hde90ab2b377f9187") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 137 } Some("alloc::vec::Vec::extend_desugared::h0b5b9a4db46fcc21") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 581 } Some("alloc::raw_vec::RawVec::grow_one::h743e1cd6fad9e9fe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 444 } Some("hashbrown::raw::RawTable::reserve_rehash::h937da9b1279760d9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 111 } Some("::get_link::h1992312f84cbf3a8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 582 } Some("alloc::raw_vec::RawVec::grow_one::haae7a44fed72c2e4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1022 } Some("core::fmt::num::imp::::_fmt_inner::he63902c806bd0202") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 300 } Some("serde_json::de::Deserializer::parse_exponent_overflow::h638e77b8bef958d4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 221 } Some(" as core::iter::traits::iterator::Iterator>::fold::h0e57b2f1f471db84") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 236 } Some("link_cli::link_reference_validator::LinkReferenceValidator::collect_missing_references_in_pattern::h3e60c33ee654ece3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 509 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h64cf7036598c8963") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 583 } Some("alloc::raw_vec::RawVec::grow_one::hc842e1957d6f5df0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 445 } Some("hashbrown::raw::RawTable::reserve_rehash::h93e0aca153842b21") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 500 } Some("core::hash::impls::::hash::hca2e23c2b27813ec") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 545 } Some("::fmt::hcec780b6f48009c8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 592 } Some("link_cli::link_reference_validator::LinkReferenceValidator::trace_msg::hc7ccb0b22bf1c520") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 222 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h51983b3cf73c180c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 481 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h1d5f22d83b236dd6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 446 } Some("hashbrown::raw::RawTable::reserve_rehash::hb4dae9dc4aeba05f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 728 } Some("alloc::raw_vec::RawVec::grow_one::h3723a000ec76b692") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 730 } Some("alloc::raw_vec::RawVec::grow_one::h42a093e0fcd41327") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 869 } Some("std::alloc::rust_oom::hbbbc0258d349aa94") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 731 } Some("alloc::raw_vec::RawVec::grow_one::h84ad3a5c9d82ad99") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1041 } Some("core::slice::index::slice_index_fail::hfe243a02a41519a0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 250 } Some("serde_json::de::Deserializer::ignore_decimal::h4d6a5f26fc3f4a8d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 732 } Some("alloc::raw_vec::RawVec::grow_one::hacd8cc9d323d867f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1187 } Some("clink_reset.command_export multivalue shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 969 } Some("rustc_demangle::v0::Printer::print_sep_list::h717206c187f55fee") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 721 } Some(" as nom::internal::Parser>::process::h441f0f58aee90b5f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 660 } Some("lino_env::LinoEnv::get::h4a625bded39a239f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 899 } Some("std::panicking::panic_count::increase::h540a4f946b6e7ad5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1190 } Some("clink_snapshot.command_export multivalue shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 550 } Some("anyhow::error::object_downcast::hc364e936cc562858") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 590 } Some("link_cli::link_reference_validator::LinkReferenceValidator::concrete_identifier::h98f12908752707ca") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 941 } Some("rustc_demangle::v0::basic_type::h137ba0fc79e4e653") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 154 } Some("alloc::vec::Vec::dedup_by::h893486d46388d54c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 844 } Some("anyhow::error::object_downcast::h5db11878998ba5c8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 476 } Some("hashbrown::map::HashMap::insert::hf1c08614cd8519c5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1033 } Some("core::fmt::num::imp::::fmt::hb24e64dd627b0762") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 609 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h118aa725c650487f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 845 } Some("anyhow::error::object_downcast::ha703e105779e3bb5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1034 } Some("core::fmt::num::imp::::fmt::h041a24f64485404e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 934 } Some("::count::h26738dc6304cbc41") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 650 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h3da438da24cb5071") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1186 } Some("clink_rustCoreVersion.command_export multivalue shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 72 } Some("clink_wasm::parse_options::{{closure}}::haffd6aed609b0b96") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 505 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::he817025f5facc159") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1189 } Some("clink_version.command_export multivalue shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1087 } Some("core::slice::memchr::memchr_aligned::hbbff53fde1867734") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 408 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h034f65530e6a37e6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 125 } Some("clink_rustCoreVersion") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 837 } Some("anyhow::fmt::::display::h50acb727561ed033") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 443 } Some("hashbrown::raw::RawTable::reserve_rehash::h6a290c3ca866447a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 180 } Some("serde_json::ser::format_escaped_str::h71defd32314c0838") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 411 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h63fdd9cb91e6efcd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1092 } Some("::next::he6314720ae185572") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 412 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h8c51d0be3e0da7a6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 128 } Some("clink_version") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 415 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hf62bd155c93f970a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 216 } Some("hashbrown::raw::RawIter::drop_elements::h3fbced93af391313") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 450 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h3b6cb4e01d31d438") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 279 } Some("serde_json::error::Error::syntax::h007d0dd0a754fcfa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 451 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h4a90bd8d93150bca") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 804 } Some(" as core::ops::drop::Drop>::drop::hede44ab70d212a78") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 112 } Some("::get_name::h6e8e5d79f4350ad3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 452 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h73a0af26b2334b36") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 565 } Some("core::slice::sort::stable::quicksort::quicksort::h529e268b6ea5d673") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 836 } Some("anyhow::error::ErrorImpl::backtrace::h2c19f4b61c23539d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 456 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::ha0a5f588c3c34745") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 881 } Some("core::panicking::assert_failed::ha546c957c0b066a0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 534 } Some("core::ptr::drop_in_place>::h0d4e1cf4e6a50e11") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 334 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h1e0a86f63600b561") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 925 } Some("::fmt::he70713942f8152e4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 436 } Some("hashbrown::raw::RawTable::remove_entry::h08d8cffdef47d5a6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 307 } Some("serde_json::de::Deserializer::end_seq::h2049119945c3db85") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 394 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h811dc2aba2e38de4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 551 } Some("anyhow::error::object_drop_front::h73957284c25268be") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1060 } Some("core::fmt::Formatter::pad_integral::write_prefix::hca46ac35d6da67d6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 504 } Some("core::slice::sort::shared::smallsort::sort4_stable::hf6a12325b8fa2733") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 586 } Some("std::collections::hash::map::HashMap::iter::ha9826029771acc3f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 589 } Some("link_cli::link_reference_validator::LinkReferenceValidator::is_composite_lino::h798b7c1b2204fe97") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1072 } Some("core::panicking::assert_failed::hf8fb5ffa21de4803") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 685 } Some(">::process::he0ea8b6410376f4f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 593 } Some("link_cli::lino_link::LinoLink::has_values::h6b1e83e52ef9b481") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 187 } Some("core::ptr::drop_in_place>::h09271920cf1b9501") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 840 } Some("anyhow::error::object_drop::h9b7e092401fbe9db") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 646 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h6c3fd5ba50b7cf0b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 276 } Some("core::str::pattern::TwoWaySearcher::next_back::hf8596ac8df717c57") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 278 } Some("serde_json::error::Error::io::h1d10749f9fc84c17") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 16 } Some("link_cli::query_processor::QueryProcessor::matched_links::he269a1cab3856495") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 846 } Some("anyhow::error::object_drop_front::h49cd7ee7140f284f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 319 } Some("serde_json::read::error::hd3bf344db2a57722") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 67 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h25186ce47efa04c0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 428 } Some("hashbrown::raw::RawIter::drop_elements::h45266f2f088c871c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 734 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h14f3b122ab9a8c23") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 847 } Some("anyhow::error::object_drop_front::hf2c148251e711fc7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 654 } Some("std::thread::local::LocalKey::with::ha86a162d4c85424d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 913 } Some("core::ptr::drop_in_place::hf7b8d0e0fb4c83c3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 778 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hda9dbc398c46d7a7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 945 } Some("rustc_demangle::v0::Parser::ident::hfc20932a2c2fcf98") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 986 } Some("core::slice::::starts_with::hc617a7dc4a4c42b7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 655 } Some("core::ptr::swap_nonoverlapping_bytes::swap_nonoverlapping_chunks::h48766776f96010b1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1051 } Some("core::fmt::float::::fmt::h35573ff003c93dff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 710 } Some("core::ptr::drop_in_place>::haaf2a8f37cc34aa7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 993 } Some("hashbrown::raw::Fallibility::alloc_err::h6877d27c2240a353") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1013 } Some("core::fmt::num::::fmt::h53aa0353012ac719") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 989 } Some("::fmt::he65c5ade22a81ffd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 132 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h7c79319ec41bf5a2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 315 } Some("serde_json::read::error::hddb3c34406126de0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1029 } Some("core::fmt::num::imp::::_fmt::hcea67b2fcef29dc9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 115 } Some("link_cli::named_type_links::NamedTypeLinks::format_structure_recursive::hf05e2a9b21f9d38b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 321 } Some("serde_json::read::error::hb85de491bb1c907e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 373 } Some("__wbindgen_destroy_closure") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 9 } Some("core::ops::function::FnOnce::call_once::hed9f7338b0d14911") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 716 } Some(">::process::h1d107f7e3aaa9c7a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 392 } Some("__wbindgen_realloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 322 } Some("serde_json::read::error::h659c70d3f7140cf0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 93 } Some("core::ops::function::FnOnce::call_once::hed9f7338b0d14911[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 212 } Some("hashbrown::raw::RawTable::clone_from_impl::h2ba349afe147b1fe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 458 } Some("hashbrown::raw::RawTable::reserve::h9990d18be6adc5a0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 237 } Some("link_cli::link_reference_validator::LinkReferenceValidator::validate_reference_identifier::h4d1accda3d37e89e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 147 } Some("core::ops::function::FnOnce::call_once::hed9f7338b0d14911[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 921 } Some("::fmt::hb9180c2d4ce39d24") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 229 } Some("core::ops::function::FnOnce::call_once::hed9f7338b0d14911[3]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 378 } Some("wasm_bindgen::convert::slices::>::from_abi::h2f8c4106cd6248fa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 557 } Some(" as core::fmt::Display>::fmt::h1173f79244aa09d3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 799 } Some("core::slice::index::range::h6ee3bdea6e4a5477") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 418 } Some("core::ptr::drop_in_place<(u32,link_cli::query_types::ResolvedLink)>::h24d0d4f84daaec27") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 929 } Some("::take_box::h0536373fffc709d7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 614 } Some(" as core::ops::drop::Drop>::drop::h9f06e31ecf50bbbb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 498 } Some("core::ops::function::FnOnce::call_once::h8297d6df423572f5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 571 } Some("core::slice::sort::unstable::ipnsort::h29d99779f2599863") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 659 } Some(" as core::ops::drop::Drop>::drop::hac14a5568089d52f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 148 } Some("core::ptr::drop_in_place::h7712af1fd7a43e7f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 878 } Some("std::io::stdio::print_to_buffer_if_capture_used::h2f80a095e9511588") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 438 } Some("hashbrown::raw::RawTable::remove_entry::hc62f0f8a7b343f75") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 514 } Some("core::ops::function::FnOnce::call_once::h8297d6df423572f5[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 754 } Some(" as core::ops::drop::Drop>::drop::hd35a389d0967544e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 612 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h12fdb662403390d5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1076 } Some(" as core::fmt::Debug>::fmt::h38c64a8189ec9798") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 297 } Some("serde_json::de::Deserializer::f64_from_parts::h8a509785484edce3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 629 } Some("core::ops::function::FnOnce::call_once::hd96667ad86be1345") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 313 } Some("itoa::Buffer::format::h8729d8ff75dc8b07") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 99 } Some("::write_str::he0f136bfd437b8d6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 905 } Some("core::fmt::Write::write_char::h96f18f2e6fc7992f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 635 } Some("core::ptr::drop_in_place<(alloc::string::String,alloc::vec::Vec)>::h21457367d8f36608") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 874 } Some("<&T as core::fmt::Display>::fmt::h919466cac3e4a537") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 726 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h59f912fe7b1ed5da") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 621 } Some("lino_arguments::load_env_file::h7bf42c07e1b7e532") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 186 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hb4f4a455d64b17c8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 440 } Some("hashbrown::raw::RawTable::insert_no_grow::h313d017a4888f899") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1020 } Some("::fmt::h0de301c805326a7a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 189 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hbe40b8241b854537") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 649 } Some(" as core::iter::traits::iterator::Iterator>::next::h2f5c0264395a10ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 96 } Some("core::ptr::drop_in_place::h1b2c203c429aa059") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 271 } Some("::write_str::he0f136bfd437b8d6[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 868 } Some("__rustc[16f1505adc47261a]::__rust_alloc_error_handler") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 918 } Some("::fmt::hc36cb7baeefa6fe9[5]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1075 } Some("core::option::unwrap_failed::h351295eb7223eb75") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 400 } Some("<::fmt::LookForDecimalPoint as core::fmt::Write>::write_char::h769fffa5e934fedc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 684 } Some("core::ptr::drop_in_place::ha5aed1421bd6cbb9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1085 } Some("core::slice::sort::shared::smallsort::panic_on_ord_violation::he7e0843cdba42655") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 873 } Some("<*mut T as core::fmt::Debug>::fmt::he6d7f5af0e79b4b0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 295 } Some("serde_json::de::Deserializer::peek_or_null::ha00eab2b3aa2a3d8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 712 } Some("core::ptr::drop_in_place::ha5aed1421bd6cbb9[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 409 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h2d79e5c5925fae8c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1178 } Some("__wbindgen_free.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 885 } Some("std::sys::fs::remove_dir::hd4e1f99082914392") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 982 } Some(" as core::fmt::Write>::write_str::h8bc8f40c7696ec57") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 924 } Some("::fmt::hc8d087d6955a60e5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 410 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h5819739815e78e56") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 519 } Some("::write_str::he0f136bfd437b8d6[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 91 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::hdcbf511aeb6b2eb4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 927 } Some("::get::h1386487f02069651") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 413 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hc1fd38e9cc494aaf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 94 } Some("core::ptr::drop_in_place::h1d9b57aa6f12dabe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 202 } Some("alloc::rc::Rc::new::h1900e9af7183fe91") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 620 } Some("core::ptr::drop_in_place>::hb66a97835b947481") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 902 } Some("<&T as core::fmt::Debug>::fmt::h5415322229815c42") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 97 } Some("::fmt::ha795e604dc1e6ee6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 935 } Some("<&T as core::fmt::Debug>::fmt::h7ef691b01892272d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 260 } Some("__rustc[16f1505adc47261a]::__rust_alloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 414 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::he9a49be83aca601f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 928 } Some("::as_str::he125ac6f7c5f4796") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 341 } Some("::format_nonfinite::h6c5b65d2223de93a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 263 } Some("__rustc[16f1505adc47261a]::__rust_alloc_zeroed") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 453 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h7dff2af00fd7455c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 936 } Some("<&mut T as core::fmt::Debug>::fmt::hdd0bb453914914c5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 787 } Some("anyhow::error::::msg::h0cc3bb8ad3263b43") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 268 } Some("core::ptr::drop_in_place::h26302e1c0e2a60a0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 850 } Some("anyhow::error::ErrorImpl::error::h35df4641bf57ac6f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 454 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h7fc37dae17b30581") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 269 } Some("::fmt::ha795e604dc1e6ee6[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 976 } Some("<&T as core::fmt::Display>::fmt::h257e3a92f5b698f6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1024 } Some("core::panicking::panic_fmt::h6651313c3e2c6c2f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 455 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::h9345724fd4fc6e5f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 895 } Some("::fmt::h79b5a0e95bf897ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 978 } Some("<&T as core::fmt::Display>::fmt::h9cdd48a673a61204") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 281 } Some("::fmt::ha79ed5026b6d01b3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1088 } Some("core::option::expect_failed::h7377ee23bee75e81") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 915 } Some("::fmt::h69cba1aad9b39a0a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 457 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::hca951a281f3602ed") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 344 } Some("wasm_bindgen::throw_str::hc3fcf18e0583c2d7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 979 } Some("<() as core::fmt::Debug>::fmt::hc1fa3557c1c58a4d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1023 } Some("<&T as core::fmt::Display>::fmt::h461148083df94021") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 533 } Some("core::ptr::drop_in_place::hf2d40df5f7bd1b14") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1086 } Some("core::slice::sort::stable::drift::sqrt_approx::h73d10e82bb3324f1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 305 } Some("serde_json::de::Deserializer::error::h6c927ce0e065172c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 375 } Some("wasm_bindgen::__rt::throw_null::h7f1ad49ee0054d13") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 304 } Some("serde_json::de::Deserializer::new::h29b1fc31dd41c938") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 594 } Some("link_cli::lino_link::LinoLink::values_count::he9d0b2852a575f91") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 987 } Some("::fmt::ha795e604dc1e6ee6[4]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 391 } Some("__wbindgen_malloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 991 } Some("::fmt::h8168286e971afe78") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1180 } Some("__wbindgen_realloc.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 994 } Some("alloc::alloc::handle_alloc_error::hec8d3aa2a30efaa7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 671 } Some("links_notation::parser::ParserState::new::hf5b9dc188cbaa91c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 708 } Some("alloc::alloc::exchange_malloc::h3f3cedb9a2faa0fd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 554 } Some("anyhow::error:: for anyhow::Error>::from::h4b789515a02b1f04") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 774 } Some("<&T as core::fmt::Debug>::fmt::hf4786875036d13bf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 376 } Some("wasm_bindgen::__rt::borrow_fail::h05969a62754a3c39") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 788 } Some("anyhow::error::::msg::hd0222614594274af") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 853 } Some(" as core::fmt::Display>::fmt::h3ffc5b5811a8e28c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 894 } Some("std::thread::local::panic_access_error::h51965b3f73a3f6a3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 261 } Some("__rustc[16f1505adc47261a]::__rust_dealloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 997 } Some("::fmt::ha795e604dc1e6ee6[5]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 891 } Some("std::alloc::rust_oom::{{closure}}::hd75745f6cab4b1f8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 267 } Some("core::fmt::Write::write_fmt::h8221c481799dee91") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 399 } Some(" as core::ops::drop::Drop>::drop::hb8690d894311963d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1056 } Some("core::fmt::builders::DebugSet::finish::ha3db38f7e921b22c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 992 } Some("hashbrown::raw::Fallibility::capacity_overflow::h99a4c32684b92cb7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 402 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::expecting::h0b2428a6cab8e5e2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 975 } Some("<&T as core::fmt::Debug>::fmt::h856608318541b96d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 403 } Some("core::fmt::Write::write_fmt::h0a648d2107503fab") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 407 } Some("::expecting::h3601bdcd598108f4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 625 } Some("lino_arguments::auto_init::f::f::h8376933c281cc0a6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1057 } Some("core::fmt::builders::DebugList::finish::hc753708777d978b0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 515 } Some("core::ptr::drop_in_place::hddbf964d01e25eca") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1018 } Some("::fmt::h790d2f8117538842") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 406 } Some("::fmt::hcad6b9b7bcbeb012") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 656 } Some("core::option::Option<&T>::cloned::hf7ca124e9c4a2201") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 157 } Some(" as core::ops::drop::Drop>::drop::h4c2d45b93d4ca96f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1079 } Some("core::cell::panic_already_borrowed::hed79291954bfa6ad") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 674 } Some("links_notation::parser::is_reference_char::h8ccb5c3bbeac3150") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1080 } Some("::fmt::h035f2721315d9af6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 522 } Some("link_cli::query_processor::QueryProcessor::is_normal_index::hed9e6ec3cdc025eb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 517 } Some("::fmt::ha795e604dc1e6ee6[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 584 } Some(" as core::ops::drop::Drop>::drop::h0471042c096bbbf3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 422 } Some(" as core::ops::drop::Drop>::drop::h7c54eba483a31388") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 758 } Some("<&T as core::fmt::Debug>::fmt::h9abaa72c85e504fd") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 424 } Some(" as core::ops::drop::Drop>::drop::h9e8a21774a97dda4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1081 } Some("core::cell::panic_already_mutably_borrowed::hacc25964e8eff904") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 856 } Some("__rustc[16f1505adc47261a]::__rdl_alloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 426 } Some(" as core::ops::drop::Drop>::drop::hd4f50ff734c5e092") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1082 } Some("::fmt::h9295ee9cb44d499e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 866 } Some("std::sys::backtrace::__rust_end_short_backtrace::h46ab1174c51ef229") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 611 } Some(">::equivalent::h48a3b4155404a9fe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 585 } Some(" as core::ops::drop::Drop>::drop::h5cad085e0a0fefbf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 761 } Some("core::fmt::Write::write_fmt::ha6d355a62b995118") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1188 } Some("clink_execute.command_export multivalue shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 795 } Some("core::fmt::Write::write_fmt::hce5419e3c1f14b7e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 900 } Some("core::ptr::drop_in_place>>::hd8232a1684e31e26") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 812 } Some("core::fmt::Write::write_fmt::hfe8877eacc611324") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1098 } Some("__wbg_clink_free.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 855 } Some("__rustc[16f1505adc47261a]::rust_panic") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 890 } Some("std::sys::backtrace::__rust_end_short_backtrace::h81a6ec13af23b259") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 882 } Some("std::thread::id::ThreadId::new::exhausted::he2ee573d11e97408") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 595 } Some("link_cli::lino_link::LinoLink::is_empty::hccecfb9240638f76") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1105 } Some("clink_reset.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 887 } Some("std::sync::lazy_lock::panic_poisoned::hc9e69d6c60b7f192") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 596 } Some("<&T as core::fmt::Display>::fmt::h11227eaa4fe69541") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 904 } Some("core::fmt::Write::write_char::h228193457b3d0032") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 657 } Some(">::equivalent::h47889b3073b61839") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 893 } Some("std::alloc::default_alloc_error_hook::h4ae318a4060b4b2e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1107 } Some("clink_snapshot.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 618 } Some(" as core::ops::drop::Drop>::drop::h09f86f4a5d11f7ca") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 906 } Some("core::fmt::Write::write_fmt::h19c1a3fd051d9427") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 723 } Some("core::ptr::drop_in_place::ha5aed1421bd6cbb9[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 912 } Some("core::ptr::drop_in_place::h5f918006ef5d0ce0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1176 } Some("__wbindgen_destroy_closure.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 907 } Some("core::fmt::Write::write_fmt::h628b111ce4addafb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 647 } Some(" as core::ops::drop::Drop>::drop::h83bf45cd39b0ce42") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 865 } Some("__rustc[16f1505adc47261a]::rust_begin_unwind") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 898 } Some("std::panicking::panic_count::is_zero_slow_path::h9b5765c0b9fb1921") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 922 } Some(" as core::fmt::Write>::write_str::h5208c35ce97bc633") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1179 } Some("__wbindgen_malloc.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 908 } Some("core::fmt::Write::write_fmt::h92d688dc804be37f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 215 } Some(" as core::ops::drop::Drop>::drop::h4e8c46d376afbddc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 974 } Some("<&T as core::fmt::Debug>::fmt::h0826d01f6c679d5d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 652 } Some("std::fs::metadata::h9c8ced915b32f53a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 914 } Some("core::panic::PanicPayload::as_str::h17c1d5120cb39a3f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1185 } Some("console_error_panic_hook::Error::stack::__wbg_stack_3b0d974bbf31e44f::hbb63524c8b880f38 externref shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 983 } Some("core::fmt::Write::write_fmt::h0c5fc174461b1870") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 996 } Some("core::ptr::drop_in_place::ha81d5d6d1f64702a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 666 } Some(" as core::ops::drop::Drop>::drop::h36b5b32fc8dbf08a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 255 } Some(" as serde_core::de::MapAccess>::next_value_seed::he85a1cbe721e58b3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 735 } Some(" as core::ops::drop::Drop>::drop::h535d9c2d1ebdc03b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 995 } Some("core::fmt::Write::write_fmt::hcb33ccda108f2947") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 10 } Some("core::ptr::drop_in_place>::hbefafdfad20e5df5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 190 } Some("::fmt::h0b4cbaa31d15ccaf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1005 } Some("alloc::raw_vec::capacity_overflow::h0af0840ea1b2ff66") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 256 } Some(" as serde_core::de::MapAccess>::next_value_seed::hf7aa8ab6b959ffbf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 736 } Some(" as core::ops::drop::Drop>::drop::h67b33fdd568d89e0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1106 } Some("clink_rustCoreVersion.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 95 } Some("core::ptr::drop_in_place>::hbefafdfad20e5df5[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1014 } Some("<&T as core::fmt::Debug>::fmt::h3835acac6879dd8a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 191 } Some("::fmt::h628a1e339df82f8b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 762 } Some("core::ptr::drop_in_place::ha7ecd16ce8af2a50") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 427 } Some(" as core::ops::drop::Drop>::drop::h08eda82b3042cf4b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 149 } Some("core::ptr::drop_in_place>::hbefafdfad20e5df5[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1109 } Some("clink_version.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 773 } Some(" as core::ops::drop::Drop>::drop::h656b231fb91fc0d6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1042 } Some("core::fmt::Write::write_fmt::had1338797e9284de") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 291 } Some("serde_json::de::Deserializer::fix_position::hbb69aa2caecf8846") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 223 } Some("core::ptr::drop_in_place::h7d203754c7d662e7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 789 } Some("anyhow::error::::fmt::h202e9e4e66da7506") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 623 } Some("core::ptr::drop_in_place>::hdad69b53a163d031") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1071 } Some("core::panicking::panic_const::panic_const_div_by_zero::h8e4a0d4c04b4b1f1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1173 } Some("__externref_table_dealloc.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 230 } Some("core::ptr::drop_in_place>::hbefafdfad20e5df5[3]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 796 } Some("core::ptr::drop_in_place::hacb0b995392e7237") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1108 } Some("clink_test.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 343 } Some("wasm_bindgen::__wbindgen_throw::h7813ef6bc1957fbe") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1058 } Some("core::fmt::Formatter::debug_list::h25e734e3365b69f4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1174 } Some("__externref_table_alloc.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 539 } Some("core::error::Error::source::h3eaabd9f2f10d5bb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 127 } Some("clink_test") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 555 } Some(" as core::fmt::Debug>::fmt::h6590fcd2d24f2c9c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 818 } Some("core::ptr::drop_in_place::hacb0b995392e7237[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 599 } Some("core::error::Error::cause::h70fca678ea118d8d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 340 } Some("itoa::slice_buffer_to_str::h3301efd3686dcb5e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1059 } Some("core::fmt::Formatter::debug_struct::h0241484531271418") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 775 } Some("<*const T as memchr::ext::Pointer>::distance::h49dbdd3e3c63f8cb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 516 } Some("core::ptr::drop_in_place>::he0cf1ba3a43194af") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1177 } Some("__wbindgen_exn_store.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 264 } Some("__rustc[16f1505adc47261a]::__rust_no_alloc_shim_is_unstable_v2") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 797 } Some("core::error::Error::cause::h4a588bb516f614d9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 542 } Some("core::error::Error::type_id::h4745c0ffb30ff764") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1066 } Some("core::fmt::Formatter::debug_set::h85c9cacafda1a594") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 381 } Some("wasm_bindgen::convert::traits::WasmRet::join::hd7188a2e15b6c9c7") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 830 } Some("::fmt::ha795e604dc1e6ee6[3]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 543 } Some("core::error::Error::type_id::h68f3377429de72c6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 8 } Some("__wasm_call_ctors") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 548 } Some("anyhow::error::no_backtrace::h3f60895cd20aafde") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 610 } Some("core::ptr::drop_in_place>::h4f64e2127a059cb3") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 798 } Some("core::error::Error::cause::h9104919184d2a495") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 62 } Some("core::slice::sort::shared::smallsort::sort8_stable::h101f3b4bc7f6e9ea") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 162 } Some("core::ops::function::Fn::call::h14790a335fc118f1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1067 } Some("core::fmt::Formatter::write_str::h906c9016730dabac") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 784 } Some("anyhow::error::no_backtrace::h3f60895cd20aafde[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 805 } Some(" as core::fmt::Debug>::fmt::h74cbaffa87e2461a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 859 } Some("__rustc[16f1505adc47261a]::__rust_abort") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 706 } Some("core::ptr::drop_in_place>::h2ee03ea907f34ef6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 64 } Some("core::slice::sort::shared::smallsort::sort8_stable::h605c8228dd54971c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 163 } Some("core::ops::function::FnMut::call_mut::h5f6487451d3308df") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 807 } Some(" as core::fmt::Display>::fmt::h0c9acd76283b3b2a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 398 } Some(" as core::ops::drop::Drop>::drop::hf67e70d1f27f1143") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 724 } Some("core::ptr::drop_in_place>::h2ee03ea907f34ef6[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 823 } Some("core::error::Error::source::h5fc9655b69968da0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 747 } Some("core::ptr::drop_in_place>::h2ee03ea907f34ef6[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 497 } Some(" as core::ops::drop::Drop>::drop::h2737ef8687f2a7ce") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 851 } Some(" as core::fmt::Debug>::fmt::h0f5ffd9396434194") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 809 } Some(" as core::ops::drop::Drop>::drop::h33efd19adb7edb44") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 819 } Some("core::ptr::drop_in_place>>::h53cce423faad496b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1103 } Some("clink_execute.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 164 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hd53237669192b4e8") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 277 } Some("serde_json::error::Error::fix_position::h18f228f358a1ddd0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 540 } Some("core::error::Error::provide::h619d8528d9441794") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 829 } Some("core::error::Error::type_id::h883a0dc50a1c5f4e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 541 } Some("core::error::Error::provide::ha330b44f8309ddc6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 826 } Some("core::error::Error::type_id::h1be56a9f48d8b138") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 617 } Some(" as core::ops::drop::Drop>::drop::h8ab3fef2bccc8ceb") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 395 } Some("alloc::vec::Vec::reserve::h9187303ce2cf4d28") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 870 } Some("::type_id::h054965a0d695c3ae") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 790 } Some("anyhow::error::::drop::hbe1382bbb87a76ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 493 } Some("alloc::vec::Vec::reserve::h7d296badb57f6630") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 667 } Some(" as core::ops::drop::Drop>::drop::h016132787e4e0d52") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 794 } Some("<&T as core::fmt::Display>::fmt::hb1c2df24076f9c68") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 827 } Some("core::error::Error::type_id::h1f5d4d60c619e8ff") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 871 } Some("::type_id::h81f53a1fd46151f1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 327 } Some("::ignore_str::habe454ad54e46629") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 828 } Some("core::error::Error::type_id::h5efe187877bdbdb1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1001 } Some("alloc::raw_vec::handle_error::h9ace31a903e6893e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 772 } Some(" as core::ops::drop::Drop>::drop::h7f3e13a98bf2a88a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1091 } Some("::fmt::hbcd850b988e2ebc5") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 324 } Some("serde_json::read::StrRead::new::h3d6fa10a9c651606") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 494 } Some("alloc::vec::Vec::reserve::ha02c7c1116b90259") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 389 } Some("__wbindgen_exn_store") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 374 } Some(" as core::convert::From>>::from::h97756eb6a1eb87b6") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1012 } Some("core::str::slice_error_fail::h6fff99a0df5e8008") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 390 } Some("__wbindgen_free") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 520 } Some("link_cli::query_processor::QueryProcessor::is_variable::hb9679865eda69f02") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 824 } Some("core::error::Error::provide::h3e84e375cf06e92b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 770 } Some("<&str as nom::traits::Input>::input_len::h4a23a3c9f5beb9f9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 658 } Some(">::equivalent::h7038943c87372a0d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 546 } Some("anyhow::error::object_ref::h20a0d9b55d8636dc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 825 } Some("core::error::Error::provide::h3f776e80a2cc4f1e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1044 } Some("core::panicking::panic::h0149fc8f1656305a") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1016 } Some("<&T as core::fmt::Debug>::fmt::h69c822ac52be0e12") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 537 } Some("core::error::Error::description::ha8c90e78650429de") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 87 } Some("::fmt::hc36cb7baeefa6fe9") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 854 } Some("__rustc[16f1505adc47261a]::__rust_start_panic") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 558 } Some("link_cli::query_types::ResolvedLink::to_link::h2cbe47a9c2ea22c4") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 748 } Some("alloc::vec::Vec::reserve::h9e75b271fe72dd0f") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 232 } Some("::fmt::hc36cb7baeefa6fe9[1]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1093 } Some("::write_char::he8d9f9d9e75b1905") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 663 } Some("<&T as core::fmt::Debug>::fmt::h740175a32bbd7548") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1104 } Some("clink_new.command_export") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 749 } Some("alloc::vec::Vec::reserve::hec022389f1d6b419") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 547 } Some("anyhow::error::object_drop::ha6f563b395b5e472") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 262 } Some("__rustc[16f1505adc47261a]::__rust_realloc") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 760 } Some("<&T as core::fmt::Display>::fmt::h07ae2fd15e89edac") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 817 } Some("core::ptr::drop_in_place>>::h386bcd17d3098496") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 265 } Some("wasm_bindgen::convert::slices::>::into_abi::h86e39b0ca4286c9b") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 838 } Some("anyhow::error::object_ref::h51c199de4bc637aa") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 549 } Some("anyhow::error::object_boxed::hc1f3d52fa820ec56") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 1184 } Some("console_error_panic_hook::Error::new::__wbg_new_227d7c05414eb861::hf4282e1196ce04ca externref shim") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 308 } Some("serde_json::de::Deserializer::eat_char::h8488ae7ea406e5e1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 839 } Some("anyhow::error::object_ref::he006372278486c75") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 560 } Some("link_cli::query_types::Pattern::is_leaf::hc94f588384fe6c2e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 338 } Some("alloc::vec::Vec::extend_from_slice::h50b65ffdacb64e70") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 312 } Some("<&T as core::fmt::Display>::fmt::hfb13eb6f0eadbd9e") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 380 } Some("wasm_bindgen::convert::traits::WasmRet::join::h087f945b2b068a98") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 536 } Some("core::error::Error::description::h13c917a656c1f79c") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 767 } Some("alloc::slice::::join::h9081c8abb9ec4e68") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 587 } Some("::fmt::hc36cb7baeefa6fe9[2]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 628 } Some("<&T as core::fmt::Debug>::fmt::h1f7ddb33491a99b1") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 808 } Some(" as core::fmt::Display>::fmt::hcf6adb6021ec41cf") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 634 } Some("std::path::Path::new::h76071fc45b356d01") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 821 } Some("core::error::Error::description::h5d7487853e1838f0") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 842 } Some("anyhow::error::object_boxed::h44f984cfeb9cf173") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 834 } Some("::fmt::hc36cb7baeefa6fe9[4]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 600 } Some("::fmt::hc36cb7baeefa6fe9[3]") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 820 } Some("core::error::Error::description::h0c1760f8aa2e1b42") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 806 } Some(" as core::fmt::Debug>::fmt::hbf5a121393c05963") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 843 } Some("anyhow::error::object_boxed::hf595192d77e0ad5d") +[2026-05-02T10:31:20Z DEBUG walrus::module::functions] emit function Id { idx: 841 } Some("anyhow::error::object_drop::hae9c09779f5a14f8") +[2026-05-02T10:31:20Z DEBUG walrus::module::data] emit data section +[2026-05-02T10:31:20Z DEBUG walrus::module] emit name section +[2026-05-02T10:31:20Z DEBUG walrus::module::producers] emit producers section +[2026-05-02T10:31:20Z DEBUG walrus::module] skipping DWARF custom section +[2026-05-02T10:31:20Z DEBUG walrus::module] emitting custom section target_features +[2026-05-02T10:31:20Z DEBUG walrus::module] emission finished +[INFO wasm_pack::command::build] wasm bindings were built at "/tmp/gh-issue-solver-1777717653183/web/pkg". +[INFO wasm_pack::command::build] executing wasm-opt with ["-O"] +[INFO]: Optimizing wasm binaries with `wasm-opt`... +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-opt-1ceaaea8b7b5f7e0/bin/wasm-opt" "/tmp/gh-issue-solver-1777717653183/web/pkg/clink_wasm_bg.wasm" "-o" "/tmp/gh-issue-solver-1777717653183/web/pkg/clink_wasm_bg.wasm-opt.wasm" "-O" +[INFO wasm_pack::command::build] Wrote a package.json at "/tmp/gh-issue-solver-1777717653183/web/pkg/package.json". +[INFO wasm_pack::command::build] Copying readme from crate... +[INFO wasm_pack::command::build] Copied readme from crate to "/tmp/gh-issue-solver-1777717653183/web/pkg". +[INFO wasm_pack::command::build] Copying license from crate... +[INFO wasm_pack::command::build] Copied license from crate to "/tmp/gh-issue-solver-1777717653183/web/pkg". +[INFO wasm_pack::command::build] Done in 5.97s. +[INFO wasm_pack::command::build] Your wasm pkg is ready to publish at /tmp/gh-issue-solver-1777717653183/web/pkg. +[INFO]: ✨ Done in 5.97s +[INFO]: 📦 Your wasm pkg is ready to publish at /tmp/gh-issue-solver-1777717653183/web/pkg. + +> link-cli-web@2.3.0 build:web +> vite build --config web/vite.config.js + +vite v8.0.10 building client environment for production... + transforming...✓ 1736 modules transformed. +rendering chunks... +computing gzip size... +dist/assets/favicon-CIVoLc1m.svg 0.37 kB │ gzip: 0.24 kB +dist/index.html 0.63 kB │ gzip: 0.38 kB +dist/assets/doublets_web_bg-cVQpTmMF.wasm 51.41 kB │ gzip: 20.96 kB +dist/assets/clink_wasm_bg-CKfWx_Ro.wasm 286.55 kB │ gzip: 124.42 kB +dist/assets/index-D8XZ-J-o.css 5.91 kB │ gzip: 2.07 kB +dist/assets/index-BpneU8WS.js 220.94 kB │ gzip: 68.67 kB + +✓ built in 332ms diff --git a/docs/case-studies/issue-69/evidence/npm-ci.log b/docs/case-studies/issue-69/evidence/npm-ci.log new file mode 100644 index 0000000..8df1578 --- /dev/null +++ b/docs/case-studies/issue-69/evidence/npm-ci.log @@ -0,0 +1,7 @@ + +added 23 packages, and audited 24 packages in 3s + +8 packages are looking for funding + run `npm fund` for details + +found 0 vulnerabilities diff --git a/docs/case-studies/issue-69/evidence/npm-test-wasm.log b/docs/case-studies/issue-69/evidence/npm-test-wasm.log new file mode 100644 index 0000000..50a298e --- /dev/null +++ b/docs/case-studies/issue-69/evidence/npm-test-wasm.log @@ -0,0 +1,7823 @@ + +> link-cli-web@2.3.0 test:wasm +> wasm-pack test --node + +[INFO wasm_pack::command] Running test command... +[INFO wasm_pack::command::test] Checking rustc version... +[INFO wasm_pack::command::test] Rustc version is correct. +[INFO wasm_pack::command::test] Adding wasm-target... +[INFO]: 🎯 Checking for the Wasm target... +[INFO wasm_pack::build::wasm_target] Found wasm32-unknown-unknown in "/home/box/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/wasm32-unknown-unknown/lib" +[INFO wasm_pack::command::test] Adding wasm-target was successful. +[INFO wasm_pack::command::test] Compiling tests to wasm... +[INFO wasm_pack::child] Running cd "/tmp/gh-issue-solver-1777717653183" && CARGO_BUILD_TARGET="wasm32-unknown-unknown" "cargo" "build" "--tests" + Blocking waiting for file lock on package cache + Compiling unicode-ident v1.0.24 + Compiling proc-macro2 v1.0.106 + Compiling quote v1.0.45 + Compiling wasm-bindgen-shared v0.2.120 + Compiling rustversion v1.0.22 + Compiling once_cell v1.21.4 + Compiling libm v0.2.16 + Compiling autocfg v1.5.0 + Compiling cfg-if v1.0.4 + Compiling bumpalo v3.20.2 + Compiling serde_core v1.0.228 + Compiling num-traits v0.2.19 + Compiling wasm-bindgen v0.2.120 + Compiling syn v2.0.117 + Compiling thiserror v2.0.18 + Compiling utf8parse v0.2.2 + Compiling anstyle-parse v1.0.0 + Compiling anstyle-query v1.1.5 + Compiling serde v1.0.228 + Compiling futures-task v0.3.32 + Compiling futures-core v0.3.32 + Compiling pin-project-lite v0.2.17 + Compiling colorchoice v1.0.5 + Compiling memchr v2.8.0 + Compiling slab v0.4.12 + Compiling anstyle v1.0.14 + Compiling is_terminal_polyfill v1.70.2 + Compiling platform-num v0.8.0 + Compiling anstream v1.0.0 + Compiling futures-util v0.3.32 + Compiling heck v0.5.0 + Compiling zmij v1.0.21 + Compiling clap_lex v1.1.0 + Compiling fastrand v2.4.1 + Compiling strsim v0.11.1 + Compiling thiserror v1.0.69 + Compiling dtor-proc-macro v0.0.5 + Compiling clap_builder v4.6.0 + Compiling tempfile v3.27.0 + Compiling dtor v0.0.6 + Compiling memmap2 v0.9.10 + Compiling serde_json v1.0.149 + Compiling anyhow v1.0.102 + Compiling allocator-api2 v0.4.0 + Compiling ctor-proc-macro v0.0.6 + Compiling beef v0.5.2 + Compiling platform-trees v0.3.4 + Compiling ctor v0.4.3 + Compiling nom v8.0.0 + Compiling leak_slice v0.2.0 + Compiling wasm-bindgen-macro-support v0.2.120 + Compiling dotenvy v0.15.7 + Compiling itoa v1.0.18 + Compiling tap v1.0.1 + Compiling lino-env v0.1.0 + Compiling nu-ansi-term v0.50.3 + Compiling oorandom v11.1.5 + Compiling wasm-bindgen-test-shared v0.2.120 + Compiling cast v0.3.0 + Compiling thiserror-impl v2.0.18 + Compiling serde_derive v1.0.228 + Compiling thiserror-impl v1.0.69 + Compiling clap_derive v4.6.1 + Compiling links-notation v0.13.0 + Compiling wasm-bindgen-test-macro v0.3.70 + Compiling platform-mem v0.3.0 + Compiling platform-data v2.0.0 + Compiling doublets v0.3.0 + Compiling wasm-bindgen-macro v0.2.120 + Compiling async-trait v0.1.89 + Compiling clap v4.6.1 + Compiling lino-arguments v0.3.0 + Compiling js-sys v0.3.97 + Compiling console_error_panic_hook v0.1.7 + Compiling link-cli v0.1.0 (/tmp/gh-issue-solver-1777717653183/rust) + Compiling wasm-bindgen-futures v0.4.70 + Compiling web-sys v0.3.97 + Compiling wasm-bindgen-test v0.3.70 + Compiling clink-wasm v2.3.0 (/tmp/gh-issue-solver-1777717653183) + Finished `dev` profile [unoptimized + debuginfo] target(s) in 27.89s +[INFO wasm_pack::command::test] Finished compiling tests to wasm. +[INFO wasm_pack::command::test] Identifying wasm-bindgen dependency... +[INFO]: ⬇️ Installing wasm-bindgen... +[INFO wasm_pack::command::test] Getting wasm-bindgen-cli was successful. +[INFO wasm_pack::command::test] Running tests in node... +[INFO wasm_pack::child] Running cd "/tmp/gh-issue-solver-1777717653183" && CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER="/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen-test-runner" WASM_BINDGEN_TEST_ONLY_NODE="1" "cargo" "test" "--target" "wasm32-unknown-unknown" + Finished `test` profile [unoptimized + debuginfo] target(s) in 0.16s + Running unittests src/lib.rs (target/wasm32-unknown-unknown/debug/deps/clink_wasm-2addf66875546700.wasm) +[2026-05-02T10:31:03Z DEBUG walrus::module::types] parsing type section +[2026-05-02T10:31:03Z DEBUG walrus::module::imports] parse import section +[2026-05-02T10:31:03Z DEBUG walrus::module::functions] parse function section +[2026-05-02T10:31:03Z DEBUG walrus::module::tables] parse table section +[2026-05-02T10:31:03Z DEBUG walrus::module::memories] parse memory section +[2026-05-02T10:31:03Z DEBUG walrus::module::globals] parse global section +[2026-05-02T10:31:03Z DEBUG walrus::module::exports] parse export section +[2026-05-02T10:31:03Z DEBUG walrus::module::elements] parse element section +[2026-05-02T10:31:03Z DEBUG walrus::module::data] parse data section +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `.debug_abbrev` +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `.debug_info` +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `.debug_str` +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `.debug_line` +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `.debug_ranges` +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `.debug_loc` +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `__wasm_bindgen_unstable` +[2026-05-02T10:31:03Z DEBUG walrus::module] parse name section +[2026-05-02T10:31:03Z DEBUG walrus::module::producers] parse producers section +[2026-05-02T10:31:03Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-02T10:31:03Z DEBUG walrus::module::functions] parse code section +[2026-05-02T10:31:04Z DEBUG walrus::module] parse complete +no tests to run! + Running tests/web.rs (target/wasm32-unknown-unknown/debug/deps/web-3e78710fba2dbdb1.wasm) +[2026-05-02T10:31:04Z DEBUG walrus::module::types] parsing type section +[2026-05-02T10:31:04Z DEBUG walrus::module::imports] parse import section +[2026-05-02T10:31:04Z DEBUG walrus::module::functions] parse function section +[2026-05-02T10:31:04Z DEBUG walrus::module::tables] parse table section +[2026-05-02T10:31:04Z DEBUG walrus::module::memories] parse memory section +[2026-05-02T10:31:04Z DEBUG walrus::module::globals] parse global section +[2026-05-02T10:31:04Z DEBUG walrus::module::exports] parse export section +[2026-05-02T10:31:04Z DEBUG walrus::module::elements] parse element section +[2026-05-02T10:31:04Z DEBUG walrus::module::data] parse data section +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `.debug_abbrev` +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `.debug_info` +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `.debug_ranges` +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `.debug_str` +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `.debug_line` +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `.debug_loc` +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `__wasm_bindgen_unstable` +[2026-05-02T10:31:04Z DEBUG walrus::module] parse name section +[2026-05-02T10:31:04Z DEBUG walrus::module::producers] parse producers section +[2026-05-02T10:31:04Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-02T10:31:04Z DEBUG walrus::module::functions] parse code section +[2026-05-02T10:31:04Z DEBUG walrus::module] parse complete +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] custom section '__wasm_bindgen_unstable' looks like a Wasm bindgen section +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 290 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 690 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 457 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 78 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 86 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 44 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 125 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 228 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 144 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 142 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 142 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 356 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 518 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 144 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 134 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 151 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 227 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 287 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 462 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 351 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 161 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 566 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 172 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 154 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 251 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2176 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 8068 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 547 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 858 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2130 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 367 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 262 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1427 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2153 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1856 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5910 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 160 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2084 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5224 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1064 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 8288 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2153 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2268 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1906 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 385 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1458 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1902 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1689 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 228 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 162 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 163 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 166 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 364 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 178 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 765 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 378 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 231 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 509 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3356 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1055 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 329 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 943 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2266 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 395 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2199 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 163 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 375 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1406 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2146 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2130 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 737 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 4053 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1380 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 169 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 324 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 182 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1959 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 138 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 238 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 115 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 114 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 117 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1135 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 593 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 803 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 270 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 394 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1368 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 118 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 238 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1985 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 758 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 126 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 280 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 384 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 212 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 645 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 129 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 168 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 155 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 229 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 115 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 208 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 288 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 840 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 229 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 110 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 885 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1491 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 232 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 374 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 170 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5686 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 182 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 267 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 136 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1412 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 218 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 138 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 274 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 244 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 96 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 450 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 121 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 110 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3224 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 107 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 400 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 640 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 108 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 131 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 106 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 123 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1350 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5794 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 304 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 145 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 275 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 375 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 403 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 314 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 130 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 130 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 363 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 365 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 272 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1266 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 340 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 111 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 156 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 4510 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 374 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 819 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1107 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 183 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 107 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3209 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 253 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2273 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3224 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 272 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 633 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 198 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 988 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 396 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 294 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1119 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 178 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 367 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 198 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 516 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 189 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 482 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 37 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 55 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 74 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 60 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 63 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 64 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 66 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 67 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 302 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 89 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 97 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 186 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 490 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5603 +[2026-05-02T10:31:04Z DEBUG wasm_bindgen_cli_support] Exception handling version: None +[2026-05-02T10:31:04Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-02T10:31:05Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-02T10:31:05Z DEBUG walrus::module] start emit +[2026-05-02T10:31:05Z DEBUG walrus::module::types] emitting type section +[2026-05-02T10:31:05Z DEBUG walrus::module::imports] emit import section +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function section +[2026-05-02T10:31:05Z DEBUG walrus::module::tables] emit table section +[2026-05-02T10:31:05Z DEBUG walrus::module::memories] emit memory section +[2026-05-02T10:31:05Z DEBUG walrus::module::tags] emit tag section +[2026-05-02T10:31:05Z DEBUG walrus::module::globals] emit global section +[2026-05-02T10:31:05Z DEBUG walrus::module::exports] emit export section +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit code section +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9144 } Some("core::str::count::char_count_general_case::h06e4f9b890e9ec50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5817 } Some("core::ops::range::RangeBounds::contains::ha6bda60eb1070552") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3999 } Some("once_cell::unsync::OnceCell::get::hc9a14f842674d351") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 282 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h6a51ced02286d0f7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6865 } Some("hashbrown::raw::RawTableInner::erase::h1802a42a445c5f1c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1691 } Some("::next::h3fae33594cc7608e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4237 } Some("core::result::Result::map::hed31b1f24b5c6612") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4001 } Some("once_cell::unsync::OnceCell::get::h050c8e5be004143e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4791 } Some("itoa::Buffer::new::hd39c00c96a228a29") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5685 } Some(" as core::ops::try_trait::Try>::branch::h5ca8a19656cb7c85") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4003 } Some("once_cell::unsync::OnceCell::get::hffdd148aaf0a9802") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5758 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h3947ebfdf88bf7b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4546 } Some("alloc::vec::in_place_collect::write_in_place_with_drop::{{closure}}::h5525f8763c60ac46") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5796 } Some(">::get_unchecked::precondition_check::hce715f7a91d3771c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4551 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h1ca47c9875a8bbc1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5292 } Some("console_error_panic_hook::Error::stack::h9358192a934b138e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4552 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h338380d26701af1f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5556 } Some("::visit_str::h2ed4eab1fd1d4991") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 283 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h9b1540af981449fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5565 } Some("serde_json::read::error::he2e5609effa96ab4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4607 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h3df00bbe1a2bc876") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5691 } Some("core::result::Result::or_else::h43136faf581cf6ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4608 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h4d6b83fd3292ecec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5696 } Some("itoa::Buffer::new::h73f2d49f2acc7f08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5330 } Some("serde_json::de::ParserNumber::visit::hae80f6287a1b33ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5706 } Some("::fmt::hea9722e83936ba3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5605 } Some("core::char::convert::from_u32_unchecked::precondition_check::h1cb5112633622783") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5753 } Some(" as core::ops::drop::Drop>::drop::h71733d3689af3573") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 306 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h486eafba50a91356") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5692 } Some("core::result::Result::unwrap_or::h715a17d0f84d1005") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5856 } Some(">::get_unchecked::precondition_check::h93154efab384034b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 419 } Some("test::console::run_tests_console::h1f6f4855952edecf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 307 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::hd6e72f2abd43663b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 336 } Some("core::ptr::drop_in_place)>>::h31fb12d9213cd3e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1402 } Some("serde_json::ser::to_vec::h07803a628b742841") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4538 } Some("link_cli::query_processor::QueryProcessor::links_matching_definition::{{closure}}::h4b01d911e8615c44") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4829 } Some("serde_json::ser::to_vec::h78f74e018cf1df33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4905 } Some("core::fmt::Arguments::as_str::hfb928569b0518971") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5054 } Some("::from_abi::hcca8ae92e6a782d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5549 } Some("::invalid_type::h68073ad4d0657f6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5551 } Some("::invalid_value::hbec9538516a2b1fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5637 } Some(" as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::hfbb003a1dd9dfd2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5837 } Some("zmij::umul192_hi128::h4c6fe6c396637c2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5786 } Some("core::result::Result::expect::h8658b8ae1044d52d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6221 } Some("core::char::convert::from_u32_unchecked::precondition_check::ha98fc65419834e70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6279 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::hec177db89ee16d6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5842 } Some("zmij::Pow10SignificandsTable::get_unchecked::h025bcc0c8e8c06ad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6476 } Some("core::ptr::drop_in_place::h1838744f6d14ddf8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7122 } Some("core::char::convert::from_u32_unchecked::precondition_check::h284a808f33c94c1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7174 } Some("core::ptr::drop_in_place::ha9274d08a9e667af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4507 } Some("link_cli::query_processor::QueryProcessor::process_query::h8e62cbe39e121567") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7207 } Some("lino_arguments::init::h1fd2261c1aeebf5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7238 } Some("core::ptr::drop_in_place::ha391db2c4ebf32ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7336 } Some("std::fs::File::open::h4ba204bb59c6ac61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7464 } Some("core::char::convert::from_u32_unchecked::precondition_check::h7959e7042c824bad") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7571 } Some("links_notation::parser::ParserState::normalize_indentation::hbfe638b0da8d739d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7271 } Some(" as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::h1568fec8826035e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8356 } Some(" as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::hf8d61b7a8885f2ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8506 } Some(" as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::hef618a6ac02e0cfd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8723 } Some("anyhow::error::object_reallocate_boxed::h8a25b627b5c19c98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8799 } Some("anyhow::error::::construct_from_adhoc::ha70b0ab7513b0c70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8044 } Some("core::char::convert::from_u32_unchecked::precondition_check::h43aae56b1448483d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8206 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h59a910e65b480360") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8349 } Some("alloc::str:: for [S]>::join::hb77ca41464cda07c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8666 } Some("core::char::convert::from_u32_unchecked::precondition_check::h4b0c9360f53a65f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8725 } Some("anyhow::error::vtable::h3d05738b123038f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 355 } Some("core::ptr::drop_in_place>::h8b0b4302f7600da0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 732 } Some("::return_abi::h7ac0aa115a68f476") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1464 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::hc226498dee0c6b6b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 860 } Some("core::ptr::drop_in_place::ha97f3cd3aadd869d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 952 } Some("wasm_bindgen::__rt::RcRef::new::hd49b660f7ce698d8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 963 } Some("wasm_bindgen::__rt::RcRefMut::new::h4fb304ae81cddc55") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1054 } Some("::return_abi::haacaff63caa163fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1532 } Some("wasm_bindgen::convert::slices::::vector_into_abi::he09ca32be3bc2b96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3519 } Some(" as core::ops::function::FnOnce<()>>::call_once::h2b09ba259abec664") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3520 } Some(" as core::ops::function::FnOnce<()>>::call_once::h30244c0bce578694") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3529 } Some(" as core::ops::function::FnOnce<()>>::call_once::h5fbd57b4f8952ce4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 349 } Some("core::ptr::drop_in_place::h58898b0aa8208b3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4327 } Some("core::option::Option::map::h416e48c673fb97d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5011 } Some("serde_json::de::ParserNumber::visit::hfaedd029f3a65909") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5260 } Some("core::fmt::builders::DebugSet::entries::h6b5eaa811ec28575") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5261 } Some("core::fmt::builders::DebugSet::entries::hd0bf5fce5759b933") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 395 } Some("test::cli::parse_opts::h904f3ae4183bc533") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6600 } Some("hashbrown::map::HashMap::remove::h1eec607b59ce7e35") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6895 } Some("hashbrown::raw::RawTable::remove_entry::h92fdeac8769da288") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6898 } Some("hashbrown::raw::RawTable::remove_entry::he022c773a50c3b3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8509 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h089fbda7d9c75d70") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3545 } Some(" as core::ops::function::FnOnce<()>>::call_once::haf71ad2124d255bb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3563 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h0413e7d1b22eaf15") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3570 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h2c4a55a28ad93176") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8840 } Some("std::io::Write::write_fmt::h2c3f307732372fbd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8841 } Some("std::io::Write::write_fmt::hf2f7ade7905b1f4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9075 } Some("core::fmt::pointer_fmt_inner::he8c75c96296bd5e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 998 } Some("wasm_bindgen_test::__rt::browser::HTMLDocument::getElementById::hb7cba789fb75b252") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1227 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::ha3e9a7d773360c72") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9103 } Some("core::num::flt2dec::strategy::dragon::format_shortest::h4c66a46b964fa2fa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1744 } Some("::to_vec_in::ConvertVec>::to_vec::h9c0031816c71474c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4013 } Some("once_cell::unsync::OnceCell::set::h316de452eee06d67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4014 } Some("once_cell::unsync::OnceCell::set::he2effe81b2dd1a4b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4329 } Some("core::option::Option::map::ha67523a6c4598c10") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4330 } Some("core::option::Option::map::hbb98b6c4da5d4f13") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5290 } Some("console_error_panic_hook::hook_impl::h828ae9ce9513842a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3595 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hb4601c7c5043a46b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5329 } Some("serde_json::de::ParserNumber::invalid_type::h378c9ebf671ec2f5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5484 } Some("::to_vec_in::ConvertVec>::to_vec::h7ef80a0e84988390") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6128 } Some("::to_vec_in::ConvertVec>::to_vec::hb24b09e45005119c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6168 } Some("::to_vec_in::ConvertVec>::to_vec::ha8e616216e154261") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7310 } Some("::to_vec_in::ConvertVec>::to_vec::h30d811c492f7c247") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 422 } Some("test::run_test::h3a9516618bd49e4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7364 } Some("::to_vec_in::ConvertVec>::to_vec::h838c46c1367a1b3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8026 } Some(" as nom::internal::Parser>::process::{{closure}}::h56b03e475079ed1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8029 } Some(" as nom::internal::Parser>::process::{{closure}}::hf90dacb4a2ffabc8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8032 } Some(" as nom::internal::Parser>::process::{{closure}}::h87b499a47ead4550") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3597 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hbb9ce04e9ac554fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8414 } Some("::to_vec_in::ConvertVec>::to_vec::hcb8ea3a3308c9241") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5954 } Some("__externref_table_alloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3599 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hc10bc78a962c9358") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5998 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h52d88fd8f272d7c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 376 } Some("core::slice::sort::shared::pivot::median3_rec::hba632d36ba0c241e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6087 } Some("alloc::vec::Vec::from_raw_parts_in::precondition_check::ha0e61a5113cb12cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6119 } Some("alloc::vec::Vec::set_len::precondition_check::h014a91d842ec01a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 637 } Some("alloc::collections::btree::node::NodeRef::correct_childrens_parent_links::h04effbe221293238") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6157 } Some("alloc::vec::Vec::set_len::precondition_check::h93fb3ecb5b62da4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6202 } Some("core::num::::unchecked_sub::precondition_check::h5510e7a0be72e2df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 758 } Some(" as core::ops::try_trait::Try>::branch::he4a4957dbf486327") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6726 } Some(">::get_unchecked::precondition_check::hd3ae0f8bb2b0b8e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5953 } Some("__externref_table_dealloc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1684 } Some("<&str as core::str::pattern::Pattern>::strip_suffix_of::h2bc586c86d29e969") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5976 } Some("wasm_bindgen::__wbindgen_string_get::h1dbab6f233b9c02f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4489 } Some("core::iter::traits::iterator::Iterator::try_fold::h32488b35e494e562") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5979 } Some("wasm_bindgen::__wbindgen_debug_string::h93b778b79799a308") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4593 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::h06c4e217084eba24") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3868 } Some("::return_abi::h2b17798c7defde37") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6981 } Some(" as core::ops::try_trait::Try>::branch::h67075b9be3b0c321") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5391 } Some("alloc::vec::Vec::push_mut::hef5c81f8db294c5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6982 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::hc55bf0d11e2f770a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5424 } Some("alloc::collections::btree::node::NodeRef::correct_childrens_parent_links::h1d3764352faf5031") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7074 } Some(" as core::ops::try_trait::Try>::branch::ha3695a159647ef76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6521 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::h65d73353d7462521") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7081 } Some("link_cli::query_processor::QueryProcessor::solutions_are_compatible::{{closure}}::hc034fcc9d25dc88e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7088 } Some("alloc::vec::Vec::from_parts_in::precondition_check::h6e10eeecbc406949") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6781 } Some("alloc::vec::Vec::push_mut::hb21660ee65962391") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7089 } Some("alloc::vec::Vec::from_raw_parts_in::precondition_check::h9867b38c35ff49c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7090 } Some("alloc::vec::Vec::set_len::precondition_check::h8aed9dda8795b520") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6783 } Some("alloc::vec::Vec::push_mut::hf1a1e2fd34275b84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7093 } Some("link_cli::parser::Parser::parse::h6eb86f4506911bba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7121 } Some("core::slice::::split_at_mut_unchecked::precondition_check::h53e4043b28147b1a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7147 } Some("core::num::::unchecked_sub::precondition_check::hf155c458fd814503") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7186 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h005f3be6e88a0c5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7188 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h5820c7aea9d14192") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7252 } Some("core::hash::sip::Hasher::reset::hb03e72cd878a194c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7264 } Some("alloc::vec::Vec::set_len::precondition_check::h5df4148d52756486") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7309 } Some(">::equivalent::h2f4372111ad2bf26") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7318 } Some(">::get_unchecked::precondition_check::hd5524fbd67c639e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7351 } Some("core::hash::sip::Hasher::reset::h83bb4562744aa119") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7353 } Some(">::get_unchecked::precondition_check::h10e313602c78b441") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7365 } Some(">::equivalent::h85eac51dd994c6e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7384 } Some("alloc::vec::Vec::set_len::precondition_check::h2a57d4f5a726484b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7438 } Some(">::get_unchecked::precondition_check::he1c444670a12e6a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7482 } Some("core::num::::unchecked_sub::precondition_check::h2940896d8c111c8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7495 } Some("core::hash::sip::Hasher::reset::h34f3ffe77a847bc0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7546 } Some(">::get_unchecked::precondition_check::h3b337684555c45ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7694 } Some("alloc::vec::Vec::from_parts_in::precondition_check::hd3db7bdd43d24dbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7704 } Some("alloc::vec::Vec::from_raw_parts_in::precondition_check::h2bf3d01d470d73b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7714 } Some("alloc::vec::Vec::set_len::precondition_check::hd20a57d6125ec4a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8077 } Some("core::slice::::split_at_unchecked::precondition_check::hf0867a2a98312d69") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8078 } Some("core::slice::::split_at_mut_unchecked::precondition_check::h0ebf388246882ff6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8103 } Some("<[char; N] as core::str::pattern::MultiCharEq>::matches::hd4f716c2f87aefa7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8131 } Some("<&str as nom::traits::Input>::split_at_position_mode::{{closure}}::h1e66f45b669e8807") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8134 } Some("<&str as nom::traits::Input>::split_at_position_mode::{{closure}}::h4e48bd143f4fd739") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8136 } Some("<&str as nom::traits::Input>::split_at_position_mode::{{closure}}::heb5293ef7c4bc229") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8138 } Some("<&str as nom::traits::Input>::split_at_position_mode1::{{closure}}::haba5d6e0f5b64cc2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8250 } Some("alloc::vec::in_place_collect::needs_realloc::h9f11c06daa4ae599") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8262 } Some(">::get_unchecked::precondition_check::hc774abfc72230f39") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8329 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h1bfdaca95b5e08e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8336 } Some("core::str::traits:: for str>::index::h3be0f0a68e580a12") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8383 } Some("core::num::::unchecked_sub::precondition_check::h3e90198e3d908dcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8410 } Some("core::slice::iter::Iter::new::ha9f0bab77f683b57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8416 } Some("alloc::vec::Vec::set_len::precondition_check::h7f450c31927e1b91") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8429 } Some("core::num::::unchecked_sub::precondition_check::h0f8443464be61ac0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8446 } Some("core::slice::::split_at_unchecked::precondition_check::haafcc7c9840bc370") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8449 } Some("core::slice::iter::::into_iter::hcee3e8e4cadd019c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8593 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::hc7091da1cc41a11f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8604 } Some("alloc::vec::Vec::set_len::precondition_check::hce55db7ebe001e6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8768 } Some(" as core::ops::try_trait::Try>::branch::h6a186b1614d5a794") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8809 } Some(">::get_unchecked::precondition_check::h3f15a37526a284b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8848 } Some("std::io::impls::>::write_all::h45006fd56a6f70bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8962 } Some(" as core::fmt::Write>::write_str::hc5a49c5b09555a86") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9048 } Some("alloc::vec::Vec::insert_mut::assert_failed::h2949680eedb96bd6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9049 } Some("alloc::vec::Vec::remove::assert_failed::h4b49fb3afd7a6d82") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9076 } Some("core::panicking::panic_bounds_check::he16a4bbc04eea6a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9153 } Some("core::slice::copy_from_slice_impl::len_mismatch_fail::h26645076e8e3fc3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 327 } Some("<&T as core::fmt::Debug>::fmt::h6b82f07f1fad4beb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 402 } Some("::to_vec_in::ConvertVec>::to_vec::h3c1f510d2fe45d5a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 626 } Some(" as core::ops::drop::Drop>::drop::haae43ff93385619d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 728 } Some("alloc::collections::btree::map::entry::VacantEntry::insert::h2a95506bb04d2783") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 772 } Some("serde_core::ser::Serializer::collect_map::{{closure}}::h26a37115c7cdb6ef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 782 } Some("core::ops::function::FnOnce::call_once::h525ae97610752ad6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 784 } Some("core::ops::function::FnOnce::call_once::h79dcf090c2b06767") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 786 } Some("core::ops::function::FnOnce::call_once::hb42b4aeef26d79dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 790 } Some("core::ops::function::FnOnce::call_once::hbdc41b752179efea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 792 } Some("core::ops::function::FnOnce::call_once::h8359eebc501e6317") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1132 } Some("<(&Arg1,) as js_sys::JsArgs>::apply_call::h60670cf47f50d6e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1142 } Some("js_sys::Function::call::hd35e5239c296df99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1174 } Some("wasm_bindgen_test::__rt::console_log::hb7505c19897076a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1726 } Some(" as core::ops::drop::Drop>::drop::ha1185ac4dc2bbe3b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1890 } Some("<(&Arg1,) as js_sys::JsArgs>::apply_call::h1cbabeb64d8f8c5f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1908 } Some("js_sys::Function::call::hde1e3f6539dcbf2f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3537 } Some(" as core::ops::function::FnOnce<()>>::call_once::h86194e21b3c698f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4094 } Some("core::option::Option::as_ref::h4268212feec5351c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4097 } Some("core::option::Option::as_ref::hc31d5d416dae4bb7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4853 } Some("core::iter::traits::iterator::Iterator::find::check::{{closure}}::hc038969b9ca71364") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4854 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h3913d0776b8461fb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5180 } Some(" as core::ops::drop::Drop>::drop::heabb23f21fb14847") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5394 } Some("alloc::vec::Vec::set_len::h6a9fc5fc8df537b3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5406 } Some(" as core::ops::drop::Drop>::drop::heb6a9a5f41969660") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5767 } Some("alloc::collections::btree::map::entry::VacantEntry::insert::h56ab71118321ff66") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5790 } Some("core::slice::::get_unchecked::h05431679f44e13fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5831 } Some("zmij::FloatTraits::get_exp::hcec94722942d7852") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6121 } Some(" as core::ops::drop::Drop>::drop::hc375cdfb68f735eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6487 } Some(" as core::ops::drop::Drop>::drop::h075c31a8c5585fff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6502 } Some(" as core::ops::drop::Drop>::drop::h7156ee3d0704d863") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6621 } Some("link_cli::parser::Parser::parse::{{closure}}::h87ada6d482f1cf30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6635 } Some("core::option::Option::as_ref::h8c20fce613a5bfa5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7023 } Some("link_cli::query_types::ResolvedLink::new::h6df5f8f85c43ca7b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7150 } Some("core::iter::traits::iterator::Iterator::find::check::{{closure}}::h8efa6411b5e3e83b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7152 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h0c9e9c4dabf0e235") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7154 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h976967eb92aa5031") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7155 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::ha3ab9ee30ee76150") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7240 } Some(" as core::ops::drop::Drop>::drop::h406e95ad265e9362") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7405 } Some(" as core::ops::drop::Drop>::drop::h99732d83e720527f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7517 } Some(" as core::ops::drop::Drop>::drop::h87e6bfbca45c27a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7722 } Some(" as core::ops::drop::Drop>::drop::hfb3d68cde5bade2b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7967 } Some("core::str::::get_unchecked::h7940849a4940db8a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7968 } Some("core::str::::get_unchecked::hcbe8d04dd80e0a9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8202 } Some("<&[u8] as nom::traits::Compare<&[u8]>>::compare::{{closure}}::hde6c4f6b26d3c295") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8388 } Some(" as core::ops::drop::Drop>::drop::hbc19782056e12cea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8552 } Some(" as core::ops::drop::Drop>::drop::h3c202f3668c844df") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8557 } Some(" as core::ops::drop::Drop>::drop::h503ba5268443b749") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8781 } Some("core::option::Option::as_ref::hbee6cda64436dd3f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8805 } Some("<&mut I as core::iter::traits::iterator::IteratorRefSpec>::spec_fold::h7690c8e09169f5ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8852 } Some("alloc::sync::Arc::drop_slow::h419f2ba926fd2183") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8871 } Some("std::sys::random::unsupported::hashmap_random_keys::h42a15f65dfd217f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9175 } Some("::fmt::hf666267d40d98217") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 54 } Some("std::rt::lang_start::hef8483f844f26a47") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 68 } Some("core::option::Option::unwrap_or::hd2fc5183a7e26574") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 74 } Some("core::cell::RefCell::new::haddbe038b70f71fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7158 } Some("core::slice::sort::stable::merge::MergeState::merge_up::ha1cd82b10b4c3acd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 293 } Some(" as test::formatters::OutputFormatter>::write_run_start::hd9f9c7c100776f98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 294 } Some(" as test::formatters::OutputFormatter>::write_run_start::hfdfee318c536dee8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1164 } Some("once_cell::unsync::OnceCell::get_or_try_init::h517efac30b7ac278") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4004 } Some("once_cell::unsync::OnceCell::get_or_try_init::ha5f539af0b448be1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4005 } Some("once_cell::unsync::OnceCell::get_or_try_init::hdba7e0ebef9b6798") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4006 } Some("once_cell::unsync::OnceCell::get_or_try_init::h799ac3a1987578dd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4190 } Some("::default::hd654b89bf67b0f5c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1636 } Some("__wbgtest_coverage_path") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3862 } Some("wasm_bindgen::convert::closures::_::invoke::h0db152a45c50bb87") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3869 } Some("wasm_bindgen::convert::closures::_::invoke::h1b1049451d5351e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3876 } Some("wasm_bindgen::convert::closures::_::invoke::h401a1691ea18ba31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3881 } Some("wasm_bindgen::convert::closures::_::invoke::h5cb1815caf891ffd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3885 } Some("wasm_bindgen::convert::closures::_::invoke::h6b8c558037029758") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3891 } Some("wasm_bindgen::convert::closures::_::invoke::h91ab1f7b790fa32e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3893 } Some("wasm_bindgen::convert::closures::_::invoke::ha90c0e0f6ea81311") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3898 } Some("wasm_bindgen::convert::closures::_::invoke::hc39cfcabc49a9fda") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3906 } Some("wasm_bindgen::convert::closures::_::invoke::hf97736708fb9be57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5568 } Some("::decode_hex_escape::h88cdd71a1030c2f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8211 } Some(" as core::iter::traits::iterator::Iterator>::next::h180be3518c2a84e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8993 } Some("rustc_demangle::v0::Printer::print_sep_list::h13d938e40457b07b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1417 } Some("alloc::collections::btree::map::BTreeMap::insert::h0dcdae898e4ed8fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 53 } Some("core::str::::split_once::h05ed8b3098dc2c64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3734 } Some("js_sys::futures::queue::QueueState::run_all::h5531767bbf31d64a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4698 } Some("alloc::vec::Vec::extend_desugared::h0537620ba14544b2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5066 } Some("::update::h1460d12781119e7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6771 } Some("alloc::vec::Vec::extend_desugared::hba32ad4e1f4d8362") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8997 } Some("rustc_demangle::v0::Printer::in_binder::hbd2f3656a39967ff") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 647 } Some("alloc::collections::btree::node::slice_insert::h734f767fc5a9d10f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6595 } Some("hashbrown::map::HashMap::insert::h7de5dcdfe11e8948") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9026 } Some("core::num::::from_ascii_radix::h4e90144f6e2f4ef0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 401 } Some("test::cli::get_format::hfc69f2ec4ef68ab4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 536 } Some("serde_json::de::Deserializer::parse_ident::h99b87e847f6ffbce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1501 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_enum::h14c345d81d9ace05") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1502 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_enum::hc41195051d15e530") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1598 } Some("wasm_bindgen_test::__rt::detect::detect::h9b4efd882487e8f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5334 } Some("serde_json::de::Deserializer::parse_ident::h92867134a949138f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8996 } Some("rustc_demangle::v0::Printer::in_binder::heb739412fb9432e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 88 } Some("alloc::alloc::Global::alloc_impl_runtime::hdb19150b910dd03a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1659 } Some("alloc::alloc::Global::alloc_impl_runtime::h661754f5bda643aa") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1750 } Some("alloc::alloc::Global::alloc_impl_runtime::hd614c28cc18900a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3709 } Some("alloc::alloc::Global::alloc_impl_runtime::h03070fb47c654b28") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3912 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h0720d1c63715d922") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4478 } Some("alloc::alloc::Global::alloc_impl_runtime::hcfd93758a194d7eb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3918 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h226876a9c26e7e90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5769 } Some("alloc::alloc::Global::alloc_impl_runtime::hdab4aa6f36715535") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3947 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::haa0fa0d8f5effb64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6252 } Some("link_cli::query_processor::QueryProcessor::is_numeric_or_wildcard::h9f39c0f275157c0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3954 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hff088afae7b0a2f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6322 } Some("alloc::vec::in_place_collect::write_in_place_with_drop::{{closure}}::h2e6c1aa9251bf4bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4205 } Some("core::convert::num:: for u32>::try_from::h6a28384e3d7318bf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 116 } Some("__wbgt__web::creates_a_clink_instance") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4317 } Some("core::tuple::::eq::h1ab527fb559e91ae") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 117 } Some("__wbgt__web::executes_lino_queries_with_the_rust_core") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4498 } Some("link_cli::query_processor::QueryProcessor::match_pattern::{{closure}}::h0660602346d56c38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7709 } Some("alloc::vec::Vec::push_mut::h38ad080ced484176") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6999 } Some("anyhow::error::object_ref::h793fe795fb48c6cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 118 } Some("__wbgt__web::exposes_versions") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4506 } Some("link_cli::query_processor::QueryProcessor::matched_links::{{closure}}::h264bc428242fc5cf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 119 } Some("__wbgt__web::reports_invalid_options") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4788 } Some("::return_abi::h02948eb181f90870") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 434 } Some("::write_str::he0f136bfd437b8d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4850 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::h7234cb7aa56e62e8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 630 } Some(" as core::ops::index::IndexMut>::index_mut::h1a926805b1476e23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4936 } Some("wasm_bindgen::__rt::RcRefMut::new::h5dae39a10d6679b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 857 } Some("core::ptr::drop_in_place::h39f5815558b3d064") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5068 } Some("::get_name::hb1f0f75e7ab751b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7002 } Some("anyhow::error::object_downcast::h414c987a6c043bec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8254 } Some("alloc::vec::into_iter::IntoIter::forget_allocation_drop_remaining::h6bf4ff3f4ac77d36") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7295 } Some(" as core::ops::try_trait::Try>::branch::h22ea96fc420b71e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5273 } Some("wasm_bindgen::convert::slices::::vector_into_abi::h68dbabc31f86e860") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8073 } Some("::next::h021e29433e540f34") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9180 } Some("::fmt::hd84bfcfe98069e76") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8242 } Some("alloc::vec::in_place_collect::write_in_place_with_drop::{{closure}}::hd57b7ff30d093dd0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 263 } Some(" as test::formatters::OutputFormatter>::write_timeout::h5303f92554ba03bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5937 } Some("alloc::alloc::Global::alloc_impl_runtime::h8616fed5b4fca902") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 265 } Some(" as test::formatters::OutputFormatter>::write_timeout::hf4b4bbd1616d1cd3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5742 } Some("memchr::memchr::memchr2_raw::h24ae4848ea094044") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6130 } Some("alloc::alloc::Global::alloc_impl_runtime::h055243bc912dcdbf") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5749 } Some("::count::h994c5c333459219c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8708 } Some("anyhow::error::object_ref::h0e41fb1dd1c2c008") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 291 } Some(" as test::formatters::OutputFormatter>::write_timeout::h4816dc4fde245650") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8709 } Some("anyhow::error::object_ref::h19a8494ec5533669") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 292 } Some(" as test::formatters::OutputFormatter>::write_timeout::h98d81641624be0a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8715 } Some("anyhow::error::object_downcast::h780e1388d585f327") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5783 } Some("core::result::Result::expect::h22f99973de2187bc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8716 } Some("anyhow::error::object_downcast::hfaa549ca3ec12d90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 337 } Some("core::ptr::drop_in_place>::ha8584ee85091ad2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5829 } Some("zmij::FloatTraits::is_negative::hfc9003623b2e7f0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6158 } Some("alloc::alloc::Global::alloc_impl_runtime::he414618dc63c55dc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 361 } Some("core::ptr::drop_in_place>::h19844b5e4b0bbbee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 437 } Some("alloc::raw_vec::RawVecInner::finish_grow::h72d70a0800c1096c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6548 } Some("hashbrown::map::HashMap::insert::h55387a132cb008a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5989 } Some("wasm_bindgen::convert::slices::::vector_into_abi::h037a81312fab1628") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6765 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h44a55980f7cc6121") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7700 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h2343a267b261e544") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6614 } Some("alloc::alloc::Global::alloc_impl_runtime::h6e35867bc8bee82e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1318 } Some("alloc::rc::Rc::increment_strong_count_in::hc81df77e4bf35e42") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1323 } Some("alloc::rc::Rc::from_raw_in::hbb2eb896fee7d7ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7701 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::ha9b570a44be4726c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1400 } Some("serde_json::ser::Formatter::write_string_fragment::h41cdaecd4d389ba8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8243 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::h4f7854a7414a3425") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8704 } Some("anyhow::error::ErrorImpl::error::habcb157832916491") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 456 } Some("alloc::raw_vec::RawVecInner::finish_grow::hc1011941fb45889c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 650 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::into_val_mut::hf7ccaf609b831cbb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4437 } Some("core::slice::sort::stable::drift::stable_quicksort::h082f59dc02c85b64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 927 } Some(" as core::default::Default>::default::h5379dc38669115f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4438 } Some("core::slice::sort::stable::drift::stable_quicksort::h1950dff85c45a877") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 928 } Some(" as core::default::Default>::default::hbebbac87adb39a6c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4439 } Some("core::slice::sort::stable::drift::stable_quicksort::h4d86bd2be6682f96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1212 } Some("wasm_bindgen_test::__rt::record::{{closure}}::h1459dc2789cd6fbe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8782 } Some("core::option::Option::expect::hb306a19ac74257e1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8929 } Some("core::ptr::drop_in_place>::h37818cad86e7727b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7312 } Some("alloc::alloc::Global::alloc_impl_runtime::h3ba3b38436d208ba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9022 } Some("<[T] as core::fmt::Debug>::fmt::h2a28fdeaca8f0f0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9185 } Some("__ashlti3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4440 } Some("core::slice::sort::stable::drift::stable_quicksort::h514799c9b8a73c27") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7367 } Some("alloc::alloc::Global::alloc_impl_runtime::h5e6f7c7007af0d8f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4441 } Some("core::slice::sort::stable::drift::stable_quicksort::h9e76523125bba4d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4442 } Some("core::slice::sort::stable::drift::stable_quicksort::hd407b2aad7fc2f6f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7548 } Some("alloc::alloc::Global::alloc_impl_runtime::hbf1b4fd86b1ababd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4443 } Some("core::slice::sort::stable::drift::stable_quicksort::hebf2fb5eb783acef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9192 } Some("__lshrti3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7651 } Some(">::process::h561bf42e9c8c1588") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4586 } Some("core::iter::traits::iterator::Iterator::find::h24653be3125e0f3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4879 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h33922cda7b51203b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7662 } Some(">::process::h93cd58e4f8ab5f6d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 333 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::he1f1b9f34afb18a2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 365 } Some("core::ptr::drop_in_place>::h1afe3c7c9e07c46c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 367 } Some("core::ptr::drop_in_place>::hcd7834030e33b668") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7673 } Some(">::process::hfb162961c0db4eac") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5058 } Some("::remove_name::h8e080df1d5c64b71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6543 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h037385a532934e3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3711 } Some("alloc::rc::Rc::from_raw_in::h66ebad03975cab06") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6738 } Some("core::slice::sort::stable::drift::stable_quicksort::h704d0221b2a29a51") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4529 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern_readonly::{{closure}}::h86a71222cf55a7f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7163 } Some("std::env::set_var::{{closure}}::h03cafa52cb71fdcb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1213 } Some("wasm_bindgen_test::__rt::record::{{closure}}::h4bbf833b0073aede") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7184 } Some(" as core::iter::traits::iterator::Iterator>::next::h350a8288e82882f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1214 } Some("wasm_bindgen_test::__rt::record::{{closure}}::h70264147bdab3d4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8326 } Some("::spec_to_string::h4e611df328b2c619") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1215 } Some("wasm_bindgen_test::__rt::record::{{closure}}::h8f726f1107aafed9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1216 } Some("wasm_bindgen_test::__rt::record::{{closure}}::hc122545c5fd4f938") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8879 } Some("alloc::raw_vec::RawVecInner::finish_grow::h4217bbf3026c2f59") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9128 } Some("core::fmt::Formatter::debug_struct_field2_finish::h08cac909ec906e0d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 408 } Some(" as core::clone::Clone>::clone::h6ca97ba29c68f896") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 671 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_end::hc7c5d2e339d51e95") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4248 } Some(" as core::ops::try_trait::Try>::branch::h4e3f0b6b8e9b1c4e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4254 } Some(" as core::ops::try_trait::Try>::branch::had8a0cec207d9be6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4261 } Some(" as core::ops::try_trait::Try>::branch::hd6572c70fd4fdcb3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4264 } Some(" as core::ops::try_trait::Try>::branch::hfec0acbfd92fd1f4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4604 } Some(" as core::iter::traits::iterator::Iterator>::next::h51b8f5d910dee547") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4871 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h371ef2d8c32680ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4872 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h6f144b973e958ea5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4907 } Some("anyhow::__private::format_err::h8bfbf6083452ca84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5462 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_end::hb528143002bec20d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5559 } Some("serde_json::read::next_or_eof::h73159ac8542c988d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5562 } Some("serde_json::read::peek_or_eof::he654d53c0d21de7f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5739 } Some("memchr::arch::all::memchr::Two::new::h72d7cdbffaf0375e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5952 } Some("__externref_drop_slice") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6882 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h1bca7987655ad2ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6883 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h7aca1ac3f0c87f9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6884 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h7c81f420421208d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6885 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h8b371a8ce52056cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6886 } Some("hashbrown::raw::RawTableInner::drop_inner_table::hd073edb67d75589e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6887 } Some("hashbrown::raw::RawTableInner::drop_inner_table::heda34eb9f589c1cc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7200 } Some("hashbrown::raw::RawTableInner::drop_inner_table::h1d257b8f808279e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7971 } Some("core::str::::trim_start_matches::ha29b478de6a15d38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8241 } Some("core::iter::traits::iterator::Iterator::position::check::{{closure}}::h51b1e0a51cac368e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8280 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::h40beb28a1007909d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 87 } Some("alloc::alloc::exchange_malloc::hdd238d4195974f57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 638 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::correct_parent_link::h320e9af6ad626f9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 654 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::drop_key_val::hd9829de62d559a93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 908 } Some("core::cell::RefCell::try_borrow::hbe0fd16dafaf7139") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 913 } Some("core::cell::RefCell::borrow::had239b66d7190cc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 914 } Some("core::cell::RefCell::borrow::hd1d1465f44d09ed3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 915 } Some("core::cell::RefCell::borrow::hec915a4067a0dd22") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1658 } Some("alloc::alloc::exchange_malloc::h26a142dd4d2f8e9b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3373 } Some("core::cell::RefCell::borrow::h108e94f322b176f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3717 } Some("alloc::alloc::exchange_malloc::h6cfce81a07fb6afb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4477 } Some("alloc::alloc::exchange_malloc::h8e8032f1f0e9f30a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4783 } Some("core::cmp::PartialOrd::lt::h482460916f359621") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5425 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::correct_parent_link::haf701d05a33c1821") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5443 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::drop_key_val::ha8f16e542993f879") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5768 } Some("alloc::alloc::exchange_malloc::he688f51dd3dda240") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6601 } Some("hashbrown::map::HashMap::remove::hbd715f80c6a34050") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6613 } Some("alloc::alloc::exchange_malloc::h37fa0ae45492003d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8069 } Some("core::cell::RefCell::borrow::h7188539ce6d18114") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8070 } Some("core::cell::RefCell::borrow::habfa05890dce791a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8185 } Some("alloc::alloc::exchange_malloc::hd4296b5765b0cf50") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8690 } Some("alloc::alloc::exchange_malloc::hc0593b77777af278") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 450 } Some("core::iter::traits::iterator::Iterator::nth::h514789fd7840fb5d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1239 } Some("wasm_bindgen_test::__rt::Context::run::_::__wasm_bindgen_generated_WasmBindgenTestContext_run::{{closure}}::hf4b36d615b0d8b19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1444 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h498f0f5558ef484d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1537 } Some("core::iter::traits::iterator::Iterator::try_fold::h10c695c8c29d82d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1689 } Some(" as core::iter::traits::iterator::Iterator>::next::hb507c477accaeec1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4286 } Some("core::iter::traits::iterator::Iterator::try_fold::hc084c6ec33639ec4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4296 } Some(" as core::iter::traits::iterator::Iterator>::any::hdff8f359c1e5c884") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5361 } Some(" as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend::hc94ff16e1fb7c745") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5729 } Some("core::str::::rfind::h9590bd9f56aa3a77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6835 } Some(" as core::iter::traits::iterator::Iterator>::any::h805c41dcd0949f96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7027 } Some(" as core::iter::traits::iterator::Iterator>::next::h4aff2e61410c6019") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7141 } Some("core::slice::::reverse::h47358da2c71ab52b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7538 } Some("std::thread::local::LocalKey::try_with::hfdf2c91f043ac1e2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7687 } Some(" as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend::h1075e613a89f1f8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8366 } Some(" as core::iter::traits::iterator::Iterator>::any::hb3da924dbfb7295a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 111 } Some("web::exposes_versions::h661747b4503ea960") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 382 } Some("core::slice::sort::stable::driftsort_main::hd2e5ac9a7f448598") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 655 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::into_kv::h2f4837910b45fb4f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4297 } Some(" as core::iter::traits::iterator::Iterator>::find::h084099041ee86867") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5444 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::into_kv::h88bcc35c98c982f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5530 } Some("core::str::traits:: for core::ops::range::Range>::index::h95f7f2490dc4175b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 368 } Some("core::ptr::drop_in_place>::he9aac041bdabfc8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 459 } Some("getopts::Name::from_str::h7bdb73b1047e2f2e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 705 } Some("std::sync::once::Once::call_once::{{closure}}::h19187cfcfc865fc8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 917 } Some("alloc::boxed::Box::new_uninit_in::h1296619b386fc9c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 919 } Some("alloc::boxed::Box::new_uninit_in::h4b5a1707b0c51e90") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1172 } Some("wasm_bindgen_test::__rt::Performance::now::h3b93e773b6952a41") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1332 } Some(" as core::ops::drop::Drop>::drop::h1d2f55fbbf621f8b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1333 } Some(" as core::ops::drop::Drop>::drop::h215fc9533d8bfe23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1334 } Some(" as core::ops::drop::Drop>::drop::hc5d4f9a621566068") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1482 } Some("::into_iter::hf0fcd016a23e91ec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1716 } Some("core::char::methods::::is_ascii_digit::h9cf655e10efbd72d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3685 } Some(" as core::ops::drop::Drop>::drop::h8a12edded45fb338") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3687 } Some(" as core::ops::drop::Drop>::drop::h7bc2fd2d8a5cde2d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3970 } Some(" as core::ops::try_trait::Try>::branch::h408fd05e3a32bd9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4095 } Some("core::option::Option::as_ref::h90f53f882f31a0e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4487 } Some("core::iter::traits::iterator::Iterator::map::haa17b56e1e6ce36d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4642 } Some("::into_iter::h9a6cc15912081c40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5028 } Some("std::sync::once::Once::call_once::{{closure}}::h65f03bfe09e645af") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5080 } Some("clink_new") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5147 } Some("core::ops::function::FnMut::call_mut::hfbef2f02f6e981a7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5256 } Some(" as core::ops::drop::Drop>::drop::heb656ef56f54eadc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5387 } Some("alloc::vec::Vec::extend_from_slice::h9272740915ec5c61") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5397 } Some("alloc::boxed::Box::new_uninit_in::h89dff7d50a071f89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5399 } Some("alloc::boxed::Box::new_uninit_in::hd5ec3b2ace34ac58") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5411 } Some(">::index::h26de64d12b6e02b1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5736 } Some("::into_iter::ha8392e0b217e6819") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5792 } Some("core::convert::num:: for u32>::try_from::h3425c311dc6959b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5821 } Some("core::ptr::write_unaligned::h68547ec289adca64") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5823 } Some("core::ptr::write_unaligned::ha1469826d0125b71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6268 } Some("::into_iter::h32e1189590478f9a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6269 } Some("::into_iter::h88e6ef54a87f0415") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6313 } Some("::into_iter::h5e370c3e637f6d40") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6337 } Some("core::iter::traits::iterator::Iterator::filter::h02da29c0801bd599") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6338 } Some("core::iter::traits::iterator::Iterator::filter::h6101f34014eb7ad5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6361 } Some("core::ops::function::FnMut::call_mut::h85a313d134597487") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6630 } Some("core::option::Option::unwrap_or_default::hc103378ece080594") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6996 } Some(" as core::error::Error>::source::hbe67aed62b493c33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1303 } Some("wasmbindgentestcontext_new") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1721 } Some("core::ptr::write_bytes::precondition_check::hf4071e5cb0135945") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4328 } Some("core::option::Option::map::h5d5a81de081f1dc5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4336 } Some("core::option::Option::as_deref::hb5e0f6866432d80c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4693 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h3a7002ebb7766d39") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4694 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h50735a57ae6af894") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4695 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h6f2e6914ee4c7801") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4882 } Some(" as core::clone::Clone>::clone::h09b91ae263ea8df7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5439 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::into_val_mut::hc5bbe40e818f9bb0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5663 } Some("core::ptr::write_bytes::precondition_check::h6ed1dbb7ec1df1b8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5819 } Some("core::ptr::write_bytes::precondition_check::h1b915a2e5fdd2913") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5957 } Some("__wbindgen_exn_store") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6109 } Some("core::ptr::write_bytes::precondition_check::hf63833f4f90c389d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6146 } Some("core::ptr::write_bytes::precondition_check::he4cb810d326f2515") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6632 } Some("core::option::Option::map::hb06c2246620a3f7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7230 } Some("core::ptr::write_bytes::precondition_check::h620d5566bc3f3732") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7395 } Some("core::ptr::write_bytes::precondition_check::hbd84d1c6b96a224b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7512 } Some("core::ptr::write_bytes::precondition_check::h0d62fc878c78b89d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8049 } Some("core::ptr::write_bytes::precondition_check::hd985b1daa8c668e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8433 } Some("core::ptr::read_unaligned::hbfba4cc13d25906e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8531 } Some("core::ptr::write_bytes::precondition_check::h85802749558e4819") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8875 } Some("std::panicking::panic_handler::{{closure}}::hf36efc37fdd11196") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8904 } Some("std::panicking::set_hook::h9454de0bb90a00ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1476 } Some("core::iter::traits::iterator::Iterator::fold::h3f0dacbea0a0b018") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1756 } Some("::grow::h5f8b6e9dc3116a43") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3829 } Some("wasm_bindgen::convert::impls::>::split::h4a94a652e66582ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4319 } Some("core::option::Option::is_none_or::h335c8c0f93cbffdc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5059 } Some("::get_or_create::h94ce9ff1fa56b2ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5774 } Some("::grow::ha9c71cf5e703024b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5956 } Some("__wbindgen_destroy_closure") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6136 } Some("::grow::h19fab6ffa7db6733") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6163 } Some("::grow::h1f3f0530c3d1759a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6245 } Some("link_cli::query_processor::QueryProcessor::assign_variable::hc7375de144c6a7b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6626 } Some("core::option::Option::is_none_or::hddf9443d01c861f6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6688 } Some("::default::h1a1a3b0c0687f8e0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7161 } Some("std::env::var::hd4f6a2a797a05eb3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7197 } Some(" as core::ops::try_trait::Try>::branch::h41a9c3071368514c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7316 } Some("::grow::hc1c4778576492adc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7372 } Some("::grow::ha68210197c2b7892") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7551 } Some("::grow::hd741aea9a24a6619") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7575 } Some("links_notation::parser::multi_line_link::h017f57f31d93cb7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7582 } Some("links_notation::parser::indented_id_link::{{closure}}::hf1312b393bd9d153") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8197 } Some("::grow::h2d9c452b34286148") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8205 } Some(" as core::iter::traits::iterator::Iterator>::fold::hd9ba76821bf95115") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8273 } Some(" as nom::internal::Parser>::process::{{closure}}::h38cc65c6818929e4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8275 } Some(" as nom::internal::Parser>::process::{{closure}}::ha811d970149385a9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8276 } Some(" as nom::internal::Parser>::process::{{closure}}::hb9bca425629d8335") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8302 } Some(" as nom::internal::Parser>::process::{{closure}}::h9ed31c6c164b4be7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8306 } Some(" as nom::internal::Parser>::process::{{closure}}::h743f1a61c1eab241") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8309 } Some(" as nom::internal::Parser>::process::{{closure}}::hb74ef368bf3f61e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8310 } Some(" as nom::internal::Parser>::process::{{closure}}::h3be79abf37e86190") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8313 } Some(" as nom::internal::Parser>::process::{{closure}}::hae3d3703565d4b7d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8316 } Some(" as nom::internal::Parser>::process::{{closure}}::h7eebf581061f107b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8606 } Some("::into_iter::h4b977471b428ed7c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8701 } Some("::grow::h08ff4bfe641197fc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8930 } Some("core::ptr::drop_in_place<::fmt::{{closure}}>::had59466dec420215") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8957 } Some("::fmt::{{closure}}::hc9bee22c0d8eb035") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9090 } Some("core::fmt::num::::fmt::ha87e2aa4a9842c5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 154 } Some(" as core::future::future::Future>::poll::{{closure}}::{{closure}}::h227a663d40fd75b5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 155 } Some(" as core::future::future::Future>::poll::{{closure}}::{{closure}}::h3bc464b79fe193e9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 156 } Some(" as core::future::future::Future>::poll::{{closure}}::{{closure}}::h8f1b8de45ce0f03c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 157 } Some(" as core::future::future::Future>::poll::{{closure}}::{{closure}}::hcd10a89393718564") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 604 } Some("wasm_bindgen::convert::slices::>::into_abi::h5b730414d35e8ddb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 625 } Some(" as core::ops::drop::Drop>::drop::h2593fc4bc0ce8389") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 627 } Some(" as core::ops::drop::Drop>::drop::hd89653662f535dba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1007 } Some("wasm_bindgen_test::__rt::browser::Browser::new::h3c1cd8a6c6bcc39d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1092 } Some("serde_core::de::Error::missing_field::h8be444b88bec2c18") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1094 } Some("serde_core::de::Error::duplicate_field::h7eaee6a6cb2885d0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1175 } Some("wasm_bindgen_test::__rt::js_console_log::h244df863c9968011") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1177 } Some("wasm_bindgen_test::__rt::js_console_error::hea696fcf189b4957") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1572 } Some("wasm_bindgen_test::__rt::node::og_console_log::h45d5bd60d7b7fc1b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3858 } Some("wasm_bindgen::convert::slices::>::into_abi::h8627d2ea4109936c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3915 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h175f04e4c4b4ec99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4951 } Some("serde_core::de::Error::duplicate_field::h8468d5b84952d3d4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5159 } Some(" as core::ops::drop::Drop>::drop::h9728c1332d3a6f8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5171 } Some(" as core::ops::drop::Drop>::drop::h628a28e78775766a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5214 } Some(" as core::ops::drop::Drop>::drop::h21dcec9e98e61113") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5223 } Some(" as core::ops::drop::Drop>::drop::h21fdcf30924c2b89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5226 } Some(" as core::ops::drop::Drop>::drop::h4263ca17e7e402be") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5235 } Some(" as core::ops::drop::Drop>::drop::h3c79bce7ef01e9c6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5237 } Some(" as core::ops::drop::Drop>::drop::h73bc140d5f24932e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5284 } Some("wasm_bindgen::convert::slices::>::into_abi::h97d90bf6c5117bc6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5405 } Some(" as core::ops::drop::Drop>::drop::hb255473049d24801") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5975 } Some("wasm_bindgen::__wbindgen_throw::h3f426da05a0ef094") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6437 } Some(" as core::ops::drop::Drop>::drop::h8256aebc2886ec33") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6484 } Some(" as core::ops::drop::Drop>::drop::hd4e9c7850c8da551") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7075 } Some(" as core::ops::try_trait::Try>::branch::hd41147f69c8dafd0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7094 } Some("core::str::pattern::ReverseSearcher::next_reject_back::h9fc050e9f212051f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7409 } Some(" as core::ops::drop::Drop>::drop::h56708ed26fadab71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7569 } Some("links_notation::parser::ParserState::current_indentation::h130d8eb58647b1d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7720 } Some(" as core::ops::drop::Drop>::drop::h2978476e9651fc6e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7721 } Some(" as core::ops::drop::Drop>::drop::h605cdd0269501a68") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8047 } Some("core::str::pattern::ReverseSearcher::next_reject_back::hc3cb05030f0f85cd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8053 } Some("core::str::pattern::Searcher::next_match::h27473e8713b9090b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8055 } Some("core::str::pattern::Searcher::next_match::h81843a4012a33770") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8057 } Some("core::str::pattern::Searcher::next_match::hc11dc8671f2788a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8059 } Some("core::str::pattern::Searcher::next_match::hf558d96fa6e973b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8061 } Some("core::str::pattern::Searcher::next_reject::h94fa925cc6b325bd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8063 } Some("core::str::pattern::Searcher::next_reject::he1563ca2bb235e8c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4530 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern_readonly::{{closure}}::he755b3c5c6eb4446") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7053 } Some("core::iter::traits::iterator::Iterator::copied::h1e4d293a3cc243ed") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4531 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern_readonly::{{closure}}::hea8adddbf18a967a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4532 } Some("link_cli::query_processor::QueryProcessor::resolve_pattern_readonly::{{closure}}::hff5d0fb7e5af7a78") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7054 } Some("core::iter::traits::iterator::Iterator::copied::h2cfeb57226655736") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7764 } Some(">::process::{{closure}}::h01da79d546937ebb") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7156 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hf72584d65b3bcaef") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7766 } Some(">::process::{{closure}}::h02bb0b22c154c5c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7770 } Some(">::process::{{closure}}::h0e0f27873ab54ba4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7772 } Some(">::process::{{closure}}::h12ee7885c71b82f8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7775 } Some(">::process::{{closure}}::h2c24e3a65036dc57") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7777 } Some(">::process::{{closure}}::h2cbcb85f9e19baf1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7780 } Some(">::process::{{closure}}::h2f60984347602186") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7782 } Some(">::process::{{closure}}::h2f9a606b6ee3964e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7785 } Some(">::process::{{closure}}::h33845c350077af92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7787 } Some(">::process::{{closure}}::h37d60f5ee7adb3b7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7789 } Some(">::process::{{closure}}::h3a74dcede3472b8d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7791 } Some(">::process::{{closure}}::h3b580d7e8dc8ba4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7793 } Some(">::process::{{closure}}::h3d05390372cdcdf7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7798 } Some(">::process::{{closure}}::h4fa8ffb4c934e186") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7801 } Some(">::process::{{closure}}::h5456c41dd2554b60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7806 } Some(">::process::{{closure}}::h5ad8d882f465e656") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7813 } Some(">::process::{{closure}}::h7d1cd300192b73d5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7816 } Some(">::process::{{closure}}::h7e35e08cf5526a3e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7819 } Some(">::process::{{closure}}::h8b3390c7261d3c89") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7822 } Some(">::process::{{closure}}::h8c1b8637997dec98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7824 } Some(">::process::{{closure}}::h8e0d310ecf8c7d62") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7827 } Some(">::process::{{closure}}::h8fa296141d28117f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7829 } Some(">::process::{{closure}}::h924445c81961cdf8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7832 } Some(">::process::{{closure}}::h9853360dd034d99b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7834 } Some(">::process::{{closure}}::h9bf76d4c4cb6b64e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7836 } Some(">::process::{{closure}}::ha13efb0b29d9788e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7838 } Some(">::process::{{closure}}::ha168615feb1e7997") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7840 } Some(">::process::{{closure}}::ha50fd96899d46962") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7844 } Some(">::process::{{closure}}::hab5b2ca87c73af4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7846 } Some(">::process::{{closure}}::hb2db3a9f056ffc5e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7856 } Some(">::process::{{closure}}::he33d08e52aec37a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7858 } Some(">::process::{{closure}}::he672042e328d571c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7861 } Some(">::process::{{closure}}::hedf9450bd6b7a079") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8186 } Some("alloc::alloc::Global::alloc_impl_runtime::h95e596c806c471e3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8417 } Some("alloc::alloc::Global::alloc_impl_runtime::h15cd6ba02f9550f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8691 } Some("alloc::alloc::Global::alloc_impl_runtime::h1eaf7a8f26cdec99") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 469 } Some("getopts::Options::optflag::heed9aef1aaf7ba0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 664 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_fit::h0942c67f1b8a6f54") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4202 } Some("core::iter::adapters::try_process::hf2983e1c67299c08") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4575 } Some(" as core::iter::traits::iterator::Iterator>::try_fold::hc47652f0f7135771") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5453 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_fit::h80adb1947dd4403c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8212 } Some("core::iter::adapters::map::map_try_fold::{{closure}}::h383e998f07593d96") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 308 } Some(" as core::iter::traits::iterator::Iterator>::next::h8f4706f60b218489") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 417 } Some("<[f64] as test::stats::Stats>::median_abs_dev::h2310d699d14dca71") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4416 } Some("core::slice::sort::stable::merge::MergeState::merge_up::h0835b39c3bfc8287") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4417 } Some("core::slice::sort::stable::merge::MergeState::merge_up::h10da40b1b1790ea5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4419 } Some("core::slice::sort::stable::merge::MergeState::merge_up::h6f1f72c3ed7f1496") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4420 } Some("core::slice::sort::stable::merge::MergeState::merge_up::ha38593a73e3e5d84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4421 } Some("core::slice::sort::stable::merge::MergeState::merge_up::hb650623fb56199ea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4422 } Some("core::slice::sort::stable::merge::MergeState::merge_up::hd7f86e4c61b0bc31") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6904 } Some("hashbrown::raw::RawTable::insert_no_grow::h3f2fb0422ffdd459") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6905 } Some("hashbrown::raw::RawTable::insert_no_grow::hff427bf4f4f37f32") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9003 } Some("rustc_demangle::v0::Printer::print_const_uint::h104a5faf47ecbfea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1602 } Some("wasm_bindgen_test::__rt::criterion::baseline::__wbgbench_import::h3c99a33fe1a135f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4989 } Some("link_cli::named_type_links::NamedTypeLinks::format_structure::h982fa3c56b526e60") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8967 } Some("dlmalloc::dlmalloc::Dlmalloc::insert_large_chunk::hc7cb11ca1345ed38") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 61 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h6ff3438c2b289e0f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 89 } Some("::default::ha79ed293134f95fe") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1673 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h41a18e8f6168b705") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3863 } Some("wasm_bindgen::convert::closures::_::invoke::h0e42c78759ed7c92") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5532 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::hc25d08d8ce2672f1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6212 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h00f28e28f7437c5b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6558 } Some("hashbrown::rustc_entry::>::rustc_entry::h272813d5e0fe8bfc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7567 } Some("links_notation::parser::ParserState::push_indentation::h42651efca4fbcad0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7769 } Some(">::process::{{closure}}::h03f48ac0814bcda6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4735 } Some(" as core::ops::index::Index>::index::h4e7459a972714225") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6336 } Some("core::iter::traits::iterator::Iterator::try_fold::hfed0af92322253ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8271 } Some(" as core::ops::try_trait::Try>::branch::h96d43d0147d858f3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8463 } Some("memchr::memchr::memrchr_raw::ha729ac6b6d0dd18c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6545 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::h6b98ac709f64df0b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8503 } Some(" as core::ops::drop::Drop>::drop::h5c2889cf1af0e41f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6546 } Some(" as core::iter::traits::collect::Extend<(K,V)>>::extend::hbe82074490d52fe5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8504 } Some(" as core::ops::drop::Drop>::drop::h5dc82639ddf7e20d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6836 } Some(" as core::iter::traits::iterator::Iterator>::find::haf4ebc1777177e7e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8568 } Some(" as core::ops::drop::Drop>::drop::h01ee929de533b2ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7774 } Some(">::process::{{closure}}::h20c7a6b61e487ffd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8571 } Some(" as core::ops::drop::Drop>::drop::h64f0bda71a1a0bee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7784 } Some(">::process::{{closure}}::h3152f78ea929099c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8742 } Some("core::str::pattern::ReverseSearcher::next_reject_back::h319f662042befd93") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7514 } Some("core::ptr::swap_nonoverlapping_bytes::swap_nonoverlapping_chunks::hab3db8f5de05da9e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8863 } Some("std::io::buffered::bufwriter::BufWriter::write_all_cold::h42a4871d99653251") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 416 } Some("<[f64] as test::stats::Stats>::percentile::h7d7ee97b803adba6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8896 } Some("std::backtrace::Backtrace::capture::ha711890724136613") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4209 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_i64::ha262936a6874ce67") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4827 } Some("serde_json::ser::Formatter::write_string_fragment::hc1ad3d23bc3b2f0c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4912 } Some("alloc::rc::Rc::increment_strong_count_in::h6c01eb93cd55c7c7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5744 } Some("memchr::memchr::Memchr::new::h06d02c6d689de357") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4915 } Some("alloc::rc::Rc::from_raw_in::h829afc28843b77c3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4923 } Some("core::cell::RefCell::new::hd2e5e41649e88b77") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5841 } Some("zmij::compute_exp_shift::h13a34371a9de965f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6740 } Some(" as core::iter::traits::iterator::Iterator>::next::h665801d5461581f2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7868 } Some(" as core::fmt::Debug>::fmt::h7f5f03b0ea4e556b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8760 } Some("::spec_advance_by::h2824f7fd3b22acca") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6559 } Some("hashbrown::rustc_entry::>::rustc_entry::h7f4b39024a77a620") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9127 } Some("core::fmt::Formatter::debug_struct_field1_finish::h8807212d123ee5d2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8910 } Some("<&T as core::fmt::Debug>::fmt::h7c083def2c66feba") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 338 } Some("core::ptr::drop_in_place::hcdfb582c7cf52b48") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5589 } Some("::parse_str::{{closure}}::h735e4d244d613b3c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7795 } Some(">::process::{{closure}}::h489dbbd4c6a9793c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 424 } Some("alloc::collections::vec_deque::VecDeque::grow::h4a32df470ab7bb98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5722 } Some("serde_json::value::Value::as_array::h05acb22d7b733f98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1249 } Some("alloc::raw_vec::RawVec::grow_one::haa72875c7657b624") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5793 } Some("core::convert::num:: for u64>::try_from::h5fc8b5d051336cb2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1250 } Some("alloc::raw_vec::RawVec::grow_one::hb5043578267d7fea") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5830 } Some(">::shr::h525530da3cfcaa19") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4860 } Some("core::iter::traits::iterator::Iterator::fold::he1d350b9fedce544") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5851 } Some(">::shl::hbec45c3485fd4239") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5137 } Some("alloc::raw_vec::RawVec::grow_one::h9b9887de4fb668e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5853 } Some(">::shr::h5824590803b4ab4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5611 } Some("alloc::raw_vec::RawVec::grow_one::hc4dd7585300b9b01") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 9050 } Some("alloc::sync::arcinner_layout_for_value_layout::hbf4b7cbef4226928") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7796 } Some(">::process::{{closure}}::h498a2faf3e5b1d0e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7010 } Some("alloc::raw_vec::RawVec::grow_one::h1b56ac762002356d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 146 } Some(" as core::future::future::Future>::poll::{{closure}}::h05d14a51d05f2910") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7797 } Some(">::process::{{closure}}::h4cd7cc7e5ff4985a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7011 } Some("alloc::raw_vec::RawVec::grow_one::h3b936a393c4622ab") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7100 } Some("core::slice::sort::shared::smallsort::sort9_optimal::h0c03266ad2d9c1e6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 149 } Some(" as core::future::future::Future>::poll::{{closure}}::h7b5eb6626cf5f51c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 152 } Some(" as core::future::future::Future>::poll::{{closure}}::had9cfdb066f98935") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7800 } Some(">::process::{{closure}}::h540122ea4cf5bdc3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7012 } Some("alloc::raw_vec::RawVec::grow_one::h7a14c3c5ef258ed2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7013 } Some("alloc::raw_vec::RawVec::grow_one::h84f26603e0a0877d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7198 } Some(" as core::ops::try_trait::Try>::branch::h9239577cbbe1367a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7805 } Some(">::process::{{closure}}::h59ccec0869e5aeb6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7809 } Some(">::process::{{closure}}::h75e08509d48a8f98") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7463 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h8b0d05f8527388a4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7014 } Some("alloc::raw_vec::RawVec::grow_one::h9c98cf0cda65da9c") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7810 } Some(">::process::{{closure}}::h7736ebc7193cd558") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7826 } Some(">::process::{{closure}}::h8e7d7a12ac6f96b0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8334 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::hfe141209334134a8") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7848 } Some(">::process::{{closure}}::hb9417f2aaee5c2d1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7851 } Some(">::process::{{closure}}::hcf236f28c2406ae6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 553 } Some("serde_json::de::Deserializer::parse_long_integer::h25fa46d1d730ccbd") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7853 } Some(">::process::{{closure}}::hdef39b326a63cf1e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7015 } Some("alloc::raw_vec::RawVec::grow_one::hd31a373dd713a66a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7016 } Some("alloc::raw_vec::RawVec::grow_one::hdc9128ce5f6dadec") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 3419 } Some("js_sys::futures::task::singlethread::Task::run::h8c3ceeabed230618") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7421 } Some("alloc::raw_vec::RawVec::grow_one::hed4b84af3e1b6887") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7864 } Some(">::process::{{closure}}::hfa0643d251dc85ee") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 4702 } Some("alloc::vec::Vec::extend_desugared::h5f01952f141b274e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7758 } Some(" as nom::internal::Parser>::process::{{closure}}::ha9f5e264b13e19a0") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 153 } Some(" as core::future::future::Future>::poll::{{closure}}::hbc5cee5ef02175a6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8193 } Some("alloc::raw_vec::RawVec::grow_one::h43cd63c49939b7b4") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 493 } Some(" as serde_core::de::MapAccess>::next_value_seed::h63c8c1607e6bc7b9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8194 } Some("alloc::raw_vec::RawVec::grow_one::h4e6a06bc2e7017a1") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8239 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h18673b1e8f81be81") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 750 } Some(" as core::ops::try_trait::Try>::branch::h7eeee37b29f95b4d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8240 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hed003291ae350158") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8270 } Some(" as core::ops::try_trait::Try>::branch::h14859023db423a84") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1347 } Some("serde_json::ser::Formatter::write_f64::h8b54588903568d8e") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8359 } Some("core::iter::traits::iterator::Iterator::zip::he92b303d7b1d1dd5") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5348 } Some("serde_json::de::Deserializer::parse_long_integer::h71c252e9d3e123d6") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8452 } Some("core::convert::num:: for usize>::try_from::h8f53c46af7d71511") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8856 } Some("std::io::stdio::_print::he4d217c65f2d288d") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8912 } Some("::fmt::hb9235427d3962ebc") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 7746 } Some("nom::internal::Parser::parse::h206aa06e4a4fe482") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8456 } Some(" as core::ops::try_trait::Try>::branch::hb09828d97d148409") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 5854 } Some(">::shl::h6b6c6846d35a825b") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8462 } Some(" as core::ops::try_trait::Try>::branch::h7a8b37e1c00f2844") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6246 } Some("link_cli::query_processor::QueryProcessor::is_normal_index::h26f3d109ede93f30") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8673 } Some(" as core::error::Error>::source::h132788c0087ab6e7") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1369 } Some(" as serde_core::ser::SerializeMap>::end::h75deb050b4cfd298") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8675 } Some(" as core::error::Error>::source::had40fee4c3810ea2") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1371 } Some(" as serde_core::ser::SerializeSeq>::end::h0db6e046853d255f") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 277 } Some(" as test::formatters::OutputFormatter>::write_test_start::h30c56cdf2a51e7ce") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8494 } Some("alloc::vec::splice::>::move_tail::h35476c37f1d108c9") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8859 } Some("::fmt::h65634188156334a3") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 6330 } Some("std::collections::hash::set::HashSet::iter::h1b0b8cc7a2f7b27a") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 278 } Some(" as test::formatters::OutputFormatter>::write_test_start::hee0976f74e720460") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 356 } Some("core::ptr::drop_in_place>::h3ad1e6d1ad9dec09") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 1533 } Some("wasm_bindgen::convert::slices::::into_abi::{{closure}}::h5bc75d181dc39f23") +[2026-05-02T10:31:05Z DEBUG walrus::module::functions] emit function Id { idx: 8755 } Some("core::str::iter::SplitInternal