micro_mcp 0.1.0 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.devcontainer/devcontainer.json +2 -2
- data/.tool-versions +1 -0
- data/AGENTS.md +5 -1
- data/CHANGELOG.md +12 -0
- data/Cargo.lock +278 -558
- data/README.md +39 -8
- data/docs/changes/ERGONOMIC_IMPROVEMENTS.md +133 -0
- data/ext/micro_mcp/AGENTS.md +66 -0
- data/ext/micro_mcp/Cargo.toml +3 -1
- data/ext/micro_mcp/src/lib.rs +21 -5
- data/ext/micro_mcp/src/server.rs +470 -50
- data/ext/micro_mcp/src/utils.rs +1 -1
- data/lib/micro_mcp/runtime_helpers.rb +104 -0
- data/lib/micro_mcp/schema.rb +125 -0
- data/lib/micro_mcp/server.rb +2 -2
- data/lib/micro_mcp/tool_registry.rb +65 -2
- data/lib/micro_mcp/validation_helpers.rb +59 -0
- data/lib/micro_mcp/version.rb +1 -1
- data/lib/micro_mcp.rb +13 -1
- metadata +9 -4
- data/sig/micro_mcp.rbs +0 -4
data/Cargo.lock
CHANGED
@@ -26,12 +26,6 @@ dependencies = [
|
|
26
26
|
"memchr",
|
27
27
|
]
|
28
28
|
|
29
|
-
[[package]]
|
30
|
-
name = "arc-swap"
|
31
|
-
version = "1.7.1"
|
32
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
34
|
-
|
35
29
|
[[package]]
|
36
30
|
name = "async-trait"
|
37
31
|
version = "0.1.88"
|
@@ -43,117 +37,12 @@ dependencies = [
|
|
43
37
|
"syn",
|
44
38
|
]
|
45
39
|
|
46
|
-
[[package]]
|
47
|
-
name = "atomic-waker"
|
48
|
-
version = "1.1.2"
|
49
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
51
|
-
|
52
40
|
[[package]]
|
53
41
|
name = "autocfg"
|
54
42
|
version = "1.5.0"
|
55
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
44
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
57
45
|
|
58
|
-
[[package]]
|
59
|
-
name = "aws-lc-rs"
|
60
|
-
version = "1.13.1"
|
61
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
-
checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
|
63
|
-
dependencies = [
|
64
|
-
"aws-lc-sys",
|
65
|
-
"zeroize",
|
66
|
-
]
|
67
|
-
|
68
|
-
[[package]]
|
69
|
-
name = "aws-lc-sys"
|
70
|
-
version = "0.29.0"
|
71
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
|
73
|
-
dependencies = [
|
74
|
-
"bindgen",
|
75
|
-
"cc",
|
76
|
-
"cmake",
|
77
|
-
"dunce",
|
78
|
-
"fs_extra",
|
79
|
-
]
|
80
|
-
|
81
|
-
[[package]]
|
82
|
-
name = "axum"
|
83
|
-
version = "0.8.4"
|
84
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
85
|
-
checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
|
86
|
-
dependencies = [
|
87
|
-
"axum-core",
|
88
|
-
"bytes",
|
89
|
-
"form_urlencoded",
|
90
|
-
"futures-util",
|
91
|
-
"http",
|
92
|
-
"http-body",
|
93
|
-
"http-body-util",
|
94
|
-
"hyper",
|
95
|
-
"hyper-util",
|
96
|
-
"itoa",
|
97
|
-
"matchit",
|
98
|
-
"memchr",
|
99
|
-
"mime",
|
100
|
-
"percent-encoding",
|
101
|
-
"pin-project-lite",
|
102
|
-
"rustversion",
|
103
|
-
"serde",
|
104
|
-
"serde_json",
|
105
|
-
"serde_path_to_error",
|
106
|
-
"serde_urlencoded",
|
107
|
-
"sync_wrapper",
|
108
|
-
"tokio",
|
109
|
-
"tower",
|
110
|
-
"tower-layer",
|
111
|
-
"tower-service",
|
112
|
-
"tracing",
|
113
|
-
]
|
114
|
-
|
115
|
-
[[package]]
|
116
|
-
name = "axum-core"
|
117
|
-
version = "0.5.2"
|
118
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
119
|
-
checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
|
120
|
-
dependencies = [
|
121
|
-
"bytes",
|
122
|
-
"futures-core",
|
123
|
-
"http",
|
124
|
-
"http-body",
|
125
|
-
"http-body-util",
|
126
|
-
"mime",
|
127
|
-
"pin-project-lite",
|
128
|
-
"rustversion",
|
129
|
-
"sync_wrapper",
|
130
|
-
"tower-layer",
|
131
|
-
"tower-service",
|
132
|
-
"tracing",
|
133
|
-
]
|
134
|
-
|
135
|
-
[[package]]
|
136
|
-
name = "axum-server"
|
137
|
-
version = "0.7.2"
|
138
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
139
|
-
checksum = "495c05f60d6df0093e8fb6e74aa5846a0ad06abaf96d76166283720bf740f8ab"
|
140
|
-
dependencies = [
|
141
|
-
"arc-swap",
|
142
|
-
"bytes",
|
143
|
-
"fs-err",
|
144
|
-
"http",
|
145
|
-
"http-body",
|
146
|
-
"hyper",
|
147
|
-
"hyper-util",
|
148
|
-
"pin-project-lite",
|
149
|
-
"rustls",
|
150
|
-
"rustls-pemfile",
|
151
|
-
"rustls-pki-types",
|
152
|
-
"tokio",
|
153
|
-
"tokio-rustls",
|
154
|
-
"tower-service",
|
155
|
-
]
|
156
|
-
|
157
46
|
[[package]]
|
158
47
|
name = "backtrace"
|
159
48
|
version = "0.3.75"
|
@@ -187,15 +76,12 @@ dependencies = [
|
|
187
76
|
"itertools",
|
188
77
|
"lazy_static",
|
189
78
|
"lazycell",
|
190
|
-
"log",
|
191
|
-
"prettyplease",
|
192
79
|
"proc-macro2",
|
193
80
|
"quote",
|
194
81
|
"regex",
|
195
|
-
"rustc-hash",
|
82
|
+
"rustc-hash 1.1.0",
|
196
83
|
"shlex",
|
197
84
|
"syn",
|
198
|
-
"which",
|
199
85
|
]
|
200
86
|
|
201
87
|
[[package]]
|
@@ -222,8 +108,6 @@ version = "1.2.27"
|
|
222
108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
223
109
|
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
224
110
|
dependencies = [
|
225
|
-
"jobserver",
|
226
|
-
"libc",
|
227
111
|
"shlex",
|
228
112
|
]
|
229
113
|
|
@@ -242,6 +126,12 @@ version = "1.0.1"
|
|
242
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
243
127
|
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
244
128
|
|
129
|
+
[[package]]
|
130
|
+
name = "cfg_aliases"
|
131
|
+
version = "0.2.1"
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
134
|
+
|
245
135
|
[[package]]
|
246
136
|
name = "clang-sys"
|
247
137
|
version = "1.8.1"
|
@@ -254,29 +144,42 @@ dependencies = [
|
|
254
144
|
]
|
255
145
|
|
256
146
|
[[package]]
|
257
|
-
name = "
|
258
|
-
version = "0.1
|
147
|
+
name = "cookie"
|
148
|
+
version = "0.18.1"
|
259
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
-
checksum = "
|
150
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
261
151
|
dependencies = [
|
262
|
-
"
|
152
|
+
"percent-encoding",
|
153
|
+
"time",
|
154
|
+
"version_check",
|
263
155
|
]
|
264
156
|
|
265
157
|
[[package]]
|
266
|
-
name = "
|
267
|
-
version = "0.
|
158
|
+
name = "cookie_store"
|
159
|
+
version = "0.21.1"
|
268
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
-
checksum = "
|
161
|
+
checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9"
|
270
162
|
dependencies = [
|
271
|
-
"
|
272
|
-
"
|
163
|
+
"cookie",
|
164
|
+
"document-features",
|
165
|
+
"idna",
|
166
|
+
"log",
|
167
|
+
"publicsuffix",
|
168
|
+
"serde",
|
169
|
+
"serde_derive",
|
170
|
+
"serde_json",
|
171
|
+
"time",
|
172
|
+
"url",
|
273
173
|
]
|
274
174
|
|
275
175
|
[[package]]
|
276
|
-
name = "
|
277
|
-
version = "0.
|
176
|
+
name = "deranged"
|
177
|
+
version = "0.4.0"
|
278
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
279
|
-
checksum = "
|
179
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
180
|
+
dependencies = [
|
181
|
+
"powerfmt",
|
182
|
+
]
|
280
183
|
|
281
184
|
[[package]]
|
282
185
|
name = "displaydoc"
|
@@ -290,10 +193,13 @@ dependencies = [
|
|
290
193
|
]
|
291
194
|
|
292
195
|
[[package]]
|
293
|
-
name = "
|
294
|
-
version = "
|
196
|
+
name = "document-features"
|
197
|
+
version = "0.2.11"
|
295
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
296
|
-
checksum = "
|
199
|
+
checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
|
200
|
+
dependencies = [
|
201
|
+
"litrs",
|
202
|
+
]
|
297
203
|
|
298
204
|
[[package]]
|
299
205
|
name = "either"
|
@@ -301,58 +207,12 @@ version = "1.15.0"
|
|
301
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
208
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
303
209
|
|
304
|
-
[[package]]
|
305
|
-
name = "encoding_rs"
|
306
|
-
version = "0.8.35"
|
307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
-
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
309
|
-
dependencies = [
|
310
|
-
"cfg-if",
|
311
|
-
]
|
312
|
-
|
313
|
-
[[package]]
|
314
|
-
name = "equivalent"
|
315
|
-
version = "1.0.2"
|
316
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
318
|
-
|
319
|
-
[[package]]
|
320
|
-
name = "errno"
|
321
|
-
version = "0.3.13"
|
322
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
-
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
324
|
-
dependencies = [
|
325
|
-
"libc",
|
326
|
-
"windows-sys 0.60.2",
|
327
|
-
]
|
328
|
-
|
329
|
-
[[package]]
|
330
|
-
name = "fastrand"
|
331
|
-
version = "2.3.0"
|
332
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
333
|
-
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
334
|
-
|
335
210
|
[[package]]
|
336
211
|
name = "fnv"
|
337
212
|
version = "1.0.7"
|
338
213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
339
214
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
340
215
|
|
341
|
-
[[package]]
|
342
|
-
name = "foreign-types"
|
343
|
-
version = "0.3.2"
|
344
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
346
|
-
dependencies = [
|
347
|
-
"foreign-types-shared",
|
348
|
-
]
|
349
|
-
|
350
|
-
[[package]]
|
351
|
-
name = "foreign-types-shared"
|
352
|
-
version = "0.1.1"
|
353
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
-
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
355
|
-
|
356
216
|
[[package]]
|
357
217
|
name = "form_urlencoded"
|
358
218
|
version = "1.2.1"
|
@@ -362,22 +222,6 @@ dependencies = [
|
|
362
222
|
"percent-encoding",
|
363
223
|
]
|
364
224
|
|
365
|
-
[[package]]
|
366
|
-
name = "fs-err"
|
367
|
-
version = "3.1.1"
|
368
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
-
checksum = "88d7be93788013f265201256d58f04936a8079ad5dc898743aa20525f503b683"
|
370
|
-
dependencies = [
|
371
|
-
"autocfg",
|
372
|
-
"tokio",
|
373
|
-
]
|
374
|
-
|
375
|
-
[[package]]
|
376
|
-
name = "fs_extra"
|
377
|
-
version = "1.3.0"
|
378
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
-
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
380
|
-
|
381
225
|
[[package]]
|
382
226
|
name = "futures"
|
383
227
|
version = "0.3.31"
|
@@ -474,8 +318,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
318
|
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
475
319
|
dependencies = [
|
476
320
|
"cfg-if",
|
321
|
+
"js-sys",
|
477
322
|
"libc",
|
478
323
|
"wasi 0.11.1+wasi-snapshot-preview1",
|
324
|
+
"wasm-bindgen",
|
479
325
|
]
|
480
326
|
|
481
327
|
[[package]]
|
@@ -485,9 +331,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
331
|
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
486
332
|
dependencies = [
|
487
333
|
"cfg-if",
|
334
|
+
"js-sys",
|
488
335
|
"libc",
|
489
336
|
"r-efi",
|
490
337
|
"wasi 0.14.2+wasi-0.2.4",
|
338
|
+
"wasm-bindgen",
|
491
339
|
]
|
492
340
|
|
493
341
|
[[package]]
|
@@ -502,40 +350,6 @@ version = "0.3.2"
|
|
502
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
503
351
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
504
352
|
|
505
|
-
[[package]]
|
506
|
-
name = "h2"
|
507
|
-
version = "0.4.10"
|
508
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
-
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
510
|
-
dependencies = [
|
511
|
-
"atomic-waker",
|
512
|
-
"bytes",
|
513
|
-
"fnv",
|
514
|
-
"futures-core",
|
515
|
-
"futures-sink",
|
516
|
-
"http",
|
517
|
-
"indexmap",
|
518
|
-
"slab",
|
519
|
-
"tokio",
|
520
|
-
"tokio-util",
|
521
|
-
"tracing",
|
522
|
-
]
|
523
|
-
|
524
|
-
[[package]]
|
525
|
-
name = "hashbrown"
|
526
|
-
version = "0.15.4"
|
527
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
528
|
-
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
529
|
-
|
530
|
-
[[package]]
|
531
|
-
name = "home"
|
532
|
-
version = "0.5.11"
|
533
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
-
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
535
|
-
dependencies = [
|
536
|
-
"windows-sys 0.59.0",
|
537
|
-
]
|
538
|
-
|
539
353
|
[[package]]
|
540
354
|
name = "http"
|
541
355
|
version = "1.3.1"
|
@@ -576,12 +390,6 @@ version = "1.10.1"
|
|
576
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
391
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
578
392
|
|
579
|
-
[[package]]
|
580
|
-
name = "httpdate"
|
581
|
-
version = "1.0.3"
|
582
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
-
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
584
|
-
|
585
393
|
[[package]]
|
586
394
|
name = "hyper"
|
587
395
|
version = "1.6.0"
|
@@ -591,11 +399,9 @@ dependencies = [
|
|
591
399
|
"bytes",
|
592
400
|
"futures-channel",
|
593
401
|
"futures-util",
|
594
|
-
"h2",
|
595
402
|
"http",
|
596
403
|
"http-body",
|
597
404
|
"httparse",
|
598
|
-
"httpdate",
|
599
405
|
"itoa",
|
600
406
|
"pin-project-lite",
|
601
407
|
"smallvec",
|
@@ -617,22 +423,7 @@ dependencies = [
|
|
617
423
|
"tokio",
|
618
424
|
"tokio-rustls",
|
619
425
|
"tower-service",
|
620
|
-
|
621
|
-
|
622
|
-
[[package]]
|
623
|
-
name = "hyper-tls"
|
624
|
-
version = "0.6.0"
|
625
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
-
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
627
|
-
dependencies = [
|
628
|
-
"bytes",
|
629
|
-
"http-body-util",
|
630
|
-
"hyper",
|
631
|
-
"hyper-util",
|
632
|
-
"native-tls",
|
633
|
-
"tokio",
|
634
|
-
"tokio-native-tls",
|
635
|
-
"tower-service",
|
426
|
+
"webpki-roots",
|
636
427
|
]
|
637
428
|
|
638
429
|
[[package]]
|
@@ -654,11 +445,9 @@ dependencies = [
|
|
654
445
|
"percent-encoding",
|
655
446
|
"pin-project-lite",
|
656
447
|
"socket2",
|
657
|
-
"system-configuration",
|
658
448
|
"tokio",
|
659
449
|
"tower-service",
|
660
450
|
"tracing",
|
661
|
-
"windows-registry",
|
662
451
|
]
|
663
452
|
|
664
453
|
[[package]]
|
@@ -768,16 +557,6 @@ dependencies = [
|
|
768
557
|
"icu_properties",
|
769
558
|
]
|
770
559
|
|
771
|
-
[[package]]
|
772
|
-
name = "indexmap"
|
773
|
-
version = "2.9.0"
|
774
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
775
|
-
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
776
|
-
dependencies = [
|
777
|
-
"equivalent",
|
778
|
-
"hashbrown",
|
779
|
-
]
|
780
|
-
|
781
560
|
[[package]]
|
782
561
|
name = "ipnet"
|
783
562
|
version = "2.11.0"
|
@@ -809,16 +588,6 @@ version = "1.0.15"
|
|
809
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
589
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
811
590
|
|
812
|
-
[[package]]
|
813
|
-
name = "jobserver"
|
814
|
-
version = "0.1.33"
|
815
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
-
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
817
|
-
dependencies = [
|
818
|
-
"getrandom 0.3.3",
|
819
|
-
"libc",
|
820
|
-
]
|
821
|
-
|
822
591
|
[[package]]
|
823
592
|
name = "js-sys"
|
824
593
|
version = "0.3.77"
|
@@ -857,24 +626,18 @@ dependencies = [
|
|
857
626
|
"windows-targets 0.53.2",
|
858
627
|
]
|
859
628
|
|
860
|
-
[[package]]
|
861
|
-
name = "linux-raw-sys"
|
862
|
-
version = "0.4.15"
|
863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
-
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
865
|
-
|
866
|
-
[[package]]
|
867
|
-
name = "linux-raw-sys"
|
868
|
-
version = "0.9.4"
|
869
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
-
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
871
|
-
|
872
629
|
[[package]]
|
873
630
|
name = "litemap"
|
874
631
|
version = "0.8.0"
|
875
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
633
|
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
877
634
|
|
635
|
+
[[package]]
|
636
|
+
name = "litrs"
|
637
|
+
version = "0.4.1"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
|
640
|
+
|
878
641
|
[[package]]
|
879
642
|
name = "lock_api"
|
880
643
|
version = "0.4.13"
|
@@ -891,6 +654,12 @@ version = "0.4.27"
|
|
891
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
655
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
893
656
|
|
657
|
+
[[package]]
|
658
|
+
name = "lru-slab"
|
659
|
+
version = "0.1.2"
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
662
|
+
|
894
663
|
[[package]]
|
895
664
|
name = "magnus"
|
896
665
|
version = "0.7.1"
|
@@ -914,12 +683,6 @@ dependencies = [
|
|
914
683
|
"syn",
|
915
684
|
]
|
916
685
|
|
917
|
-
[[package]]
|
918
|
-
name = "matchit"
|
919
|
-
version = "0.8.4"
|
920
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
-
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
922
|
-
|
923
686
|
[[package]]
|
924
687
|
name = "memchr"
|
925
688
|
version = "2.7.5"
|
@@ -945,6 +708,16 @@ version = "0.3.17"
|
|
945
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
946
709
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
947
710
|
|
711
|
+
[[package]]
|
712
|
+
name = "mime_guess"
|
713
|
+
version = "2.0.5"
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
716
|
+
dependencies = [
|
717
|
+
"mime",
|
718
|
+
"unicase",
|
719
|
+
]
|
720
|
+
|
948
721
|
[[package]]
|
949
722
|
name = "minimal-lexical"
|
950
723
|
version = "0.2.1"
|
@@ -971,23 +744,6 @@ dependencies = [
|
|
971
744
|
"windows-sys 0.59.0",
|
972
745
|
]
|
973
746
|
|
974
|
-
[[package]]
|
975
|
-
name = "native-tls"
|
976
|
-
version = "0.2.14"
|
977
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
|
-
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
979
|
-
dependencies = [
|
980
|
-
"libc",
|
981
|
-
"log",
|
982
|
-
"openssl",
|
983
|
-
"openssl-probe",
|
984
|
-
"openssl-sys",
|
985
|
-
"schannel",
|
986
|
-
"security-framework",
|
987
|
-
"security-framework-sys",
|
988
|
-
"tempfile",
|
989
|
-
]
|
990
|
-
|
991
747
|
[[package]]
|
992
748
|
name = "nom"
|
993
749
|
version = "7.1.3"
|
@@ -998,6 +754,12 @@ dependencies = [
|
|
998
754
|
"minimal-lexical",
|
999
755
|
]
|
1000
756
|
|
757
|
+
[[package]]
|
758
|
+
name = "num-conv"
|
759
|
+
version = "0.1.0"
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
761
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
762
|
+
|
1001
763
|
[[package]]
|
1002
764
|
name = "object"
|
1003
765
|
version = "0.36.7"
|
@@ -1013,50 +775,6 @@ version = "1.21.3"
|
|
1013
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1014
776
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1015
777
|
|
1016
|
-
[[package]]
|
1017
|
-
name = "openssl"
|
1018
|
-
version = "0.10.73"
|
1019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
-
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
1021
|
-
dependencies = [
|
1022
|
-
"bitflags",
|
1023
|
-
"cfg-if",
|
1024
|
-
"foreign-types",
|
1025
|
-
"libc",
|
1026
|
-
"once_cell",
|
1027
|
-
"openssl-macros",
|
1028
|
-
"openssl-sys",
|
1029
|
-
]
|
1030
|
-
|
1031
|
-
[[package]]
|
1032
|
-
name = "openssl-macros"
|
1033
|
-
version = "0.1.1"
|
1034
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1035
|
-
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
1036
|
-
dependencies = [
|
1037
|
-
"proc-macro2",
|
1038
|
-
"quote",
|
1039
|
-
"syn",
|
1040
|
-
]
|
1041
|
-
|
1042
|
-
[[package]]
|
1043
|
-
name = "openssl-probe"
|
1044
|
-
version = "0.1.6"
|
1045
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
-
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
1047
|
-
|
1048
|
-
[[package]]
|
1049
|
-
name = "openssl-sys"
|
1050
|
-
version = "0.9.109"
|
1051
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1052
|
-
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
1053
|
-
dependencies = [
|
1054
|
-
"cc",
|
1055
|
-
"libc",
|
1056
|
-
"pkg-config",
|
1057
|
-
"vcpkg",
|
1058
|
-
]
|
1059
|
-
|
1060
778
|
[[package]]
|
1061
779
|
name = "parking_lot"
|
1062
780
|
version = "0.12.4"
|
@@ -1098,12 +816,6 @@ version = "0.1.0"
|
|
1098
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1099
817
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1100
818
|
|
1101
|
-
[[package]]
|
1102
|
-
name = "pkg-config"
|
1103
|
-
version = "0.3.32"
|
1104
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
-
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1106
|
-
|
1107
819
|
[[package]]
|
1108
820
|
name = "potential_utf"
|
1109
821
|
version = "0.1.2"
|
@@ -1114,13 +826,18 @@ dependencies = [
|
|
1114
826
|
]
|
1115
827
|
|
1116
828
|
[[package]]
|
1117
|
-
name = "
|
1118
|
-
version = "0.2.
|
829
|
+
name = "powerfmt"
|
830
|
+
version = "0.2.0"
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
832
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
833
|
+
|
834
|
+
[[package]]
|
835
|
+
name = "ppv-lite86"
|
836
|
+
version = "0.2.21"
|
1119
837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
-
checksum = "
|
838
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
1121
839
|
dependencies = [
|
1122
|
-
"
|
1123
|
-
"syn",
|
840
|
+
"zerocopy",
|
1124
841
|
]
|
1125
842
|
|
1126
843
|
[[package]]
|
@@ -1132,6 +849,77 @@ dependencies = [
|
|
1132
849
|
"unicode-ident",
|
1133
850
|
]
|
1134
851
|
|
852
|
+
[[package]]
|
853
|
+
name = "psl-types"
|
854
|
+
version = "2.0.11"
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
+
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
857
|
+
|
858
|
+
[[package]]
|
859
|
+
name = "publicsuffix"
|
860
|
+
version = "2.3.0"
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
862
|
+
checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
|
863
|
+
dependencies = [
|
864
|
+
"idna",
|
865
|
+
"psl-types",
|
866
|
+
]
|
867
|
+
|
868
|
+
[[package]]
|
869
|
+
name = "quinn"
|
870
|
+
version = "0.11.8"
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
872
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
873
|
+
dependencies = [
|
874
|
+
"bytes",
|
875
|
+
"cfg_aliases",
|
876
|
+
"pin-project-lite",
|
877
|
+
"quinn-proto",
|
878
|
+
"quinn-udp",
|
879
|
+
"rustc-hash 2.1.1",
|
880
|
+
"rustls",
|
881
|
+
"socket2",
|
882
|
+
"thiserror",
|
883
|
+
"tokio",
|
884
|
+
"tracing",
|
885
|
+
"web-time",
|
886
|
+
]
|
887
|
+
|
888
|
+
[[package]]
|
889
|
+
name = "quinn-proto"
|
890
|
+
version = "0.11.12"
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
+
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
|
893
|
+
dependencies = [
|
894
|
+
"bytes",
|
895
|
+
"getrandom 0.3.3",
|
896
|
+
"lru-slab",
|
897
|
+
"rand",
|
898
|
+
"ring",
|
899
|
+
"rustc-hash 2.1.1",
|
900
|
+
"rustls",
|
901
|
+
"rustls-pki-types",
|
902
|
+
"slab",
|
903
|
+
"thiserror",
|
904
|
+
"tinyvec",
|
905
|
+
"tracing",
|
906
|
+
"web-time",
|
907
|
+
]
|
908
|
+
|
909
|
+
[[package]]
|
910
|
+
name = "quinn-udp"
|
911
|
+
version = "0.5.13"
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
+
checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
|
914
|
+
dependencies = [
|
915
|
+
"cfg_aliases",
|
916
|
+
"libc",
|
917
|
+
"once_cell",
|
918
|
+
"socket2",
|
919
|
+
"tracing",
|
920
|
+
"windows-sys 0.59.0",
|
921
|
+
]
|
922
|
+
|
1135
923
|
[[package]]
|
1136
924
|
name = "quote"
|
1137
925
|
version = "1.0.40"
|
@@ -1147,6 +935,35 @@ version = "5.3.0"
|
|
1147
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1148
936
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
1149
937
|
|
938
|
+
[[package]]
|
939
|
+
name = "rand"
|
940
|
+
version = "0.9.1"
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
943
|
+
dependencies = [
|
944
|
+
"rand_chacha",
|
945
|
+
"rand_core",
|
946
|
+
]
|
947
|
+
|
948
|
+
[[package]]
|
949
|
+
name = "rand_chacha"
|
950
|
+
version = "0.9.0"
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
953
|
+
dependencies = [
|
954
|
+
"ppv-lite86",
|
955
|
+
"rand_core",
|
956
|
+
]
|
957
|
+
|
958
|
+
[[package]]
|
959
|
+
name = "rand_core"
|
960
|
+
version = "0.9.3"
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
962
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
963
|
+
dependencies = [
|
964
|
+
"getrandom 0.3.3",
|
965
|
+
]
|
966
|
+
|
1150
967
|
[[package]]
|
1151
968
|
name = "rb-sys"
|
1152
969
|
version = "0.9.116"
|
@@ -1223,30 +1040,30 @@ checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
|
|
1223
1040
|
dependencies = [
|
1224
1041
|
"base64",
|
1225
1042
|
"bytes",
|
1226
|
-
"
|
1043
|
+
"cookie",
|
1044
|
+
"cookie_store",
|
1227
1045
|
"futures-core",
|
1228
1046
|
"futures-util",
|
1229
|
-
"h2",
|
1230
1047
|
"http",
|
1231
1048
|
"http-body",
|
1232
1049
|
"http-body-util",
|
1233
1050
|
"hyper",
|
1234
1051
|
"hyper-rustls",
|
1235
|
-
"hyper-tls",
|
1236
1052
|
"hyper-util",
|
1237
1053
|
"js-sys",
|
1238
1054
|
"log",
|
1239
|
-
"
|
1240
|
-
"native-tls",
|
1055
|
+
"mime_guess",
|
1241
1056
|
"percent-encoding",
|
1242
1057
|
"pin-project-lite",
|
1058
|
+
"quinn",
|
1059
|
+
"rustls",
|
1243
1060
|
"rustls-pki-types",
|
1244
1061
|
"serde",
|
1245
1062
|
"serde_json",
|
1246
1063
|
"serde_urlencoded",
|
1247
1064
|
"sync_wrapper",
|
1248
1065
|
"tokio",
|
1249
|
-
"tokio-
|
1066
|
+
"tokio-rustls",
|
1250
1067
|
"tokio-util",
|
1251
1068
|
"tower",
|
1252
1069
|
"tower-http",
|
@@ -1256,6 +1073,7 @@ dependencies = [
|
|
1256
1073
|
"wasm-bindgen-futures",
|
1257
1074
|
"wasm-streams",
|
1258
1075
|
"web-sys",
|
1076
|
+
"webpki-roots",
|
1259
1077
|
]
|
1260
1078
|
|
1261
1079
|
[[package]]
|
@@ -1297,15 +1115,12 @@ dependencies = [
|
|
1297
1115
|
|
1298
1116
|
[[package]]
|
1299
1117
|
name = "rust-mcp-sdk"
|
1300
|
-
version = "0.4.
|
1118
|
+
version = "0.4.7"
|
1301
1119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1302
|
-
checksum = "
|
1120
|
+
checksum = "83f03dc968444ec56bdcddf17536b4b6860136a0d81d987f2fb909d5aec61ed7"
|
1303
1121
|
dependencies = [
|
1304
1122
|
"async-trait",
|
1305
|
-
"axum",
|
1306
|
-
"axum-server",
|
1307
1123
|
"futures",
|
1308
|
-
"hyper",
|
1309
1124
|
"rust-mcp-macros",
|
1310
1125
|
"rust-mcp-schema",
|
1311
1126
|
"rust-mcp-transport",
|
@@ -1313,16 +1128,14 @@ dependencies = [
|
|
1313
1128
|
"serde_json",
|
1314
1129
|
"thiserror",
|
1315
1130
|
"tokio",
|
1316
|
-
"tokio-stream",
|
1317
1131
|
"tracing",
|
1318
|
-
"uuid",
|
1319
1132
|
]
|
1320
1133
|
|
1321
1134
|
[[package]]
|
1322
1135
|
name = "rust-mcp-transport"
|
1323
|
-
version = "0.3.
|
1136
|
+
version = "0.3.6"
|
1324
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
-
checksum = "
|
1138
|
+
checksum = "94b5a7f8e688f8b15d67f8d94cc0481cd08c9f4e848f4b9e832677dd5fdb063e"
|
1326
1139
|
dependencies = [
|
1327
1140
|
"async-trait",
|
1328
1141
|
"bytes",
|
@@ -1350,30 +1163,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
1163
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1351
1164
|
|
1352
1165
|
[[package]]
|
1353
|
-
name = "
|
1354
|
-
version = "
|
1355
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1356
|
-
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
1357
|
-
dependencies = [
|
1358
|
-
"bitflags",
|
1359
|
-
"errno",
|
1360
|
-
"libc",
|
1361
|
-
"linux-raw-sys 0.4.15",
|
1362
|
-
"windows-sys 0.59.0",
|
1363
|
-
]
|
1364
|
-
|
1365
|
-
[[package]]
|
1366
|
-
name = "rustix"
|
1367
|
-
version = "1.0.7"
|
1166
|
+
name = "rustc-hash"
|
1167
|
+
version = "2.1.1"
|
1368
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1369
|
-
checksum = "
|
1370
|
-
dependencies = [
|
1371
|
-
"bitflags",
|
1372
|
-
"errno",
|
1373
|
-
"libc",
|
1374
|
-
"linux-raw-sys 0.9.4",
|
1375
|
-
"windows-sys 0.59.0",
|
1376
|
-
]
|
1169
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
1377
1170
|
|
1378
1171
|
[[package]]
|
1379
1172
|
name = "rustls"
|
@@ -1381,29 +1174,21 @@ version = "0.23.28"
|
|
1381
1174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1382
1175
|
checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
|
1383
1176
|
dependencies = [
|
1384
|
-
"aws-lc-rs",
|
1385
1177
|
"once_cell",
|
1178
|
+
"ring",
|
1386
1179
|
"rustls-pki-types",
|
1387
1180
|
"rustls-webpki",
|
1388
1181
|
"subtle",
|
1389
1182
|
"zeroize",
|
1390
1183
|
]
|
1391
1184
|
|
1392
|
-
[[package]]
|
1393
|
-
name = "rustls-pemfile"
|
1394
|
-
version = "2.2.0"
|
1395
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1396
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
1397
|
-
dependencies = [
|
1398
|
-
"rustls-pki-types",
|
1399
|
-
]
|
1400
|
-
|
1401
1185
|
[[package]]
|
1402
1186
|
name = "rustls-pki-types"
|
1403
1187
|
version = "1.12.0"
|
1404
1188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
1189
|
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
1406
1190
|
dependencies = [
|
1191
|
+
"web-time",
|
1407
1192
|
"zeroize",
|
1408
1193
|
]
|
1409
1194
|
|
@@ -1413,7 +1198,6 @@ version = "0.103.3"
|
|
1413
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
1199
|
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
|
1415
1200
|
dependencies = [
|
1416
|
-
"aws-lc-rs",
|
1417
1201
|
"ring",
|
1418
1202
|
"rustls-pki-types",
|
1419
1203
|
"untrusted",
|
@@ -1431,44 +1215,12 @@ version = "1.0.20"
|
|
1431
1215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1432
1216
|
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1433
1217
|
|
1434
|
-
[[package]]
|
1435
|
-
name = "schannel"
|
1436
|
-
version = "0.1.27"
|
1437
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1438
|
-
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
1439
|
-
dependencies = [
|
1440
|
-
"windows-sys 0.59.0",
|
1441
|
-
]
|
1442
|
-
|
1443
1218
|
[[package]]
|
1444
1219
|
name = "scopeguard"
|
1445
1220
|
version = "1.2.0"
|
1446
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1447
1222
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1448
1223
|
|
1449
|
-
[[package]]
|
1450
|
-
name = "security-framework"
|
1451
|
-
version = "2.11.1"
|
1452
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1453
|
-
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
1454
|
-
dependencies = [
|
1455
|
-
"bitflags",
|
1456
|
-
"core-foundation",
|
1457
|
-
"core-foundation-sys",
|
1458
|
-
"libc",
|
1459
|
-
"security-framework-sys",
|
1460
|
-
]
|
1461
|
-
|
1462
|
-
[[package]]
|
1463
|
-
name = "security-framework-sys"
|
1464
|
-
version = "2.14.0"
|
1465
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1466
|
-
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
1467
|
-
dependencies = [
|
1468
|
-
"core-foundation-sys",
|
1469
|
-
"libc",
|
1470
|
-
]
|
1471
|
-
|
1472
1224
|
[[package]]
|
1473
1225
|
name = "seq-macro"
|
1474
1226
|
version = "0.3.6"
|
@@ -1507,16 +1259,6 @@ dependencies = [
|
|
1507
1259
|
"serde",
|
1508
1260
|
]
|
1509
1261
|
|
1510
|
-
[[package]]
|
1511
|
-
name = "serde_path_to_error"
|
1512
|
-
version = "0.1.17"
|
1513
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1514
|
-
checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
|
1515
|
-
dependencies = [
|
1516
|
-
"itoa",
|
1517
|
-
"serde",
|
1518
|
-
]
|
1519
|
-
|
1520
1262
|
[[package]]
|
1521
1263
|
name = "serde_urlencoded"
|
1522
1264
|
version = "0.7.1"
|
@@ -1616,57 +1358,54 @@ dependencies = [
|
|
1616
1358
|
]
|
1617
1359
|
|
1618
1360
|
[[package]]
|
1619
|
-
name = "
|
1620
|
-
version = "0.
|
1361
|
+
name = "thiserror"
|
1362
|
+
version = "2.0.12"
|
1621
1363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
-
checksum = "
|
1364
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1623
1365
|
dependencies = [
|
1624
|
-
"
|
1625
|
-
"core-foundation",
|
1626
|
-
"system-configuration-sys",
|
1366
|
+
"thiserror-impl",
|
1627
1367
|
]
|
1628
1368
|
|
1629
1369
|
[[package]]
|
1630
|
-
name = "
|
1631
|
-
version = "0.
|
1370
|
+
name = "thiserror-impl"
|
1371
|
+
version = "2.0.12"
|
1632
1372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1633
|
-
checksum = "
|
1373
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1634
1374
|
dependencies = [
|
1635
|
-
"
|
1636
|
-
"
|
1375
|
+
"proc-macro2",
|
1376
|
+
"quote",
|
1377
|
+
"syn",
|
1637
1378
|
]
|
1638
1379
|
|
1639
1380
|
[[package]]
|
1640
|
-
name = "
|
1641
|
-
version = "3.
|
1381
|
+
name = "time"
|
1382
|
+
version = "0.3.41"
|
1642
1383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
-
checksum = "
|
1384
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
1644
1385
|
dependencies = [
|
1645
|
-
"
|
1646
|
-
"
|
1647
|
-
"
|
1648
|
-
"
|
1649
|
-
"
|
1386
|
+
"deranged",
|
1387
|
+
"itoa",
|
1388
|
+
"num-conv",
|
1389
|
+
"powerfmt",
|
1390
|
+
"serde",
|
1391
|
+
"time-core",
|
1392
|
+
"time-macros",
|
1650
1393
|
]
|
1651
1394
|
|
1652
1395
|
[[package]]
|
1653
|
-
name = "
|
1654
|
-
version = "
|
1396
|
+
name = "time-core"
|
1397
|
+
version = "0.1.4"
|
1655
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1656
|
-
checksum = "
|
1657
|
-
dependencies = [
|
1658
|
-
"thiserror-impl",
|
1659
|
-
]
|
1399
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
1660
1400
|
|
1661
1401
|
[[package]]
|
1662
|
-
name = "
|
1663
|
-
version = "2.
|
1402
|
+
name = "time-macros"
|
1403
|
+
version = "0.2.22"
|
1664
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1665
|
-
checksum = "
|
1405
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
1666
1406
|
dependencies = [
|
1667
|
-
"
|
1668
|
-
"
|
1669
|
-
"syn",
|
1407
|
+
"num-conv",
|
1408
|
+
"time-core",
|
1670
1409
|
]
|
1671
1410
|
|
1672
1411
|
[[package]]
|
@@ -1679,6 +1418,21 @@ dependencies = [
|
|
1679
1418
|
"zerovec",
|
1680
1419
|
]
|
1681
1420
|
|
1421
|
+
[[package]]
|
1422
|
+
name = "tinyvec"
|
1423
|
+
version = "1.9.0"
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1425
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
1426
|
+
dependencies = [
|
1427
|
+
"tinyvec_macros",
|
1428
|
+
]
|
1429
|
+
|
1430
|
+
[[package]]
|
1431
|
+
name = "tinyvec_macros"
|
1432
|
+
version = "0.1.1"
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1434
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1435
|
+
|
1682
1436
|
[[package]]
|
1683
1437
|
name = "tokio"
|
1684
1438
|
version = "1.45.1"
|
@@ -1708,16 +1462,6 @@ dependencies = [
|
|
1708
1462
|
"syn",
|
1709
1463
|
]
|
1710
1464
|
|
1711
|
-
[[package]]
|
1712
|
-
name = "tokio-native-tls"
|
1713
|
-
version = "0.3.1"
|
1714
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1715
|
-
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
1716
|
-
dependencies = [
|
1717
|
-
"native-tls",
|
1718
|
-
"tokio",
|
1719
|
-
]
|
1720
|
-
|
1721
1465
|
[[package]]
|
1722
1466
|
name = "tokio-rustls"
|
1723
1467
|
version = "0.26.2"
|
@@ -1765,7 +1509,6 @@ dependencies = [
|
|
1765
1509
|
"tokio",
|
1766
1510
|
"tower-layer",
|
1767
1511
|
"tower-service",
|
1768
|
-
"tracing",
|
1769
1512
|
]
|
1770
1513
|
|
1771
1514
|
[[package]]
|
@@ -1804,7 +1547,6 @@ version = "0.1.41"
|
|
1804
1547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1805
1548
|
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
1806
1549
|
dependencies = [
|
1807
|
-
"log",
|
1808
1550
|
"pin-project-lite",
|
1809
1551
|
"tracing-attributes",
|
1810
1552
|
"tracing-core",
|
@@ -1836,6 +1578,12 @@ version = "0.2.5"
|
|
1836
1578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1837
1579
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
1838
1580
|
|
1581
|
+
[[package]]
|
1582
|
+
name = "unicase"
|
1583
|
+
version = "2.8.1"
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1585
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
1586
|
+
|
1839
1587
|
[[package]]
|
1840
1588
|
name = "unicode-ident"
|
1841
1589
|
version = "1.0.18"
|
@@ -1866,21 +1614,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
1614
|
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
1867
1615
|
|
1868
1616
|
[[package]]
|
1869
|
-
name = "
|
1870
|
-
version = "
|
1617
|
+
name = "version_check"
|
1618
|
+
version = "0.9.5"
|
1871
1619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1872
|
-
checksum = "
|
1873
|
-
dependencies = [
|
1874
|
-
"getrandom 0.3.3",
|
1875
|
-
"js-sys",
|
1876
|
-
"wasm-bindgen",
|
1877
|
-
]
|
1878
|
-
|
1879
|
-
[[package]]
|
1880
|
-
name = "vcpkg"
|
1881
|
-
version = "0.2.15"
|
1882
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1883
|
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
1620
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
1884
1621
|
|
1885
1622
|
[[package]]
|
1886
1623
|
name = "want"
|
@@ -2001,50 +1738,22 @@ dependencies = [
|
|
2001
1738
|
]
|
2002
1739
|
|
2003
1740
|
[[package]]
|
2004
|
-
name = "
|
2005
|
-
version = "
|
2006
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2007
|
-
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
2008
|
-
dependencies = [
|
2009
|
-
"either",
|
2010
|
-
"home",
|
2011
|
-
"once_cell",
|
2012
|
-
"rustix 0.38.44",
|
2013
|
-
]
|
2014
|
-
|
2015
|
-
[[package]]
|
2016
|
-
name = "windows-link"
|
2017
|
-
version = "0.1.3"
|
2018
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
2020
|
-
|
2021
|
-
[[package]]
|
2022
|
-
name = "windows-registry"
|
2023
|
-
version = "0.5.2"
|
2024
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
-
checksum = "b3bab093bdd303a1240bb99b8aba8ea8a69ee19d34c9e2ef9594e708a4878820"
|
2026
|
-
dependencies = [
|
2027
|
-
"windows-link",
|
2028
|
-
"windows-result",
|
2029
|
-
"windows-strings",
|
2030
|
-
]
|
2031
|
-
|
2032
|
-
[[package]]
|
2033
|
-
name = "windows-result"
|
2034
|
-
version = "0.3.4"
|
1741
|
+
name = "web-time"
|
1742
|
+
version = "1.1.0"
|
2035
1743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2036
|
-
checksum = "
|
1744
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
2037
1745
|
dependencies = [
|
2038
|
-
"
|
1746
|
+
"js-sys",
|
1747
|
+
"wasm-bindgen",
|
2039
1748
|
]
|
2040
1749
|
|
2041
1750
|
[[package]]
|
2042
|
-
name = "
|
2043
|
-
version = "0.
|
1751
|
+
name = "webpki-roots"
|
1752
|
+
version = "1.0.1"
|
2044
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
-
checksum = "
|
1754
|
+
checksum = "8782dd5a41a24eed3a4f40b606249b3e236ca61adf1f25ea4d45c73de122b502"
|
2046
1755
|
dependencies = [
|
2047
|
-
"
|
1756
|
+
"rustls-pki-types",
|
2048
1757
|
]
|
2049
1758
|
|
2050
1759
|
[[package]]
|
@@ -2065,15 +1774,6 @@ dependencies = [
|
|
2065
1774
|
"windows-targets 0.52.6",
|
2066
1775
|
]
|
2067
1776
|
|
2068
|
-
[[package]]
|
2069
|
-
name = "windows-sys"
|
2070
|
-
version = "0.60.2"
|
2071
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2072
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
2073
|
-
dependencies = [
|
2074
|
-
"windows-targets 0.53.2",
|
2075
|
-
]
|
2076
|
-
|
2077
1777
|
[[package]]
|
2078
1778
|
name = "windows-targets"
|
2079
1779
|
version = "0.52.6"
|
@@ -2241,6 +1941,26 @@ dependencies = [
|
|
2241
1941
|
"synstructure",
|
2242
1942
|
]
|
2243
1943
|
|
1944
|
+
[[package]]
|
1945
|
+
name = "zerocopy"
|
1946
|
+
version = "0.8.26"
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1948
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
1949
|
+
dependencies = [
|
1950
|
+
"zerocopy-derive",
|
1951
|
+
]
|
1952
|
+
|
1953
|
+
[[package]]
|
1954
|
+
name = "zerocopy-derive"
|
1955
|
+
version = "0.8.26"
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1957
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
1958
|
+
dependencies = [
|
1959
|
+
"proc-macro2",
|
1960
|
+
"quote",
|
1961
|
+
"syn",
|
1962
|
+
]
|
1963
|
+
|
2244
1964
|
[[package]]
|
2245
1965
|
name = "zerofrom"
|
2246
1966
|
version = "0.1.6"
|