Skip to content
Usernames in Claude

Usernames in Claude

March 27, 2026

Funny thing, there seem to be some files (or at least references to files) embedded in the claude binary that contain the username of the user. Lets look at Linux and Mac users (usernames in the /home or /Users directory):

❯ strings $(which claude) | grep -E '^/(home|Users)/[^/]+' | cut -d/ -f3 | sort -u
amorriscode
atp
boris
claude
hellja
qing
runner
user
username

The paths themselves aren’t too interesting though (list truncated):

❯ strings $(which claude) | grep -E '^/(home|Users)/[^/]+' | sort -u
/home/claude/.claude/remote
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/box_blur.rsp
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/color_matrix.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/component_transfer.rs
...
/home/runner/work/claude-cli-internal/claude-cli-internal/node_modules/@grpc/grpc-js/build/src
/home/user
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-deque-0.8.6/src/deque.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-epoch-0.9.18/src/atomic.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-epoch-0.9.18/src/internal.rs
...
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/worker.rs
/Users/atp/code/claude-cli-internal/vendor/image-processor-src/target/aarch64-apple-darwin/release/deps/libimage_processor.dylib
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/module_register.rs
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/error.rs
...
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/lazy.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/thread/local.rs
...
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/selectors_vm/ast.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/selectors_vm/compiler.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/selectors_vm/mod.rs
/Users/username/project/README.md
/Users/username/project/src
/Users/username/project/src/index.ts
/Users/username/project/src/newFile.ts

If you look closely at the list, you can glean quite a bit of context about how claude was built:

  1. Rust Ecosystem: The heavy presence of .cargo/registry and .rustup paths confirms that the CLI is partially written in Rust. We can even see references to specific tools like resvg (SVG rendering) and zune-jpeg.
  2. CI/CD Traces: The paths under /home/runner and /Users/runner/work point to GitHub Actions runners being used for cross-compilation (both Ubuntu and macOS targets).
  3. Internal Projects: We can spot references to claude-cli-internal, claude-cli-4, and even bun-internal, giving us a peek into Anthropic’s internal repo structure.
  4. Developer Machines: Paths like /Users/amorriscode or /Users/boris suggest that some crates or components were built locally by developers and statically linked, preserving their local absolute paths via panic macros, debug symbols, or file!() macros.

If you are curious, you can explore the complete, un-truncated list of over 600 extracted paths by enabling verbose mode (toggle, bottom right).

verbose output

Full list of extracted paths:

/home/claude/.claude/remote
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/box_blur.rsp
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/color_matrix.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/component_transfer.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/convolve_matrix.rs/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/mod.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/iir_blur.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/filter/turbulence.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/geom.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/image.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/mask.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/resvg/src/render.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg-parser/src/marker.rshiddenscroll
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg-parser/src/svgtree/mod.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg-parser/src/svgtree/names.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg-parser/src/svgtree/parse.rsX
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg-parser/src/svgtree/text.rstext
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg-tree/src/filter.rs
/home/runner/.cargo/git/checkouts/resvg-4b7e4ee32ad6d954/3495d87/crates/usvg/src/writer.rs
/home/runner/.cargo/git/checkouts/woff2-rs-a4d3c822d2553afe/88cce4c/src/glyf_decoder/mod.rs
/home/runner/.cargo/git/checkouts/woff2-rs-a4d3c822d2553afe/88cce4c/src/woff2/table_directory.rs,
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler32-1.2.0/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/arrayvec-0.7.4/src/arrayvec.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base64-0.21.7/src/encode.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/brotli-decompressor-2.5.1/src/bit_reader/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/brotli-decompressor-2.5.1/src/decode.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/brotli-decompressor-2.5.1/src/huffman/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/brotli-decompressor-2.5.1/src/transform.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bytemuck-1.15.0/src/internal.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bytes-1.6.0/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/data-url-0.2.0/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/data-url-0.2.0/src/mime.rs\
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/huffman_table.rs/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/huffman_lengths.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/input_buffer.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/length_encode.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/lz77.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/matching.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/output_writer.rsL
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/deflate-1.0.0/src/rle.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/src/bufreader.rs$
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/flate2-1.0.28/src/crc.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fontdb-0.14.1/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gif-0.12.0/src/reader/decoder.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/gif-0.12.0/src/reader/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/imagesize-0.12.0/src/formats/jxl.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/decoder.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/huffman.rsfailed to decode huffman code@
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/idct.rsD
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/parser.rsencountered  with invalid length 
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/upsampler.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/worker/immediate.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jpeg-decoder-0.3.1/src/worker/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/kurbo-0.9.5/src/cubicbez.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.5.4/src/inflate/core.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.5.4/src/inflate/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.5.4/src/inflate/output_buffer.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/src/inflate/core.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/src/inflate/output_buffer.rsH
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.7.2/src/inflate/stream.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pathfinder_content-0.5.0/src/outline.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/decoder/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/decoder/stream.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/decoder/zlib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/encoder.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/filter.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/text_metadata.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/png-0.17.5/src/utils.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rctree-0.5.0/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/roxmltree-0.18.1/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/roxmltree-0.18.1/src/parse.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/aat/extended_kerning.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/aat/map.rs\6
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/aat/metamorphosis.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/aat/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/aat/tracking.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/buffer.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/hangul.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/indic.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/khmer.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/myanmar.rs\%
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/thai.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/universal.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/complex/vowel_constraints.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/fallback.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/glyph_set.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/normalize.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/ot/contextual.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/ot/kerning.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/ot/map.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/ot/matching.rs$
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/ot/position.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/ot/substitute.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/plan.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/shape.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/tag_table.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/tag.rs,?
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustybuzz-0.7.0/src/unicode.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.115/src/error.rs at line invalid type: , expected 
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde_json-1.0.115/src/read.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/simplecss-0.2.1/src/selector.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/svgtypes-0.11.0/src/path.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/svgtypes-0.14.0/src/error.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/svgtypes-0.14.0/src/stream.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/alpha_runs.rsL
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/blitter.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/edge_builder.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/edge_clipper.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/edge.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/fixed_point.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/geom.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/line_clipper.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/mask.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/path_geometry.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/path64/cubic64.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/path64/line_cubic_intersections.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/path64/quad64.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/pipeline/blitter.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/pipeline/highp.rsP
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/pipeline/lowp.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/pipeline/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/scan/hairline_aa.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/scan/hairline.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/scan/path_aa.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/scan/path.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/shaders/gradient.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/shaders/linear_gradient.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-0.10.0/src/shaders/mod.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/dash.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/path_builder.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/path_geometry.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/path.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/rect.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/size.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-skia-path-0.10.0/src/stroker.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tinyvec-1.6.0/src/arrayvec.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/aat.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/tables/cff/argstack.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/tables/cff/cff2.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/tables/cff/dict.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/tables/gpos.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ttf-parser-0.18.1/src/tables/gvar.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-bidi-0.3.15/src/explicit.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-bidi-0.3.15/src/implicit.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-bidi-0.3.15/src/lib.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-general-category-0.6.0/src/category.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/weezl-0.1.8/src/decode.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xmlparser-0.13.6/src/stream.rs
/home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/xmlparser-0.13.6/src/strspan.rs
/home/runner/work/claude-cli-internal/claude-cli-internal/node_modules/@grpc/grpc-js/build/src
/home/user
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-deque-0.8.6/src/deque.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-epoch-0.9.18/src/atomic.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-epoch-0.9.18/src/internal.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-epoch-0.9.18/src/sync/list.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/crossbeam-epoch-0.9.18/src/sync/once_lock.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/memchr-2.7.6/src/arch/all/packedpair/mod.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/memchr-2.7.6/src/arch/all/twoway.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/memchr-2.7.6/src/arch/generic/packedpair.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/array.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/string.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/value_ref.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/mod.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/module_register.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/error.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/js_values/function.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/js_values/string/mod.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-0.5.0/src/boxcar.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-0.5.0/src/lib.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-0.5.0/src/par_sort.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-0.5.0/src/pattern.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-0.5.0/src/worker.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/chars.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/exact.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/fuzzy_greedy.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/fuzzy_optimal.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/lib.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/matrix.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/pattern.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/prefilter.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/score.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/nucleo-matcher-0.3.1/src/utf32_str.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/imp_std.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/lib.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/parking_lot_core-0.9.12/src/parking_lot.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-1.11.0/src/iter/collect/consumer.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-1.11.0/src/iter/collect/mod.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-1.11.0/src/slice/mod.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-core-1.13.0/src/job.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-core-1.13.0/src/latch.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-core-1.13.0/src/registry.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/rayon-core-1.13.0/src/sleep/mod.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/unicode-segmentation-1.12.0/src/grapheme.rs
/Users/amorriscode/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/unicode-segmentation-1.12.0/src/tables.rs
/Users/amorriscode/code/worktrees/claude-cli-internal-jank-fuzzy/vendor/file-index-src/target/aarch64-apple-darwin/release/deps/libfile_index.dylib
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/fdeflate-0.3.7/src/compress.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/fdeflate-0.3.7/src/decompress.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/fdeflate-0.3.7/src/huffman.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/flate2-1.1.9/src/zio.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/codecs/jpeg/decoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/codecs/jpeg/encoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/codecs/png.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/codecs/webp/decoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/color.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/imageops/sample.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/images/buffer.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/io/encoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/io/image_reader_type.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-0.25.9/src/metadata/cicp.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/decoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/encoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/extended.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/huffman.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/loop_filter.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/lossless_transform.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/lossless.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/vp8_arithmetic_decoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/vp8.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/image-webp-0.2.4/src/yuv.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/miniz_oxide-0.8.9/src/deflate/core.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/miniz_oxide-0.8.9/src/deflate/stored.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/miniz_oxide-0.8.9/src/deflate/stream.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/buffer.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/value_ref.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/module_register.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/error.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/js_values/function.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/tokio_runtime.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/imp_std.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/lib.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/adam7.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/common.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/read_decoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/stream.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/transform.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/transform/palette.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/unfiltering_buffer.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/decoder/zlib.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/encoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/filter/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/png-0.18.1/src/text_metadata.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/loom/std/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/blocking/pool.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/blocking/schedule.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/blocking/shutdown.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/blocking/task.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/context/current.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/context/runtime.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/handle.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/metrics/worker.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/park.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/current_thread/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/defer.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/multi_thread/mod.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/multi_thread/park.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/multi_thread/queue.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/scheduler/multi_thread/worker.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/task/core.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/task/harness.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/task/list.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/runtime/task/state.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/sync/notify.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/sync/oneshot.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/util/linked_list.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/util/rand/rt.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tokio-1.49.0/src/util/sharded_list.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-core-0.5.1/src/bytestream/reader/no_std_readers.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/bitstream.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/color_convert/scalar.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/decoder.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/headers.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/huffman.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/idct/neon.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/idct/scalar.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/mcu_prog.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/mcu.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/misc.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/upsampler/neon.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/upsampler/scalar.rs
/Users/atp/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/zune-jpeg-0.5.12/src/worker.rs
/Users/atp/code/claude-cli-internal/vendor/image-processor-src/target/aarch64-apple-darwin/release/deps/libimage_processor.dylib
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/module_register.rs
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/error.rs
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/js_values/function.rs
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/imp_std.rs
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/lib.rs
/Users/boris/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/tree-sitter-0.25.10/binding_rust/lib.rs
/Users/boris/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/io/mod.rs
/Users/boris/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/lazy.rs
/Users/boris/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/thread/local.rs
/Users/boris/code/claude-cli-4/vendor/tree-sitter-bash-src/target/aarch64-apple-darwin/release/deps/libtree_sitter_bash_napi.dylib
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/ahocorasick.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/automaton.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/dfa.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/nfa/contiguous.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/nfa/noncontiguous.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/packed/api.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/packed/pattern.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/packed/rabinkarp.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/packed/teddy/generic.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/util/alphabet.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/util/debug.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/util/prefilter.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/util/primitives.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/util/remapper.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/aho-corasick-1.1.4/src/util/search.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/bat-0.26.1/src/assets.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/bat-0.26.1/src/syntax_mapping/builtin.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/flate2-1.1.8/src/bufreader.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/globset-0.4.18/src/glob.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/globset-0.4.18/src/pathutil.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/memchr-2.7.6/src/arch/all/packedpair/mod.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/memchr-2.7.6/src/arch/all/twoway.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/memchr-2.7.6/src/arch/generic/packedpair.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/miniz_oxide-0.8.9/src/inflate/core.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/miniz_oxide-0.8.9/src/inflate/output_buffer.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/miniz_oxide-0.8.9/src/inflate/stream.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/value_ref.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/mod.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/module_register.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/error.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/js_values/function.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/imp_std.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/lib.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/onig-6.5.1/src/lib.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/onig-6.5.1/src/region.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/hybrid/dfa.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/hybrid/regex.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/hybrid/search.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/error.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/limited.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/literal.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/reverse_inner.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/stopat.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/strategy.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/meta/wrappers.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/backtrack.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/builder.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/compiler.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/literal_trie.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/map.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/nfa.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/pikevm.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/nfa/thompson/range_trie.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/alphabet.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/captures.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/determinize/mod.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/determinize/state.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/empty.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/escape.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/look.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/pool.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/prefilter/byteset.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/prefilter/memchr.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/prefilter/memmem.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/prefilter/teddy.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/primitives.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/search.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/sparse_set.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/utf8.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-automata-0.4.13/src/util/wire.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/ast/parse.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/debug.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/hir/interval.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/hir/literal.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/hir/mod.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/hir/translate.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/unicode.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/regex-syntax-0.8.8/src/utf8.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/serde_yaml-0.9.34+deprecated/src/error.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/serde_yaml-0.9.34+deprecated/src/libyaml/cstr.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/similar-2.7.0/src/algorithms/compact.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/similar-2.7.0/src/algorithms/myers.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/similar-2.7.0/src/algorithms/patience.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/similar-2.7.0/src/algorithms/utils.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/syntect-5.3.0/src/highlighting/highlighter.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/syntect-5.3.0/src/parsing/parser.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/syntect-5.3.0/src/parsing/regex.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/syntect-5.3.0/src/parsing/scope.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/syntect-5.3.0/src/parsing/syntax_definition.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/syntect-5.3.0/src/parsing/syntax_set.rs
/Users/hellja/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/unicode-width-0.2.2/src/tables.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/collections/btree/navigate.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/collections/btree/node.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/raw_vec/mod.rs
/Users/hellja/.rustup/toolchains/image.pngstable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/str.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/string.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/sync.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/core/src/slice/sort/stable/quicksort.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/core/src/str/mod.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/core/src/str/pattern.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/io/impls.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/io/mod.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/lazy.rs
/Users/hellja/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/thread/local.rs
/Users/hellja/code/claude-cli-internal2/vendor/color-diff-src/target/aarch64-apple-darwin/release/deps/libcolor_diff.dylib
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/coreaudio-rs-0.11.3/src/audio_unit/audio_format.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/cpal-0.15.3/src/host/coreaudio/macos/mod.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/cpal-0.15.3/src/host/coreaudio/mod.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/cpal-0.15.3/src/traits.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/js_values/buffer.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/bindgen_runtime/module_register.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/error.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/napi-2.16.17/src/threadsafe_function.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/imp_std.rs
/Users/qing/.cargo/registry/src/artifactory.infra.ant.dev-7db23613d841872b/once_cell-1.21.3/src/lib.rs
/Users/qing/code/claude-cli-internal/vendor/audio-capture-src/target/aarch64-apple-darwin/release/deps/libaudio_capture_napi.dylib
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/ahocorasick.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/automaton.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/dfa.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/contiguous.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/nfa/noncontiguous.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/api.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/pattern.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/rabinkarp.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/packed/teddy/generic.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/alphabet.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/debug.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/prefilter.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/primitives.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/remapper.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.3/src/util/search.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.87/src/error.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.87/src/fmt.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/escape_bytes.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/ext_slice.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/impls.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/io.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/unicode/fsm/grapheme_break_fwd.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/unicode/fsm/whitespace_anchored_fwd.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/unicode/fsm/whitespace_anchored_rev.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/unicode/grapheme.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/unicode/whitespace.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.10.0/src/utf8.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/atomic.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/internal.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/list.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.36.0/src/cow_rc_str.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.36.0/src/macros.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.36.0/src/nth.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.36.0/src/parser.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cssparser-0.36.0/src/tokenizer.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs_io-0.1.7/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs_io-0.1.7/src/util.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.34/src/data.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.34/src/gb18030.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.34/src/handles.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.34/src/iso_2022_jp.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.34/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.34/src/utf_8.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/ascii.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/data.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/euc_jp.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/gb18030.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/handles.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/iso_2022_jp.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/shift_jis.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/single_byte.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/utf_8.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/variant.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lexopt-0.3.0/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.22/src/__private_api.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/arch/all/packedpair/mod.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/arch/all/twoway.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.4/src/arch/generic/packedpair.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pcre2-0.2.9/src/bytes.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pcre2-0.2.9/src/error.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pcre2-0.2.9/src/ffi.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pcre2-0.2.9/src/pool.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf_shared-0.13.1/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/phf-0.13.1/src/map.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/accel.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/automaton.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/dense.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/determinize.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/minimize.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/onepass.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/regex.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/remapper.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/search.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/sparse.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/dfa/special.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/hybrid/dfa.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/hybrid/regex.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/hybrid/search.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/error.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/limited.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/literal.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/reverse_inner.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/stopat.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/strategy.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/meta/wrappers.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/backtrack.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/builder.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/compiler.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/literal_trie.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/map.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/nfa.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/pikevm.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/nfa/thompson/range_trie.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/alphabet.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/captures.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/determinize/mod.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/determinize/state.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/empty.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/escape.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/look.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/pool.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/prefilter/byteset.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/prefilter/memchr.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/prefilter/memmem.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/prefilter/teddy.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/primitives.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/search.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/sparse_set.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/utf8.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.7/src/util/wire.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/ast/parse.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/debug.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/error.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/hir/interval.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/hir/literal.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/hir/mod.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/hir/translate.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/unicode.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.4/src/utf8.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.33.0/builder.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/selectors-0.33.0/parser.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.128/src/ser.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/servo_arc-0.4.3/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/core.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/line_ending.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/refill.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/word_separators.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/word_splitters.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/wrap_algorithms.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/textwrap-0.16.1/src/wrap.rs
/Users/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs
/Users/runner/work/_temp/webkit-release/JavaScriptCore/DerivedSources/AirOpcodeGenerated.h
/Users/runner/work/_temp/webkit-release/JavaScriptCore/DerivedSources/WasmOps.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/Assertions.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/Box.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/CheckedArithmetic.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/CheckedPtr.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/CheckedRef.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/ConcurrentPtrHashSet.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/Deque.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/Dominators.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/FastBitVector.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/HashTable.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/IndexMap.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/IntervalSet.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/LazyRef.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/LazyUniqueRef.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/Liveness.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/LockAlgorithmInlines.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/Markable.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/NaturalLoops.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/ObjectIdentifier.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/RedBlackTree.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/RefCounted.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/RefPtr.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/RobinHoodHashTable.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/SinglyLinkedListWithTail.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/StdLibExtras.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/text/StringBuilder.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/text/StringConcatenate.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/text/StringImpl.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/ThreadSafeWeakHashSet.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/WeakPtr.h
/Users/runner/work/_temp/webkit-release/WTF/Headers/wtf/WeakRef.h
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/cli/src/decompress.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/ignore/src/dir.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/ignore/src/gitignore.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/ignore/src/walk.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/matcher/src/interpolate.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/matcher/src/lib.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/pcre2/src/matcher.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/printer/src/hyperlink.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/printer/src/json.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/printer/src/standard.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/printer/src/summary.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/printer/src/util.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/regex/src/config.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/regex/src/matcher.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/searcher/src/line_buffer.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/searcher/src/lines.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/searcher/src/searcher/core.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/searcher/src/searcher/glue.rs
/Users/runner/work/bun-internal/bun-internal/embedded/ripgrep/crates/searcher/src/searcher/mod.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/memory/arena.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/rewritable_units/element.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/rewritable_units/mutations.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/rewritable_units/text_encoder.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/rewritable_units/tokens/attributes.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/rewriter/handlers_dispatcher.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/rewriter/mod.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/selectors_vm/ast.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/selectors_vm/compiler.rs
/Users/runner/work/bun-internal/bun-internal/vendor/lolhtml/src/selectors_vm/mod.rs
/Users/username/project/README.md
/Users/username/project/src
/Users/username/project/src/index.ts
/Users/username/project/src/newFile.ts
Last updated on