fusion-framework 0.1.0__tar.gz
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.
- fusion_framework-0.1.0/Cargo.lock +861 -0
- fusion_framework-0.1.0/Cargo.toml +19 -0
- fusion_framework-0.1.0/PKG-INFO +34 -0
- fusion_framework-0.1.0/README.md +13 -0
- fusion_framework-0.1.0/crates/fusion-core/Cargo.toml +20 -0
- fusion_framework-0.1.0/crates/fusion-core/src/error.rs +36 -0
- fusion_framework-0.1.0/crates/fusion-core/src/handler.rs +15 -0
- fusion_framework-0.1.0/crates/fusion-core/src/lib.rs +49 -0
- fusion_framework-0.1.0/crates/fusion-core/src/main.rs +18 -0
- fusion_framework-0.1.0/crates/fusion-core/src/request.rs +37 -0
- fusion_framework-0.1.0/crates/fusion-core/src/response.rs +38 -0
- fusion_framework-0.1.0/crates/fusion-core/src/router.rs +128 -0
- fusion_framework-0.1.0/crates/fusion-core/src/server.rs +90 -0
- fusion_framework-0.1.0/crates/fusion-py/Cargo.toml +15 -0
- fusion_framework-0.1.0/crates/fusion-py/README.md +13 -0
- fusion_framework-0.1.0/crates/fusion-py/src/lib.rs +140 -0
- fusion_framework-0.1.0/pyproject.toml +33 -0
- fusion_framework-0.1.0/python/fusion_framework/__init__.py +5 -0
- fusion_framework-0.1.0/python/fusion_framework/api.py +52 -0
- fusion_framework-0.1.0/python/fusion_framework/app.py +66 -0
- fusion_framework-0.1.0/python/fusion_framework/config.py +269 -0
- fusion_framework-0.1.0/python/fusion_framework/route.py +94 -0
|
@@ -0,0 +1,861 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "atomic-waker"
|
|
16
|
+
version = "1.1.2"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.5.1"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "base64"
|
|
28
|
+
version = "0.22.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bitflags"
|
|
34
|
+
version = "2.13.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bytes"
|
|
40
|
+
version = "1.12.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cfg-if"
|
|
46
|
+
version = "1.0.4"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "convert_case"
|
|
52
|
+
version = "0.6.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"unicode-segmentation",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "core-foundation"
|
|
61
|
+
version = "0.9.4"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"core-foundation-sys",
|
|
66
|
+
"libc",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "core-foundation-sys"
|
|
71
|
+
version = "0.8.7"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "ctor"
|
|
77
|
+
version = "0.2.9"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"quote",
|
|
82
|
+
"syn 2.0.119",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "equivalent"
|
|
87
|
+
version = "1.0.2"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "errno"
|
|
93
|
+
version = "0.3.14"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"libc",
|
|
98
|
+
"windows-sys",
|
|
99
|
+
]
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "fnv"
|
|
103
|
+
version = "1.0.7"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "fusion-core"
|
|
109
|
+
version = "0.1.0"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"bytes",
|
|
112
|
+
"http",
|
|
113
|
+
"http-body-util",
|
|
114
|
+
"hyper",
|
|
115
|
+
"hyper-util",
|
|
116
|
+
"tokio",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "fusion-node"
|
|
121
|
+
version = "0.1.0"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"bytes",
|
|
124
|
+
"fusion-core",
|
|
125
|
+
"napi",
|
|
126
|
+
"napi-build",
|
|
127
|
+
"napi-derive",
|
|
128
|
+
"tokio",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "fusion-py"
|
|
133
|
+
version = "0.1.0"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"bytes",
|
|
136
|
+
"fusion-core",
|
|
137
|
+
"pyo3",
|
|
138
|
+
"tokio",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "futures-channel"
|
|
143
|
+
version = "0.3.33"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"futures-core",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "futures-core"
|
|
152
|
+
version = "0.3.33"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "futures-sink"
|
|
158
|
+
version = "0.3.33"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "futures-task"
|
|
164
|
+
version = "0.3.33"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "futures-util"
|
|
170
|
+
version = "0.3.33"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"futures-core",
|
|
175
|
+
"futures-task",
|
|
176
|
+
"pin-project-lite",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "h2"
|
|
181
|
+
version = "0.4.15"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"atomic-waker",
|
|
186
|
+
"bytes",
|
|
187
|
+
"fnv",
|
|
188
|
+
"futures-core",
|
|
189
|
+
"futures-sink",
|
|
190
|
+
"http",
|
|
191
|
+
"indexmap",
|
|
192
|
+
"slab",
|
|
193
|
+
"tokio",
|
|
194
|
+
"tokio-util",
|
|
195
|
+
"tracing",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "hashbrown"
|
|
200
|
+
version = "0.17.1"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "heck"
|
|
206
|
+
version = "0.5.0"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "http"
|
|
212
|
+
version = "1.5.0"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"bytes",
|
|
217
|
+
"itoa",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "http-body"
|
|
222
|
+
version = "1.1.0"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"bytes",
|
|
227
|
+
"http",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "http-body-util"
|
|
232
|
+
version = "0.1.4"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"bytes",
|
|
237
|
+
"futures-core",
|
|
238
|
+
"http",
|
|
239
|
+
"http-body",
|
|
240
|
+
"pin-project-lite",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "httparse"
|
|
245
|
+
version = "1.10.1"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "httpdate"
|
|
251
|
+
version = "1.0.3"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "hyper"
|
|
257
|
+
version = "1.11.0"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"atomic-waker",
|
|
262
|
+
"bytes",
|
|
263
|
+
"futures-channel",
|
|
264
|
+
"futures-core",
|
|
265
|
+
"h2",
|
|
266
|
+
"http",
|
|
267
|
+
"http-body",
|
|
268
|
+
"httparse",
|
|
269
|
+
"httpdate",
|
|
270
|
+
"itoa",
|
|
271
|
+
"pin-project-lite",
|
|
272
|
+
"smallvec",
|
|
273
|
+
"tokio",
|
|
274
|
+
"want",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "hyper-util"
|
|
279
|
+
version = "0.1.20"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"base64",
|
|
284
|
+
"bytes",
|
|
285
|
+
"futures-channel",
|
|
286
|
+
"futures-util",
|
|
287
|
+
"http",
|
|
288
|
+
"http-body",
|
|
289
|
+
"hyper",
|
|
290
|
+
"ipnet",
|
|
291
|
+
"libc",
|
|
292
|
+
"percent-encoding",
|
|
293
|
+
"pin-project-lite",
|
|
294
|
+
"socket2",
|
|
295
|
+
"system-configuration",
|
|
296
|
+
"tokio",
|
|
297
|
+
"tower-layer",
|
|
298
|
+
"tower-service",
|
|
299
|
+
"tracing",
|
|
300
|
+
"windows-registry",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "indexmap"
|
|
305
|
+
version = "2.14.0"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"equivalent",
|
|
310
|
+
"hashbrown",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "indoc"
|
|
315
|
+
version = "2.0.7"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"rustversion",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "ipnet"
|
|
324
|
+
version = "2.12.1"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "itoa"
|
|
330
|
+
version = "1.0.18"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "libc"
|
|
336
|
+
version = "0.2.189"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "libloading"
|
|
342
|
+
version = "0.8.9"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"cfg-if",
|
|
347
|
+
"windows-link",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "lock_api"
|
|
352
|
+
version = "0.4.14"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"scopeguard",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "memchr"
|
|
361
|
+
version = "2.8.3"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "memoffset"
|
|
367
|
+
version = "0.9.1"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"autocfg",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "mio"
|
|
376
|
+
version = "1.2.2"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"libc",
|
|
381
|
+
"wasi",
|
|
382
|
+
"windows-sys",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "napi"
|
|
387
|
+
version = "2.16.17"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"bitflags",
|
|
392
|
+
"ctor",
|
|
393
|
+
"napi-derive",
|
|
394
|
+
"napi-sys",
|
|
395
|
+
"once_cell",
|
|
396
|
+
"tokio",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "napi-build"
|
|
401
|
+
version = "2.4.0"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "5282704fbe8d49b0cf8b08e3f33233416a528658f205c7e5ace63b582de0b11c"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "napi-derive"
|
|
407
|
+
version = "2.16.13"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"cfg-if",
|
|
412
|
+
"convert_case",
|
|
413
|
+
"napi-derive-backend",
|
|
414
|
+
"proc-macro2",
|
|
415
|
+
"quote",
|
|
416
|
+
"syn 2.0.119",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "napi-derive-backend"
|
|
421
|
+
version = "1.0.75"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"convert_case",
|
|
426
|
+
"once_cell",
|
|
427
|
+
"proc-macro2",
|
|
428
|
+
"quote",
|
|
429
|
+
"regex",
|
|
430
|
+
"semver",
|
|
431
|
+
"syn 2.0.119",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "napi-sys"
|
|
436
|
+
version = "2.4.0"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"libloading",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "once_cell"
|
|
445
|
+
version = "1.21.4"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "parking_lot"
|
|
451
|
+
version = "0.12.5"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"lock_api",
|
|
456
|
+
"parking_lot_core",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "parking_lot_core"
|
|
461
|
+
version = "0.9.12"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"cfg-if",
|
|
466
|
+
"libc",
|
|
467
|
+
"redox_syscall",
|
|
468
|
+
"smallvec",
|
|
469
|
+
"windows-link",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "percent-encoding"
|
|
474
|
+
version = "2.3.2"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "pin-project-lite"
|
|
480
|
+
version = "0.2.17"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "portable-atomic"
|
|
486
|
+
version = "1.14.0"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "proc-macro2"
|
|
492
|
+
version = "1.0.107"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"unicode-ident",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "pyo3"
|
|
501
|
+
version = "0.25.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"indoc",
|
|
506
|
+
"libc",
|
|
507
|
+
"memoffset",
|
|
508
|
+
"once_cell",
|
|
509
|
+
"portable-atomic",
|
|
510
|
+
"pyo3-build-config",
|
|
511
|
+
"pyo3-ffi",
|
|
512
|
+
"pyo3-macros",
|
|
513
|
+
"unindent",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "pyo3-build-config"
|
|
518
|
+
version = "0.25.1"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"once_cell",
|
|
523
|
+
"target-lexicon",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "pyo3-ffi"
|
|
528
|
+
version = "0.25.1"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"libc",
|
|
533
|
+
"pyo3-build-config",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "pyo3-macros"
|
|
538
|
+
version = "0.25.1"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
541
|
+
dependencies = [
|
|
542
|
+
"proc-macro2",
|
|
543
|
+
"pyo3-macros-backend",
|
|
544
|
+
"quote",
|
|
545
|
+
"syn 2.0.119",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "pyo3-macros-backend"
|
|
550
|
+
version = "0.25.1"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"heck",
|
|
555
|
+
"proc-macro2",
|
|
556
|
+
"pyo3-build-config",
|
|
557
|
+
"quote",
|
|
558
|
+
"syn 2.0.119",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "quote"
|
|
563
|
+
version = "1.0.47"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"proc-macro2",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "redox_syscall"
|
|
572
|
+
version = "0.5.18"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"bitflags",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "regex"
|
|
581
|
+
version = "1.13.1"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"aho-corasick",
|
|
586
|
+
"memchr",
|
|
587
|
+
"regex-automata",
|
|
588
|
+
"regex-syntax",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "regex-automata"
|
|
593
|
+
version = "0.4.16"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"aho-corasick",
|
|
598
|
+
"memchr",
|
|
599
|
+
"regex-syntax",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "regex-syntax"
|
|
604
|
+
version = "0.8.11"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "rustversion"
|
|
610
|
+
version = "1.0.23"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "scopeguard"
|
|
616
|
+
version = "1.2.0"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "semver"
|
|
622
|
+
version = "1.0.28"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "signal-hook-registry"
|
|
628
|
+
version = "1.4.8"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"errno",
|
|
633
|
+
"libc",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "slab"
|
|
638
|
+
version = "0.4.12"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "smallvec"
|
|
644
|
+
version = "1.15.2"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "socket2"
|
|
650
|
+
version = "0.6.5"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"libc",
|
|
655
|
+
"windows-sys",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "syn"
|
|
660
|
+
version = "2.0.119"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"proc-macro2",
|
|
665
|
+
"quote",
|
|
666
|
+
"unicode-ident",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "syn"
|
|
671
|
+
version = "3.0.3"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"proc-macro2",
|
|
676
|
+
"quote",
|
|
677
|
+
"unicode-ident",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "system-configuration"
|
|
682
|
+
version = "0.7.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"bitflags",
|
|
687
|
+
"core-foundation",
|
|
688
|
+
"system-configuration-sys",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "system-configuration-sys"
|
|
693
|
+
version = "0.6.0"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"core-foundation-sys",
|
|
698
|
+
"libc",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "target-lexicon"
|
|
703
|
+
version = "0.13.5"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "tokio"
|
|
709
|
+
version = "1.53.1"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"bytes",
|
|
714
|
+
"libc",
|
|
715
|
+
"mio",
|
|
716
|
+
"parking_lot",
|
|
717
|
+
"pin-project-lite",
|
|
718
|
+
"signal-hook-registry",
|
|
719
|
+
"socket2",
|
|
720
|
+
"tokio-macros",
|
|
721
|
+
"windows-sys",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "tokio-macros"
|
|
726
|
+
version = "2.7.2"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"proc-macro2",
|
|
731
|
+
"quote",
|
|
732
|
+
"syn 3.0.3",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "tokio-util"
|
|
737
|
+
version = "0.7.19"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"bytes",
|
|
742
|
+
"futures-core",
|
|
743
|
+
"futures-sink",
|
|
744
|
+
"libc",
|
|
745
|
+
"pin-project-lite",
|
|
746
|
+
"tokio",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "tower-layer"
|
|
751
|
+
version = "0.3.3"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "tower-service"
|
|
757
|
+
version = "0.3.3"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "tracing"
|
|
763
|
+
version = "0.1.44"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"pin-project-lite",
|
|
768
|
+
"tracing-core",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "tracing-core"
|
|
773
|
+
version = "0.1.36"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"once_cell",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "try-lock"
|
|
782
|
+
version = "0.2.5"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "unicode-ident"
|
|
788
|
+
version = "1.0.24"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "unicode-segmentation"
|
|
794
|
+
version = "1.13.3"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "unindent"
|
|
800
|
+
version = "0.2.4"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "want"
|
|
806
|
+
version = "0.3.1"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"try-lock",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "wasi"
|
|
815
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "windows-link"
|
|
821
|
+
version = "0.2.1"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "windows-registry"
|
|
827
|
+
version = "0.6.1"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"windows-link",
|
|
832
|
+
"windows-result",
|
|
833
|
+
"windows-strings",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "windows-result"
|
|
838
|
+
version = "0.4.1"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"windows-link",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "windows-strings"
|
|
847
|
+
version = "0.5.1"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"windows-link",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "windows-sys"
|
|
856
|
+
version = "0.61.2"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"windows-link",
|
|
861
|
+
]
|