rsonpath 0.10.0

Blazing fast JSONPath CLI tool powered by SIMD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
# rsonpath &ndash; SIMD-powered JSONPath 🚀 <img src="img/rsonquery-logo.svg" width="50em" align="left" />

[![Rust](https://github.com/V0ldek/rsonpath/actions/workflows/rust.yml/badge.svg)](https://github.com/V0ldek/rsonpath/actions/workflows/rust.yml)
[![docs.rs](https://img.shields.io/docsrs/rsonpath-lib?logo=docs.rs)](https://docs.rs/crate/rsonpath-lib/latest)
[![Book](https://img.shields.io/badge/book-available-4DC720?logo=mdbook)](https://v0ldek.github.io/rsonpath/)

[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/7790/badge)](https://www.bestpractices.dev/projects/7790)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/V0ldek/rsonpath/badge)](https://securityscorecards.dev/viewer/?uri=github.com/V0ldek/rsonpath)
[![fuzzing](https://github.com/V0ldek/rsonpath/actions/workflows/clusterfuzzlite-batch.yml/badge.svg)](https://github.com/V0ldek/rsonpath/actions/workflows/clusterfuzzlite-batch.yml)

[![Crates.io](https://img.shields.io/crates/v/rsonpath?logo=docs.rs)](https://crates.io/crates/rsonpath)
[![GitHub Release Date](https://img.shields.io/github/release-date/v0ldek/rsonpath?logo=github)](https://github.com/V0ldek/rsonpath/releases)
[![GitHub last commit](https://img.shields.io/github/last-commit/v0ldek/rsonpath?logo=github)](https://github.com/V0ldek/rsonpath/commits/main)

![MSRV](https://img.shields.io/badge/msrv-v1.67.1-orange?logo=rust "Minimum Supported Rust Version for `rsonpath-lib`")
[![License](https://img.shields.io/crates/l/rsonpath)](https://choosealicense.com/licenses/mit/)

Experimental JSONPath engine for querying massive streamed datasets.

The `rsonpath` crate provides a JSONPath parser and a query execution engine `rq`,
which utilizes SIMD instructions to provide massive throughput improvements over conventional engines.

Benchmarks of `rsonpath` against a reference no-SIMD engine on the
[Pison dataset](https://github.com/AutomataLab/Pison). **NOTE: Scale is logarithmic!**
![Main throughput plot](/img/main-plot.svg)

## Usage

To run a JSONPath query on a file execute:

```console,ignore
rq '$..a.b' ./file.json
```

If the file is omitted, the engine reads standard input. JSON can also be passed inline:

```console
$ rq '$..a.b' --json '{"c":{"a":{"b":42}}}'
42

```

For details, consult `rq --help` or [the rsonbook](https://rsonquery.github.io/rsonpath/).

### Results

The result of running a query is a sequence of matched values, delimited by newlines.
Alternatively, passing `--result count` returns only the number of matches, which might be much faster.
For other result modes consult the `--help` usage page.

## Installation

See [Releases](https://github.com/V0ldek/rsonpath/releases/latest) for precompiled binaries for
all first-class support targets.

### `cargo`

Easiest way to install is via [`cargo`](https://doc.rust-lang.org/cargo/getting-started/installation.html).

```console,ignore
$ cargo install rsonpath
...
```

### Native CPU optimizations

If maximum speed is paramount, you should install `rsonpath` with native CPU instructions support.
This will result in a binary that is _not_ portable and might work incorrectly on any other machine,
but will squeeze out every last bit of throughput.

To do this, run the following `cargo install` variant:

```console,ignore
$ RUSTFLAGS="-C target-cpu=native" cargo install rsonpath
...
```

Check out [the relevant chapter in the rsonbook](https://rsonquery.github.io/rsonpath/user/installation/manual.html).

## Query language

The project is actively developed and currently supports only a subset of the JSONPath query language.
A query is a sequence of segments, each containing one or more selectors.

### Supported segments

| Segment                        | Syntax                           | Supported | Since  | Tracking Issue |
|--------------------------------|----------------------------------|-----------|--------|---------------:|
| Child segment (single)         | `[<selector>]`                   | ✔️        | v0.1.0 |                |
| Child segment (multiple)       | `[<selector1>,...,<selectorN>]`  ||        |                |
| Descendant segment (single)    | `..[<selector>]`                 | ✔️        | v0.1.0 |                |
| Descendant segment (multiple)  | `..[<selector1>,...,<selectorN>]`||        |                |

### Supported selectors

| Selector                                 | Syntax                           | Supported | Since  | Tracking Issue |
|------------------------------------------|----------------------------------|-----------|--------|---------------:|
| Root                                     | `$`                              | ✔️        | v0.1.0 |                |
| Name                                     | `.<member>`, `[<member>]`        | ✔️        | v0.1.0 |                |
| Wildcard                                 | `.*`, `..*`, `[*]`               | ✔️        | v0.4.0 |                |
| Index (array index)                      | `[<index>]`                      | ✔️        | v0.5.0 |                |
| Index (array index from end)             | `[-<index>]`                     ||        |                |
| Array slice (forward, positive bounds)   | `[<start>:<end>:<step>]`         | ✔️        | v0.9.0       | [#152]https://github.com/V0ldek/rsonpath/issues/152 |
| Array slice (forward, arbitrary bounds)  | `[<start>:<end>:<step>]`         ||        |                |
| Array slice (backward, arbitrary bounds) | `[<start>:<end>:-<step>]`        ||        |                |
| Filters &ndash; existential tests        | `[?<path>]`                      ||        | [#154]https://github.com/V0ldek/rsonpath/issues/154 |
| Filters &ndash; const atom comparisons   | `[?<path> <binop> <atom>]`       ||        | [#156]https://github.com/V0ldek/rsonpath/issues/156 |
| Filters &ndash; logical expressions      | `&&`, `\|\|`, `!`                ||        |                |
| Filters &ndash; nesting                  | `[?<expr>[?<expr>]...]`          ||        |                |
| Filters &ndash; arbitrary comparisons    | `[?<path> <binop> <path>]`       ||        |                |
| Filters &ndash; function extensions      | `[?func(<path>)]`                ||        |                |

## Supported platforms

The crate is continuously built and tested for all Tier 1 Rust targets.
Pre-built binaries are also available for some Tier 2 targets, but without testing.
Currently, these are MUSL targets -- if you require other binaries create an issue.
SIMD is available on x86 and ARM (64-bit) platforms.

| Target triple             | nosimd build | SIMD support        | Continuous testing | Tracking issues |
|:--------------------------|:-------------|:--------------------|:-------------------|----------------:|
| aarch64-apple-darwin      | ✔️          | ✔️                  | ✔️                | |
| aarch64-pc-windows-msvc   | ✔️          | ✔️                  | ✔️                | |
| aarch64-unknown-linux-gnu | ✔️          | ✔️                  | ✔️                | |
| i686-pc-windows-msvc      | ✔️          | ✔️                  | ✔️                | |
| i686-unknown-linux-gnu    | ✔️          | ✔️                  | ✔️                | |
| x86_64-pc-windows-gnu     | ✔️          | ✔️                  | ✔️                | |
| x86_64-pc-windows-msvc    | ✔️          | ✔️                  | ✔️                | |
| x86_64-unknown-linux-gnu  | ✔️          | ✔️                  | ✔️                | |
| aarch64-unknown-linux-musl| ✔️          | ✔️                  || |
| i686-unknown-linux-musl   | ✔️          | ✔️                  || |
| x86_64-unknown-linux-musl | ✔️          | ✔️                  || |

### SIMD support

SIMD support is enabled on a module-by-module basis. Generally, any CPU released in the past
decade supports AVX2, which enables all available optimizations. On ARM, we support NEON.

Older CPUs with SSE2 or higher get partial support. You can check what exactly is enabled
with `rq --version` &ndash; check the `SIMD support` field:

```console,ignore
$ rq --version
rq 0.9.1

Commit SHA:      c024e1bab89610455537b77aed249d2a05a81ed6
Features:        default,simd
Opt level:       3
Target triple:   x86_64-unknown-linux-gnu
Codegen flags:   link-arg=-fuse-ld=lld
SIMD support:    avx2;fast_quotes;fast_popcnt
```

The `fast_quotes` capability depends on the `pclmulqdq` instruction (on x86) or the `aes` feature (ARM),
and `fast_popcnt` on the `popcnt` instruction (always available on ARM).

## Caveats and limitations

### JSONPath

Not all selectors are supported, see the support table above.

### Duplicate keys

The engine assumes that every object in the input JSON has no duplicate keys.
Behavior on duplicate keys is not guaranteed to be stable, but currently
the engine will simply match the _first_ such key.

```console
$ rq '$.key' --json '{"key":"value","key":"other value"}'
"value"

```

### Unicode

The engine does _not_ parse unicode escape sequences in member names.
This means that a key `"a"` is different from a key `"\u0041"`, even though semantically they represent the same string.
This is actually as-designed with respect to the current JSONPath spec.
Parsing unicode sequences is costly, so the support for this was postponed
in favour of high performance. This is tracked as [#117](https://github.com/v0ldek/rsonpath/issues/117).

## Contributing

The gist is: fork, implement, make a PR back here. More details are in the [CONTRIBUTING](/CONTRIBUTING.md) doc.

### Build & test

The dev workflow utilizes [`just`](https://github.com/casey/just).
Use the included `Justfile`. It will automatically install Rust for you using the `rustup` tool if it detects there is no Cargo in your environment.

```console,ignore
$ just build
...
$ just test
...
```

## Benchmarks

Benchmarks for `rsonpath` are located in the benchmark crate of this repository. 
Easiest way to run all the benchmarks is `just bench` within the directory `crates/rsonpath-benchmarks` . For details, look at the README in this directory.

## Background

We have a paper on `rsonpath` to be published at [ASPLOS '24](https://www.asplos-conference.org/asplos2024/)! You can read it
[here](/pdf/supporting-descendants-in-simd-accelerated-jsonpath.pdf).

This project was conceived as [my thesis](/pdf/fast-execution-of-jsonpath-queries.pdf). You can read it for details on the theoretical
background on the engine and details of its implementation.

We also have a short talk from ASPLOS 2024 about rsonpath!

https://gienieczko.com/asplos-2024-talk.mp4

(excuse the audio quality, the sound in the source video was corrupted and we had to salvage)

## Dependencies

Showing direct dependencies, for full graph see below.

```bash
cargo tree --package rsonpath --edges normal --depth 1
```

<!-- rsonpath dependencies start -->
```ini
rsonpath v0.10.0 (/home/mat/src/rsonpath/crates/rsonpath)
├── clap v4.5.58
├── color-eyre v0.6.5
├── eyre v0.6.12
├── log v0.4.29
├── rsonpath-lib v0.10.0 (/home/mat/src/rsonpath/crates/rsonpath-lib)
├── rsonpath-syntax v0.4.0 (/home/mat/src/rsonpath/crates/rsonpath-syntax)
└── simple_logger v5.1.0
[build-dependencies]
├── rustflags v0.1.7
├── vergen v9.1.0
│   [build-dependencies]
└── vergen-git2 v9.1.0
    [build-dependencies]
```
<!-- rsonpath dependencies end -->

```bash
cargo tree --package rsonpath-lib --edges normal --depth 1
```

<!-- rsonpath-lib dependencies start -->
```ini
rsonpath-lib v0.10.0 (/home/mat/src/rsonpath/crates/rsonpath-lib)
├── cfg-if v1.0.4
├── log v0.4.29
├── memmap2 v0.9.10
├── rsonpath-syntax v0.4.0 (/home/mat/src/rsonpath/crates/rsonpath-syntax)
├── serde v1.0.228
├── smallvec v1.15.1
├── static_assertions v1.1.0
├── thiserror v2.0.18
└── vector-map v1.0.2
```
<!-- rsonpath-lib dependencies end -->

### Justification

- `clap` &ndash; standard crate to provide the CLI.
- `color-eyre`, `eyre` &ndash; more accessible error messages for the parser.
- `log`, `simple-logger` &ndash; diagnostic logs during compilation and execution.
- `cfg-if` &ndash; used to support SIMD and no-SIMD versions.
- `memmap2` &ndash; for fast reading of source files via a memory map instead of buffered copies.
- `nom` &ndash; for parser implementation.
- `smallvec` &ndash; crucial for small-stack performance.
- `static_assertions` &ndash; additional reliability by some constant assumptions validated at compile time.
- `thiserror` &ndash; idiomatic `Error` implementations.
- `vector_map` &ndash; used in the query compiler for measurably better performance.

## Full dependency tree

```bash
cargo tree --package rsonpath --edges normal
```

<!-- rsonpath-full dependencies start -->
```ini
rsonpath v0.10.0 (/home/mat/src/rsonpath/crates/rsonpath)
├── clap v4.5.58
│   ├── clap_builder v4.5.58
│   │   ├── anstream v0.6.21
│   │   │   ├── anstyle v1.0.13
│   │   │   ├── anstyle-parse v0.2.7
│   │   │   │   └── utf8parse v0.2.2
│   │   │   ├── anstyle-query v1.1.5
│   │   │   │   └── windows-sys v0.61.2
│   │   │   │       └── windows-link v0.2.1
│   │   │   ├── anstyle-wincon v3.0.11
│   │   │   │   ├── anstyle v1.0.13
│   │   │   │   ├── once_cell_polyfill v1.70.2
│   │   │   │   └── windows-sys v0.61.2 (*)
│   │   │   ├── colorchoice v1.0.4
│   │   │   ├── is_terminal_polyfill v1.70.2
│   │   │   └── utf8parse v0.2.2
│   │   ├── anstyle v1.0.13
│   │   ├── clap_lex v1.0.0
│   │   ├── strsim v0.11.1
│   │   └── terminal_size v0.4.3
│   │       ├── rustix v1.1.3
│   │       │   ├── bitflags v2.11.0
│   │       │   ├── errno v0.3.14
│   │       │   │   ├── libc v0.2.182
│   │       │   │   └── windows-sys v0.61.2 (*)
│   │       │   ├── libc v0.2.182
│   │       │   ├── linux-raw-sys v0.11.0
│   │       │   └── windows-sys v0.61.2 (*)
│   │       └── windows-sys v0.60.2
│   │           └── windows-targets v0.53.5
│   │               ├── windows-link v0.2.1
│   │               ├── windows_aarch64_gnullvm v0.53.1
│   │               ├── windows_aarch64_msvc v0.53.1
│   │               ├── windows_i686_gnu v0.53.1
│   │               ├── windows_i686_gnullvm v0.53.1
│   │               ├── windows_i686_msvc v0.53.1
│   │               ├── windows_x86_64_gnu v0.53.1
│   │               ├── windows_x86_64_gnullvm v0.53.1
│   │               └── windows_x86_64_msvc v0.53.1
│   └── clap_derive v4.5.55 (proc-macro)
│       ├── heck v0.5.0
│       ├── proc-macro2 v1.0.106
│       │   └── unicode-ident v1.0.23
│       ├── quote v1.0.44
│       │   └── proc-macro2 v1.0.106 (*)
│       └── syn v2.0.116
│           ├── proc-macro2 v1.0.106 (*)
│           ├── quote v1.0.44 (*)
│           └── unicode-ident v1.0.23
├── color-eyre v0.6.5
│   ├── backtrace v0.3.76
│   │   ├── addr2line v0.25.1
│   │   │   └── gimli v0.32.3
│   │   ├── cfg-if v1.0.4
│   │   ├── libc v0.2.182
│   │   ├── miniz_oxide v0.8.9
│   │   │   └── adler2 v2.0.1
│   │   ├── object v0.37.3
│   │   │   └── memchr v2.8.0
│   │   ├── rustc-demangle v0.1.27
│   │   └── windows-link v0.2.1
│   ├── eyre v0.6.12
│   │   ├── indenter v0.3.4
│   │   └── once_cell v1.21.3
│   ├── indenter v0.3.4
│   ├── once_cell v1.21.3
│   └── owo-colors v4.2.3
├── eyre v0.6.12 (*)
├── log v0.4.29
├── rsonpath-lib v0.10.0 (/home/mat/src/rsonpath/crates/rsonpath-lib)
│   ├── cfg-if v1.0.4
│   ├── log v0.4.29
│   ├── memmap2 v0.9.10
│   │   └── libc v0.2.182
│   ├── rsonpath-syntax v0.4.0 (/home/mat/src/rsonpath/crates/rsonpath-syntax)
│   │   ├── nom v8.0.0
│   │   │   └── memchr v2.8.0
│   │   ├── owo-colors v4.2.3
│   │   ├── thiserror v2.0.18
│   │   │   └── thiserror-impl v2.0.18 (proc-macro)
│   │   │       ├── proc-macro2 v1.0.106 (*)
│   │   │       ├── quote v1.0.44 (*)
│   │   │       └── syn v2.0.116 (*)
│   │   └── unicode-width v0.2.2
│   ├── smallvec v1.15.1
│   ├── static_assertions v1.1.0
│   ├── thiserror v2.0.18 (*)
│   └── vector-map v1.0.2
├── rsonpath-syntax v0.4.0 (/home/mat/src/rsonpath/crates/rsonpath-syntax) (*)
└── simple_logger v5.1.0
    ├── colored v3.1.1
    │   └── windows-sys v0.61.2 (*)
    ├── log v0.4.29
    ├── time v0.3.47
    │   ├── deranged v0.5.6
    │   │   └── powerfmt v0.2.0
    │   ├── itoa v1.0.17
    │   ├── libc v0.2.182
    │   ├── num-conv v0.2.0
    │   ├── num_threads v0.1.7
    │   │   └── libc v0.2.182
    │   ├── powerfmt v0.2.0
    │   ├── time-core v0.1.8
    │   └── time-macros v0.2.27 (proc-macro)
    │       ├── num-conv v0.2.0
    │       └── time-core v0.1.8
    └── windows-sys v0.61.2 (*)
[build-dependencies]
├── rustflags v0.1.7
├── vergen v9.1.0
│   ├── anyhow v1.0.101
│   ├── cargo_metadata v0.23.1
│   │   ├── camino v1.2.2
│   │   │   └── serde_core v1.0.228
│   │   │       └── serde_derive v1.0.228 (proc-macro)
│   │   │           ├── proc-macro2 v1.0.106 (*)
│   │   │           ├── quote v1.0.44 (*)
│   │   │           └── syn v2.0.116 (*)
│   │   ├── cargo-platform v0.3.2
│   │   │   ├── serde v1.0.228
│   │   │   │   ├── serde_core v1.0.228 (*)
│   │   │   │   └── serde_derive v1.0.228 (proc-macro) (*)
│   │   │   └── serde_core v1.0.228 (*)
│   │   ├── semver v1.0.27
│   │   │   ├── serde v1.0.228 (*)
│   │   │   └── serde_core v1.0.228 (*)
│   │   ├── serde v1.0.228 (*)
│   │   ├── serde_json v1.0.149
│   │   │   ├── itoa v1.0.17
│   │   │   ├── memchr v2.8.0
│   │   │   ├── serde v1.0.228 (*)
│   │   │   ├── serde_core v1.0.228 (*)
│   │   │   └── zmij v1.0.21
│   │   └── thiserror v2.0.18 (*)
│   ├── derive_builder v0.20.2
│   │   └── derive_builder_macro v0.20.2 (proc-macro)
│   │       ├── derive_builder_core v0.20.2
│   │       │   ├── darling v0.20.11
│   │       │   │   ├── darling_core v0.20.11
│   │       │   │   │   ├── fnv v1.0.7
│   │       │   │   │   ├── ident_case v1.0.1
│   │       │   │   │   ├── proc-macro2 v1.0.106 (*)
│   │       │   │   │   ├── quote v1.0.44 (*)
│   │       │   │   │   ├── strsim v0.11.1
│   │       │   │   │   └── syn v2.0.116 (*)
│   │       │   │   └── darling_macro v0.20.11 (proc-macro)
│   │       │   │       ├── darling_core v0.20.11 (*)
│   │       │   │       ├── quote v1.0.44 (*)
│   │       │   │       └── syn v2.0.116 (*)
│   │       │   ├── proc-macro2 v1.0.106 (*)
│   │       │   ├── quote v1.0.44 (*)
│   │       │   └── syn v2.0.116 (*)
│   │       └── syn v2.0.116 (*)
│   ├── regex v1.12.3
│   │   ├── aho-corasick v1.1.4
│   │   │   └── memchr v2.8.0
│   │   ├── memchr v2.8.0
│   │   ├── regex-automata v0.4.14
│   │   │   ├── aho-corasick v1.1.4 (*)
│   │   │   ├── memchr v2.8.0
│   │   │   └── regex-syntax v0.8.9
│   │   └── regex-syntax v0.8.9
│   ├── rustc_version v0.4.1
│   │   └── semver v1.0.27 (*)
│   └── vergen-lib v9.1.0
│       ├── anyhow v1.0.101
│       └── derive_builder v0.20.2 (*)
│       [build-dependencies]
│       └── rustversion v1.0.22 (proc-macro)
│   [build-dependencies]
│   └── rustversion v1.0.22 (proc-macro)
└── vergen-git2 v9.1.0
    ├── anyhow v1.0.101
    ├── derive_builder v0.20.2 (*)
    ├── git2 v0.20.4
    │   ├── bitflags v2.11.0
    │   ├── libc v0.2.182
    │   ├── libgit2-sys v0.18.3+1.9.2
    │   │   ├── libc v0.2.182
    │   │   └── libz-sys v1.1.23
    │   │       └── libc v0.2.182
    │   │       [build-dependencies]
    │   │       ├── cc v1.2.56
    │   │       │   ├── find-msvc-tools v0.1.9
    │   │       │   ├── jobserver v0.1.34
    │   │       │   │   ├── getrandom v0.3.4
    │   │       │   │   │   ├── cfg-if v1.0.4
    │   │       │   │   │   ├── libc v0.2.182
    │   │       │   │   │   ├── r-efi v5.3.0
    │   │       │   │   │   └── wasip2 v1.0.2+wasi-0.2.9
    │   │       │   │   │       └── wit-bindgen v0.51.0
    │   │       │   │   └── libc v0.2.182
    │   │       │   ├── libc v0.2.182
    │   │       │   └── shlex v1.3.0
    │   │       ├── pkg-config v0.3.32
    │   │       └── vcpkg v0.2.15
    │   │   [build-dependencies]
    │   │   ├── cc v1.2.56 (*)
    │   │   └── pkg-config v0.3.32
    │   ├── log v0.4.29
    │   └── url v2.5.8
    │       ├── form_urlencoded v1.2.2
    │       │   └── percent-encoding v2.3.2
    │       ├── idna v1.1.0
    │       │   ├── idna_adapter v1.2.1
    │       │   │   ├── icu_normalizer v2.1.1
    │       │   │   │   ├── icu_collections v2.1.1
    │       │   │   │   │   ├── displaydoc v0.2.5 (proc-macro)
    │       │   │   │   │   │   ├── proc-macro2 v1.0.106 (*)
    │       │   │   │   │   │   ├── quote v1.0.44 (*)
    │       │   │   │   │   │   └── syn v2.0.116 (*)
    │       │   │   │   │   ├── potential_utf v0.1.4
    │       │   │   │   │   │   └── zerovec v0.11.5
    │       │   │   │   │   │       ├── yoke v0.8.1
    │       │   │   │   │   │       │   ├── stable_deref_trait v1.2.1
    │       │   │   │   │   │       │   ├── yoke-derive v0.8.1 (proc-macro)
    │       │   │   │   │   │       │   │   ├── proc-macro2 v1.0.106 (*)
    │       │   │   │   │   │       │   │   ├── quote v1.0.44 (*)
    │       │   │   │   │   │       │   │   ├── syn v2.0.116 (*)
    │       │   │   │   │   │       │   │   └── synstructure v0.13.2
    │       │   │   │   │   │       │   │       ├── proc-macro2 v1.0.106 (*)
    │       │   │   │   │   │       │   │       ├── quote v1.0.44 (*)
    │       │   │   │   │   │       │   │       └── syn v2.0.116 (*)
    │       │   │   │   │   │       │   └── zerofrom v0.1.6
    │       │   │   │   │   │       │       └── zerofrom-derive v0.1.6 (proc-macro)
    │       │   │   │   │   │       │           ├── proc-macro2 v1.0.106 (*)
    │       │   │   │   │   │       │           ├── quote v1.0.44 (*)
    │       │   │   │   │   │       │           ├── syn v2.0.116 (*)
    │       │   │   │   │   │       │           └── synstructure v0.13.2 (*)
    │       │   │   │   │   │       ├── zerofrom v0.1.6 (*)
    │       │   │   │   │   │       └── zerovec-derive v0.11.2 (proc-macro)
    │       │   │   │   │   │           ├── proc-macro2 v1.0.106 (*)
    │       │   │   │   │   │           ├── quote v1.0.44 (*)
    │       │   │   │   │   │           └── syn v2.0.116 (*)
    │       │   │   │   │   ├── yoke v0.8.1 (*)
    │       │   │   │   │   ├── zerofrom v0.1.6 (*)
    │       │   │   │   │   └── zerovec v0.11.5 (*)
    │       │   │   │   ├── icu_normalizer_data v2.1.1
    │       │   │   │   ├── icu_provider v2.1.1
    │       │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │       │   │   │   │   ├── icu_locale_core v2.1.1
    │       │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │       │   │   │   │   │   ├── litemap v0.8.1
    │       │   │   │   │   │   ├── tinystr v0.8.2
    │       │   │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │       │   │   │   │   │   │   └── zerovec v0.11.5 (*)
    │       │   │   │   │   │   ├── writeable v0.6.2
    │       │   │   │   │   │   └── zerovec v0.11.5 (*)
    │       │   │   │   │   ├── writeable v0.6.2
    │       │   │   │   │   ├── yoke v0.8.1 (*)
    │       │   │   │   │   ├── zerofrom v0.1.6 (*)
    │       │   │   │   │   ├── zerotrie v0.2.3
    │       │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │       │   │   │   │   │   ├── yoke v0.8.1 (*)
    │       │   │   │   │   │   └── zerofrom v0.1.6 (*)
    │       │   │   │   │   └── zerovec v0.11.5 (*)
    │       │   │   │   ├── smallvec v1.15.1
    │       │   │   │   └── zerovec v0.11.5 (*)
    │       │   │   └── icu_properties v2.1.2
    │       │   │       ├── icu_collections v2.1.1 (*)
    │       │   │       ├── icu_locale_core v2.1.1 (*)
    │       │   │       ├── icu_properties_data v2.1.2
    │       │   │       ├── icu_provider v2.1.1 (*)
    │       │   │       ├── zerotrie v0.2.3 (*)
    │       │   │       └── zerovec v0.11.5 (*)
    │       │   ├── smallvec v1.15.1
    │       │   └── utf8_iter v1.0.4
    │       └── percent-encoding v2.3.2
    ├── time v0.3.47
    │   ├── deranged v0.5.6 (*)
    │   ├── itoa v1.0.17
    │   ├── libc v0.2.182
    │   ├── num-conv v0.2.0
    │   ├── num_threads v0.1.7 (*)
    │   ├── powerfmt v0.2.0
    │   └── time-core v0.1.8
    ├── vergen v9.1.0 (*)
    └── vergen-lib v9.1.0 (*)
    [build-dependencies]
    └── rustversion v1.0.22 (proc-macro)
```
<!-- rsonpath-full dependencies end -->