async-nats 0.44.2

A async Rust NATS client
Documentation
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
async-nats v0.44.1 (/Users/tomaszpietrek/coding/nats.rs/async-nats)
├── base64 v0.22.1
├── bytes v1.10.1
│   └── serde v1.0.228
│       ├── serde_core v1.0.228
│       └── serde_derive v1.0.228 (proc-macro)
│           ├── proc-macro2 v1.0.101
│           │   └── unicode-ident v1.0.19
│           ├── quote v1.0.41
│           │   └── proc-macro2 v1.0.101 (*)
│           └── syn v2.0.106
│               ├── proc-macro2 v1.0.101 (*)
│               ├── quote v1.0.41 (*)
│               └── unicode-ident v1.0.19
├── futures-util v0.3.31
│   ├── futures-channel v0.3.31
│   │   ├── futures-core v0.3.31
│   │   └── futures-sink v0.3.31
│   ├── futures-core v0.3.31
│   ├── futures-io v0.3.31
│   ├── futures-macro v0.3.31 (proc-macro)
│   │   ├── proc-macro2 v1.0.101 (*)
│   │   ├── quote v1.0.41 (*)
│   │   └── syn v2.0.106 (*)
│   ├── futures-sink v0.3.31
│   ├── futures-task v0.3.31
│   ├── memchr v2.7.6
│   ├── pin-project-lite v0.2.16
│   ├── pin-utils v0.1.0
│   └── slab v0.4.11
├── memchr v2.7.6
├── nkeys v0.4.5
│   ├── data-encoding v2.9.0
│   ├── ed25519 v2.2.3
│   │   └── signature v2.2.0
│   │       └── digest v0.10.7
│   │           ├── block-buffer v0.10.4
│   │           │   └── generic-array v0.14.7
│   │           │       └── typenum v1.19.0
│   │           │       [build-dependencies]
│   │           │       └── version_check v0.9.5
│   │           └── crypto-common v0.1.6
│   │               ├── generic-array v0.14.7 (*)
│   │               └── typenum v1.19.0
│   ├── ed25519-dalek v2.2.0
│   │   ├── curve25519-dalek v4.1.3
│   │   │   ├── cfg-if v1.0.3
│   │   │   ├── digest v0.10.7 (*)
│   │   │   └── subtle v2.6.1
│   │   │   [build-dependencies]
│   │   │   └── rustc_version v0.4.1
│   │   │       └── semver v1.0.27
│   │   ├── ed25519 v2.2.3 (*)
│   │   ├── sha2 v0.10.9
│   │   │   ├── cfg-if v1.0.3
│   │   │   ├── cpufeatures v0.2.17
│   │   │   │   └── libc v0.2.176
│   │   │   └── digest v0.10.7 (*)
│   │   ├── signature v2.2.0 (*)
│   │   └── subtle v2.6.1
│   ├── log v0.4.28
│   ├── rand v0.8.5
│   │   ├── libc v0.2.176
│   │   ├── rand_chacha v0.3.1
│   │   │   ├── ppv-lite86 v0.2.21
│   │   │   │   └── zerocopy v0.8.27
│   │   │   └── rand_core v0.6.4
│   │   │       └── getrandom v0.2.16
│   │   │           ├── cfg-if v1.0.3
│   │   │           └── libc v0.2.176
│   │   └── rand_core v0.6.4 (*)
│   └── signatory v0.27.1
│       ├── pkcs8 v0.10.2
│       │   ├── der v0.7.10
│       │   │   ├── const-oid v0.9.6
│       │   │   ├── pem-rfc7468 v0.7.0
│       │   │   │   └── base64ct v1.8.0
│       │   │   └── zeroize v1.8.2
│       │   └── spki v0.7.3
│       │       └── der v0.7.10 (*)
│       ├── rand_core v0.6.4 (*)
│       ├── signature v2.2.0 (*)
│       └── zeroize v1.8.2
├── nuid v0.5.0
│   └── rand v0.8.5 (*)
├── once_cell v1.21.3
├── pin-project v1.1.10
│   └── pin-project-internal v1.1.10 (proc-macro)
│       ├── proc-macro2 v1.0.101 (*)
│       ├── quote v1.0.41 (*)
│       └── syn v2.0.106 (*)
├── portable-atomic v1.11.1
├── rand v0.9.2
│   ├── rand_chacha v0.9.0
│   │   ├── ppv-lite86 v0.2.21 (*)
│   │   └── rand_core v0.9.3
│   │       └── getrandom v0.3.3
│   │           ├── cfg-if v1.0.3
│   │           └── libc v0.2.176
│   └── rand_core v0.9.3 (*)
├── regex v1.11.3
│   ├── aho-corasick v1.1.3
│   │   └── memchr v2.7.6
│   ├── memchr v2.7.6
│   ├── regex-automata v0.4.11
│   │   ├── aho-corasick v1.1.3 (*)
│   │   ├── memchr v2.7.6
│   │   └── regex-syntax v0.8.6
│   └── regex-syntax v0.8.6
├── ring v0.17.14
│   ├── cfg-if v1.0.3
│   ├── getrandom v0.2.16 (*)
│   ├── libc v0.2.176
│   └── untrusted v0.9.0
│   [build-dependencies]
│   └── cc v1.2.40
│       ├── find-msvc-tools v0.1.3
│       └── shlex v1.3.0
├── rustls-native-certs v0.7.3
│   ├── rustls-pemfile v2.2.0
│   │   └── rustls-pki-types v1.12.0
│   │       └── zeroize v1.8.2
│   ├── rustls-pki-types v1.12.0 (*)
│   └── security-framework v2.11.1
│       ├── bitflags v2.9.4
│       ├── core-foundation v0.9.4
│       │   ├── core-foundation-sys v0.8.7
│       │   └── libc v0.2.176
│       ├── core-foundation-sys v0.8.7
│       ├── libc v0.2.176
│       └── security-framework-sys v2.15.0
│           ├── core-foundation-sys v0.8.7
│           └── libc v0.2.176
├── rustls-pemfile v2.2.0 (*)
├── rustls-webpki v0.102.8
│   ├── rustls-pki-types v1.12.0 (*)
│   └── untrusted v0.9.0
├── serde v1.0.228 (*)
├── serde_json v1.0.145
│   ├── itoa v1.0.15
│   ├── memchr v2.7.6
│   ├── ryu v1.0.20
│   └── serde_core v1.0.228
├── serde_nanos v0.1.4
│   └── serde v1.0.228 (*)
├── serde_repr v0.1.20 (proc-macro)
│   ├── proc-macro2 v1.0.101 (*)
│   ├── quote v1.0.41 (*)
│   └── syn v2.0.106 (*)
├── thiserror v2.0.17
│   └── thiserror-impl v2.0.17 (proc-macro)
│       ├── proc-macro2 v1.0.101 (*)
│       ├── quote v1.0.41 (*)
│       └── syn v2.0.106 (*)
├── time v0.3.44
│   ├── deranged v0.5.4
│   │   ├── powerfmt v0.2.0
│   │   └── serde_core v1.0.228
│   ├── itoa v1.0.15
│   ├── num-conv v0.1.0
│   ├── powerfmt v0.2.0
│   ├── serde v1.0.228 (*)
│   ├── time-core v0.1.6
│   └── time-macros v0.2.24 (proc-macro)
│       ├── num-conv v0.1.0
│       └── time-core v0.1.6
├── tokio v1.47.1
│   ├── bytes v1.10.1 (*)
│   ├── libc v0.2.176
│   ├── mio v1.0.4
│   │   └── libc v0.2.176
│   ├── pin-project-lite v0.2.16
│   ├── socket2 v0.6.0
│   │   └── libc v0.2.176
│   └── tokio-macros v2.5.0 (proc-macro)
│       ├── proc-macro2 v1.0.101 (*)
│       ├── quote v1.0.41 (*)
│       └── syn v2.0.106 (*)
├── tokio-rustls v0.26.4
│   ├── rustls v0.23.32
│   │   ├── once_cell v1.21.3
│   │   ├── ring v0.17.14 (*)
│   │   ├── rustls-pki-types v1.12.0 (*)
│   │   ├── rustls-webpki v0.103.7
│   │   │   ├── ring v0.17.14 (*)
│   │   │   ├── rustls-pki-types v1.12.0 (*)
│   │   │   └── untrusted v0.9.0
│   │   ├── subtle v2.6.1
│   │   └── zeroize v1.8.2
│   └── tokio v1.47.1 (*)
├── tokio-stream v0.1.17
│   ├── futures-core v0.3.31
│   ├── pin-project-lite v0.2.16
│   └── tokio v1.47.1 (*)
├── tokio-util v0.7.16
│   ├── bytes v1.10.1 (*)
│   ├── futures-core v0.3.31
│   ├── futures-sink v0.3.31
│   ├── pin-project-lite v0.2.16
│   └── tokio v1.47.1 (*)
├── tracing v0.1.41
│   ├── pin-project-lite v0.2.16
│   ├── tracing-attributes v0.1.30 (proc-macro)
│   │   ├── proc-macro2 v1.0.101 (*)
│   │   ├── quote v1.0.41 (*)
│   │   └── syn v2.0.106 (*)
│   └── tracing-core v0.1.34
│       └── once_cell v1.21.3
├── tryhard v0.5.2
│   ├── pin-project-lite v0.2.16
│   └── tokio v1.47.1 (*)
└── url v2.5.7
    ├── form_urlencoded v1.2.2
    │   └── percent-encoding v2.3.2
    ├── idna v1.1.0
    │   ├── idna_adapter v1.2.1
    │   │   ├── icu_normalizer v2.0.0
    │   │   │   ├── displaydoc v0.2.5 (proc-macro)
    │   │   │   │   ├── proc-macro2 v1.0.101 (*)
    │   │   │   │   ├── quote v1.0.41 (*)
    │   │   │   │   └── syn v2.0.106 (*)
    │   │   │   ├── icu_collections v2.0.0
    │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │   │   │   │   ├── potential_utf v0.1.3
    │   │   │   │   │   └── zerovec v0.11.4
    │   │   │   │   │       ├── yoke v0.8.0
    │   │   │   │   │       │   ├── stable_deref_trait v1.2.0
    │   │   │   │   │       │   ├── yoke-derive v0.8.0 (proc-macro)
    │   │   │   │   │       │   │   ├── proc-macro2 v1.0.101 (*)
    │   │   │   │   │       │   │   ├── quote v1.0.41 (*)
    │   │   │   │   │       │   │   ├── syn v2.0.106 (*)
    │   │   │   │   │       │   │   └── synstructure v0.13.2
    │   │   │   │   │       │   │       ├── proc-macro2 v1.0.101 (*)
    │   │   │   │   │       │   │       ├── quote v1.0.41 (*)
    │   │   │   │   │       │   │       └── syn v2.0.106 (*)
    │   │   │   │   │       │   └── zerofrom v0.1.6
    │   │   │   │   │       │       └── zerofrom-derive v0.1.6 (proc-macro)
    │   │   │   │   │       │           ├── proc-macro2 v1.0.101 (*)
    │   │   │   │   │       │           ├── quote v1.0.41 (*)
    │   │   │   │   │       │           ├── syn v2.0.106 (*)
    │   │   │   │   │       │           └── synstructure v0.13.2 (*)
    │   │   │   │   │       ├── zerofrom v0.1.6 (*)
    │   │   │   │   │       └── zerovec-derive v0.11.1 (proc-macro)
    │   │   │   │   │           ├── proc-macro2 v1.0.101 (*)
    │   │   │   │   │           ├── quote v1.0.41 (*)
    │   │   │   │   │           └── syn v2.0.106 (*)
    │   │   │   │   ├── yoke v0.8.0 (*)
    │   │   │   │   ├── zerofrom v0.1.6 (*)
    │   │   │   │   └── zerovec v0.11.4 (*)
    │   │   │   ├── icu_normalizer_data v2.0.0
    │   │   │   ├── icu_provider v2.0.0
    │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │   │   │   │   ├── icu_locale_core v2.0.0
    │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │   │   │   │   │   ├── litemap v0.8.0
    │   │   │   │   │   ├── tinystr v0.8.1
    │   │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │   │   │   │   │   │   └── zerovec v0.11.4 (*)
    │   │   │   │   │   ├── writeable v0.6.1
    │   │   │   │   │   └── zerovec v0.11.4 (*)
    │   │   │   │   ├── stable_deref_trait v1.2.0
    │   │   │   │   ├── tinystr v0.8.1 (*)
    │   │   │   │   ├── writeable v0.6.1
    │   │   │   │   ├── yoke v0.8.0 (*)
    │   │   │   │   ├── zerofrom v0.1.6 (*)
    │   │   │   │   ├── zerotrie v0.2.2
    │   │   │   │   │   ├── displaydoc v0.2.5 (proc-macro) (*)
    │   │   │   │   │   ├── yoke v0.8.0 (*)
    │   │   │   │   │   └── zerofrom v0.1.6 (*)
    │   │   │   │   └── zerovec v0.11.4 (*)
    │   │   │   ├── smallvec v1.15.1
    │   │   │   └── zerovec v0.11.4 (*)
    │   │   └── icu_properties v2.0.1
    │   │       ├── displaydoc v0.2.5 (proc-macro) (*)
    │   │       ├── icu_collections v2.0.0 (*)
    │   │       ├── icu_locale_core v2.0.0 (*)
    │   │       ├── icu_properties_data v2.0.1
    │   │       ├── icu_provider v2.0.0 (*)
    │   │       ├── potential_utf v0.1.3 (*)
    │   │       ├── zerotrie v0.2.2 (*)
    │   │       └── zerovec v0.11.4 (*)
    │   ├── smallvec v1.15.1
    │   └── utf8_iter v1.0.4
    ├── percent-encoding v2.3.2
    └── serde v1.0.228 (*)
[dev-dependencies]
├── async-nats v0.44.1 (/Users/tomaszpietrek/coding/nats.rs/async-nats) (*)
├── criterion v0.5.1
│   ├── anes v0.1.6
│   ├── cast v0.3.0
│   ├── ciborium v0.2.2
│   │   ├── ciborium-io v0.2.2
│   │   ├── ciborium-ll v0.2.2
│   │   │   ├── ciborium-io v0.2.2
│   │   │   └── half v2.6.0
│   │   │       └── cfg-if v1.0.3
│   │   └── serde v1.0.228 (*)
│   ├── clap v4.5.48
│   │   ├── clap_builder v4.5.48
│   │   │   ├── anstream v0.6.21
│   │   │   │   ├── anstyle v1.0.13
│   │   │   │   ├── anstyle-parse v0.2.7
│   │   │   │   │   └── utf8parse v0.2.2
│   │   │   │   ├── anstyle-query v1.1.4
│   │   │   │   ├── colorchoice v1.0.4
│   │   │   │   ├── is_terminal_polyfill v1.70.1
│   │   │   │   └── utf8parse v0.2.2
│   │   │   ├── anstyle v1.0.13
│   │   │   ├── clap_lex v0.7.5
│   │   │   └── strsim v0.11.1
│   │   └── clap_derive v4.5.47 (proc-macro)
│   │       ├── heck v0.5.0
│   │       ├── proc-macro2 v1.0.101 (*)
│   │       ├── quote v1.0.41 (*)
│   │       └── syn v2.0.106 (*)
│   ├── criterion-plot v0.5.0
│   │   ├── cast v0.3.0
│   │   └── itertools v0.10.5
│   │       └── either v1.15.0
│   ├── futures v0.3.31
│   │   ├── futures-channel v0.3.31 (*)
│   │   ├── futures-core v0.3.31
│   │   ├── futures-io v0.3.31
│   │   ├── futures-sink v0.3.31
│   │   ├── futures-task v0.3.31
│   │   └── futures-util v0.3.31 (*)
│   ├── is-terminal v0.4.16
│   │   └── libc v0.2.176
│   ├── itertools v0.10.5 (*)
│   ├── num-traits v0.2.19
│   │   [build-dependencies]
│   │   └── autocfg v1.5.0
│   ├── once_cell v1.21.3
│   ├── oorandom v11.1.5
│   ├── plotters v0.3.7
│   │   ├── num-traits v0.2.19 (*)
│   │   ├── plotters-backend v0.3.7
│   │   └── plotters-svg v0.3.7
│   │       └── plotters-backend v0.3.7
│   ├── rayon v1.11.0
│   │   ├── either v1.15.0
│   │   └── rayon-core v1.13.0
│   │       ├── crossbeam-deque v0.8.6
│   │       │   ├── crossbeam-epoch v0.9.18
│   │       │   │   └── crossbeam-utils v0.8.21
│   │       │   └── crossbeam-utils v0.8.21
│   │       └── crossbeam-utils v0.8.21
│   ├── regex v1.11.3 (*)
│   ├── serde v1.0.228 (*)
│   ├── serde_derive v1.0.228 (proc-macro) (*)
│   ├── serde_json v1.0.145 (*)
│   ├── tinytemplate v1.2.1
│   │   ├── serde v1.0.228 (*)
│   │   └── serde_json v1.0.145 (*)
│   ├── tokio v1.47.1 (*)
│   └── walkdir v2.5.0
│       └── same-file v1.0.6
├── futures v0.3.31 (*)
├── jsonschema v0.17.1
│   ├── ahash v0.8.12
│   │   ├── cfg-if v1.0.3
│   │   ├── getrandom v0.3.3 (*)
│   │   ├── once_cell v1.21.3
│   │   ├── serde v1.0.228 (*)
│   │   └── zerocopy v0.8.27
│   │   [build-dependencies]
│   │   └── version_check v0.9.5
│   ├── anyhow v1.0.100
│   ├── base64 v0.21.7
│   ├── bytecount v0.6.9
│   ├── clap v4.5.48 (*)
│   ├── fancy-regex v0.11.0
│   │   ├── bit-set v0.5.3
│   │   │   └── bit-vec v0.6.3
│   │   └── regex v1.11.3 (*)
│   ├── fraction v0.13.1
│   │   ├── lazy_static v1.5.0
│   │   └── num v0.4.3
│   │       ├── num-bigint v0.4.6
│   │       │   ├── num-integer v0.1.46
│   │       │   │   └── num-traits v0.2.19 (*)
│   │       │   └── num-traits v0.2.19 (*)
│   │       ├── num-complex v0.4.6
│   │       │   └── num-traits v0.2.19 (*)
│   │       ├── num-integer v0.1.46 (*)
│   │       ├── num-iter v0.1.45
│   │       │   ├── num-integer v0.1.46 (*)
│   │       │   └── num-traits v0.2.19 (*)
│   │       │   [build-dependencies]
│   │       │   └── autocfg v1.5.0
│   │       ├── num-rational v0.4.2
│   │       │   ├── num-bigint v0.4.6 (*)
│   │       │   ├── num-integer v0.1.46 (*)
│   │       │   └── num-traits v0.2.19 (*)
│   │       └── num-traits v0.2.19 (*)
│   ├── iso8601 v0.6.3
│   │   └── nom v8.0.0
│   │       └── memchr v2.7.6
│   ├── itoa v1.0.15
│   ├── memchr v2.7.6
│   ├── num-cmp v0.1.0
│   ├── once_cell v1.21.3
│   ├── parking_lot v0.12.5
│   │   ├── lock_api v0.4.14
│   │   │   └── scopeguard v1.2.0
│   │   └── parking_lot_core v0.9.12
│   │       ├── cfg-if v1.0.3
│   │       ├── libc v0.2.176
│   │       └── smallvec v1.15.1
│   ├── percent-encoding v2.3.2
│   ├── regex v1.11.3 (*)
│   ├── reqwest v0.11.27
│   │   ├── base64 v0.21.7
│   │   ├── bytes v1.10.1 (*)
│   │   ├── encoding_rs v0.8.35
│   │   │   └── cfg-if v1.0.3
│   │   ├── futures-core v0.3.31
│   │   ├── futures-util v0.3.31 (*)
│   │   ├── h2 v0.3.27
│   │   │   ├── bytes v1.10.1 (*)
│   │   │   ├── fnv v1.0.7
│   │   │   ├── futures-core v0.3.31
│   │   │   ├── futures-sink v0.3.31
│   │   │   ├── futures-util v0.3.31 (*)
│   │   │   ├── http v0.2.12
│   │   │   │   ├── bytes v1.10.1 (*)
│   │   │   │   ├── fnv v1.0.7
│   │   │   │   └── itoa v1.0.15
│   │   │   ├── indexmap v2.11.4
│   │   │   │   ├── equivalent v1.0.2
│   │   │   │   └── hashbrown v0.16.0
│   │   │   ├── slab v0.4.11
│   │   │   ├── tokio v1.47.1 (*)
│   │   │   ├── tokio-util v0.7.16 (*)
│   │   │   └── tracing v0.1.41 (*)
│   │   ├── http v0.2.12 (*)
│   │   ├── http-body v0.4.6
│   │   │   ├── bytes v1.10.1 (*)
│   │   │   ├── http v0.2.12 (*)
│   │   │   └── pin-project-lite v0.2.16
│   │   ├── hyper v0.14.32
│   │   │   ├── bytes v1.10.1 (*)
│   │   │   ├── futures-channel v0.3.31 (*)
│   │   │   ├── futures-core v0.3.31
│   │   │   ├── futures-util v0.3.31 (*)
│   │   │   ├── h2 v0.3.27 (*)
│   │   │   ├── http v0.2.12 (*)
│   │   │   ├── http-body v0.4.6 (*)
│   │   │   ├── httparse v1.10.1
│   │   │   ├── httpdate v1.0.3
│   │   │   ├── itoa v1.0.15
│   │   │   ├── pin-project-lite v0.2.16
│   │   │   ├── socket2 v0.5.10
│   │   │   │   └── libc v0.2.176
│   │   │   ├── tokio v1.47.1 (*)
│   │   │   ├── tower-service v0.3.3
│   │   │   ├── tracing v0.1.41 (*)
│   │   │   └── want v0.3.1
│   │   │       └── try-lock v0.2.5
│   │   ├── hyper-tls v0.5.0
│   │   │   ├── bytes v1.10.1 (*)
│   │   │   ├── hyper v0.14.32 (*)
│   │   │   ├── native-tls v0.2.14
│   │   │   │   ├── libc v0.2.176
│   │   │   │   ├── security-framework v2.11.1 (*)
│   │   │   │   ├── security-framework-sys v2.15.0 (*)
│   │   │   │   └── tempfile v3.23.0
│   │   │   │       ├── fastrand v2.3.0
│   │   │   │       ├── getrandom v0.3.3 (*)
│   │   │   │       ├── once_cell v1.21.3
│   │   │   │       └── rustix v1.1.2
│   │   │   │           ├── bitflags v2.9.4
│   │   │   │           ├── errno v0.3.14
│   │   │   │           │   └── libc v0.2.176
│   │   │   │           └── libc v0.2.176
│   │   │   ├── tokio v1.47.1 (*)
│   │   │   └── tokio-native-tls v0.3.1
│   │   │       ├── native-tls v0.2.14 (*)
│   │   │       └── tokio v1.47.1 (*)
│   │   ├── ipnet v2.11.0
│   │   ├── log v0.4.28
│   │   ├── mime v0.3.17
│   │   ├── native-tls v0.2.14 (*)
│   │   ├── once_cell v1.21.3
│   │   ├── percent-encoding v2.3.2
│   │   ├── pin-project-lite v0.2.16
│   │   ├── rustls-pemfile v1.0.4
│   │   │   └── base64 v0.21.7
│   │   ├── serde v1.0.228 (*)
│   │   ├── serde_json v1.0.145 (*)
│   │   ├── serde_urlencoded v0.7.1
│   │   │   ├── form_urlencoded v1.2.2 (*)
│   │   │   ├── itoa v1.0.15
│   │   │   ├── ryu v1.0.20
│   │   │   └── serde v1.0.228 (*)
│   │   ├── sync_wrapper v0.1.2
│   │   ├── system-configuration v0.5.1
│   │   │   ├── bitflags v1.3.2
│   │   │   ├── core-foundation v0.9.4 (*)
│   │   │   └── system-configuration-sys v0.5.0
│   │   │       ├── core-foundation-sys v0.8.7
│   │   │       └── libc v0.2.176
│   │   ├── tokio v1.47.1 (*)
│   │   ├── tokio-native-tls v0.3.1 (*)
│   │   ├── tower-service v0.3.3
│   │   └── url v2.5.7 (*)
│   ├── serde v1.0.228 (*)
│   ├── serde_json v1.0.145 (*)
│   ├── time v0.3.44 (*)
│   ├── url v2.5.7 (*)
│   └── uuid v1.18.1
├── nats-server v0.1.0 (/Users/tomaszpietrek/coding/nats.rs/nats-server)
│   ├── lazy_static v1.5.0
│   ├── nuid v0.5.0 (*)
│   ├── rand v0.8.5 (*)
│   ├── regex v1.11.3 (*)
│   ├── serde_json v1.0.145 (*)
│   ├── tokio-retry v0.3.0
│   │   ├── pin-project v1.1.10 (*)
│   │   ├── rand v0.8.5 (*)
│   │   └── tokio v1.47.1 (*)
│   └── url v2.5.7 (*)
├── num v0.4.3 (*)
├── rand v0.8.5 (*)
├── reqwest v0.11.27 (*)
├── ring v0.17.14 (*)
├── tokio v1.47.1 (*)
└── tracing-subscriber v0.3.20
    ├── nu-ansi-term v0.50.1
    ├── sharded-slab v0.1.7
    │   └── lazy_static v1.5.0
    ├── smallvec v1.15.1
    ├── thread_local v1.1.9
    │   └── cfg-if v1.0.3
    ├── tracing-core v0.1.34 (*)
    └── tracing-log v0.2.0
        ├── log v0.4.28
        ├── once_cell v1.21.3
        └── tracing-core v0.1.34 (*)