instro-ethernetip 0.2.1__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.
- instro_ethernetip-0.2.1/Cargo.lock +918 -0
- instro_ethernetip-0.2.1/Cargo.toml +3 -0
- instro_ethernetip-0.2.1/LICENSE +201 -0
- instro_ethernetip-0.2.1/PKG-INFO +8 -0
- instro_ethernetip-0.2.1/instro/py.typed +1 -0
- instro_ethernetip-0.2.1/instro/unstable/_ethernetip.pyi +164 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/CHANGELOG.md +20 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/Cargo.toml +15 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/LICENSE +201 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/README.md +136 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/src/errors.rs +194 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/src/lib.rs +40 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/src/sync_session.rs +174 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip/src/values.rs +387 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/Cargo.lock +836 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/Cargo.toml +23 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/LICENSE +201 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/src/blocking.rs +176 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/src/error.rs +119 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/src/lib.rs +1491 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/src/mock_client.rs +149 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/src/value.rs +255 -0
- instro_ethernetip-0.2.1/packages/instro-ethernetip-rs/tests/explicit_session_integration.rs +565 -0
- instro_ethernetip-0.2.1/pyproject.toml +21 -0
|
@@ -0,0 +1,918 @@
|
|
|
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 = "anyhow"
|
|
16
|
+
version = "1.0.102"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "async-stream"
|
|
22
|
+
version = "0.3.6"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"async-stream-impl",
|
|
27
|
+
"futures-core",
|
|
28
|
+
"pin-project-lite",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "async-stream-impl"
|
|
33
|
+
version = "0.3.6"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"proc-macro2",
|
|
38
|
+
"quote",
|
|
39
|
+
"syn",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "async-trait"
|
|
44
|
+
version = "0.1.89"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"proc-macro2",
|
|
49
|
+
"quote",
|
|
50
|
+
"syn",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "bitflags"
|
|
55
|
+
version = "2.11.1"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "bytes"
|
|
61
|
+
version = "1.11.1"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "cfg-if"
|
|
67
|
+
version = "1.0.4"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "deranged"
|
|
73
|
+
version = "0.5.8"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"powerfmt",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "env_logger"
|
|
82
|
+
version = "0.10.2"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
|
85
|
+
dependencies = [
|
|
86
|
+
"humantime",
|
|
87
|
+
"is-terminal",
|
|
88
|
+
"log",
|
|
89
|
+
"regex",
|
|
90
|
+
"termcolor",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "equivalent"
|
|
95
|
+
version = "1.0.2"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "errno"
|
|
101
|
+
version = "0.3.14"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"libc",
|
|
106
|
+
"windows-sys",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "futures"
|
|
111
|
+
version = "0.3.32"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"futures-channel",
|
|
116
|
+
"futures-core",
|
|
117
|
+
"futures-executor",
|
|
118
|
+
"futures-io",
|
|
119
|
+
"futures-sink",
|
|
120
|
+
"futures-task",
|
|
121
|
+
"futures-util",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "futures-channel"
|
|
126
|
+
version = "0.3.32"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"futures-core",
|
|
131
|
+
"futures-sink",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "futures-core"
|
|
136
|
+
version = "0.3.32"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "futures-executor"
|
|
142
|
+
version = "0.3.32"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"futures-core",
|
|
147
|
+
"futures-task",
|
|
148
|
+
"futures-util",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "futures-io"
|
|
153
|
+
version = "0.3.32"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "futures-macro"
|
|
159
|
+
version = "0.3.32"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"proc-macro2",
|
|
164
|
+
"quote",
|
|
165
|
+
"syn",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "futures-sink"
|
|
170
|
+
version = "0.3.32"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "futures-task"
|
|
176
|
+
version = "0.3.32"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "futures-util"
|
|
182
|
+
version = "0.3.32"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"futures-channel",
|
|
187
|
+
"futures-core",
|
|
188
|
+
"futures-io",
|
|
189
|
+
"futures-macro",
|
|
190
|
+
"futures-sink",
|
|
191
|
+
"futures-task",
|
|
192
|
+
"memchr",
|
|
193
|
+
"pin-project-lite",
|
|
194
|
+
"slab",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "hashbrown"
|
|
199
|
+
version = "0.17.1"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "heck"
|
|
205
|
+
version = "0.5.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "hermit-abi"
|
|
211
|
+
version = "0.5.2"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "humantime"
|
|
217
|
+
version = "2.3.0"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "indexmap"
|
|
223
|
+
version = "2.14.0"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"equivalent",
|
|
228
|
+
"hashbrown",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "instro-ethernetip"
|
|
233
|
+
version = "0.1.0"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"instro-ethernetip-rs",
|
|
236
|
+
"pyo3",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "instro-ethernetip-rs"
|
|
241
|
+
version = "0.1.0"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"rust-ethernet-ip",
|
|
244
|
+
"thiserror",
|
|
245
|
+
"tokio",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "is-terminal"
|
|
250
|
+
version = "0.4.17"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"hermit-abi",
|
|
255
|
+
"libc",
|
|
256
|
+
"windows-sys",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "itoa"
|
|
261
|
+
version = "1.0.18"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "lazy_static"
|
|
267
|
+
version = "1.5.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "libc"
|
|
273
|
+
version = "0.2.186"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "lock_api"
|
|
279
|
+
version = "0.4.14"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"scopeguard",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "log"
|
|
288
|
+
version = "0.4.29"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "matchers"
|
|
294
|
+
version = "0.2.0"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"regex-automata",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "memchr"
|
|
303
|
+
version = "2.8.0"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "mio"
|
|
309
|
+
version = "1.2.0"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"libc",
|
|
314
|
+
"wasi",
|
|
315
|
+
"windows-sys",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "nu-ansi-term"
|
|
320
|
+
version = "0.50.3"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"windows-sys",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "num-conv"
|
|
329
|
+
version = "0.2.1"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "num_threads"
|
|
335
|
+
version = "0.1.7"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"libc",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "once_cell"
|
|
344
|
+
version = "1.21.4"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "parking_lot"
|
|
350
|
+
version = "0.12.5"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"lock_api",
|
|
355
|
+
"parking_lot_core",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "parking_lot_core"
|
|
360
|
+
version = "0.9.12"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"cfg-if",
|
|
365
|
+
"libc",
|
|
366
|
+
"redox_syscall",
|
|
367
|
+
"smallvec",
|
|
368
|
+
"windows-link",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "pin-project-lite"
|
|
373
|
+
version = "0.2.17"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "portable-atomic"
|
|
379
|
+
version = "1.13.1"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "powerfmt"
|
|
385
|
+
version = "0.2.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "proc-macro2"
|
|
391
|
+
version = "1.0.106"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"unicode-ident",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "pyo3"
|
|
400
|
+
version = "0.28.3"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"libc",
|
|
405
|
+
"once_cell",
|
|
406
|
+
"portable-atomic",
|
|
407
|
+
"pyo3-build-config",
|
|
408
|
+
"pyo3-ffi",
|
|
409
|
+
"pyo3-macros",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "pyo3-build-config"
|
|
414
|
+
version = "0.28.3"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"target-lexicon",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "pyo3-ffi"
|
|
423
|
+
version = "0.28.3"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"libc",
|
|
428
|
+
"pyo3-build-config",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "pyo3-macros"
|
|
433
|
+
version = "0.28.3"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"proc-macro2",
|
|
438
|
+
"pyo3-macros-backend",
|
|
439
|
+
"quote",
|
|
440
|
+
"syn",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "pyo3-macros-backend"
|
|
445
|
+
version = "0.28.3"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"heck",
|
|
450
|
+
"proc-macro2",
|
|
451
|
+
"pyo3-build-config",
|
|
452
|
+
"quote",
|
|
453
|
+
"syn",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "quote"
|
|
458
|
+
version = "1.0.45"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"proc-macro2",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "redox_syscall"
|
|
467
|
+
version = "0.5.18"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"bitflags",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "regex"
|
|
476
|
+
version = "1.12.3"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"aho-corasick",
|
|
481
|
+
"memchr",
|
|
482
|
+
"regex-automata",
|
|
483
|
+
"regex-syntax",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "regex-automata"
|
|
488
|
+
version = "0.4.14"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"aho-corasick",
|
|
493
|
+
"memchr",
|
|
494
|
+
"regex-syntax",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "regex-syntax"
|
|
499
|
+
version = "0.8.10"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "rust-ethernet-ip"
|
|
505
|
+
version = "0.7.0"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "09472411754c67125542f5d8674dda1d6b41f597b3d4730c2ab472661fa55373"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"async-stream",
|
|
510
|
+
"async-trait",
|
|
511
|
+
"bytes",
|
|
512
|
+
"env_logger",
|
|
513
|
+
"futures",
|
|
514
|
+
"lazy_static",
|
|
515
|
+
"libc",
|
|
516
|
+
"log",
|
|
517
|
+
"regex",
|
|
518
|
+
"serde",
|
|
519
|
+
"serde_json",
|
|
520
|
+
"thiserror",
|
|
521
|
+
"tokio",
|
|
522
|
+
"toml",
|
|
523
|
+
"tracing",
|
|
524
|
+
"tracing-subscriber",
|
|
525
|
+
"vergen",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "rustversion"
|
|
530
|
+
version = "1.0.22"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "scopeguard"
|
|
536
|
+
version = "1.2.0"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "serde"
|
|
542
|
+
version = "1.0.228"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"serde_core",
|
|
547
|
+
"serde_derive",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "serde_core"
|
|
552
|
+
version = "1.0.228"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"serde_derive",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "serde_derive"
|
|
561
|
+
version = "1.0.228"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"proc-macro2",
|
|
566
|
+
"quote",
|
|
567
|
+
"syn",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "serde_json"
|
|
572
|
+
version = "1.0.149"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"itoa",
|
|
577
|
+
"memchr",
|
|
578
|
+
"serde",
|
|
579
|
+
"serde_core",
|
|
580
|
+
"zmij",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "serde_spanned"
|
|
585
|
+
version = "0.6.9"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"serde",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "sharded-slab"
|
|
594
|
+
version = "0.1.7"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"lazy_static",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "signal-hook-registry"
|
|
603
|
+
version = "1.4.8"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
606
|
+
dependencies = [
|
|
607
|
+
"errno",
|
|
608
|
+
"libc",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "slab"
|
|
613
|
+
version = "0.4.12"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "smallvec"
|
|
619
|
+
version = "1.15.1"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "socket2"
|
|
625
|
+
version = "0.6.3"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"libc",
|
|
630
|
+
"windows-sys",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "syn"
|
|
635
|
+
version = "2.0.117"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"proc-macro2",
|
|
640
|
+
"quote",
|
|
641
|
+
"unicode-ident",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "target-lexicon"
|
|
646
|
+
version = "0.13.5"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "termcolor"
|
|
652
|
+
version = "1.4.1"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"winapi-util",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "thiserror"
|
|
661
|
+
version = "1.0.69"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"thiserror-impl",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "thiserror-impl"
|
|
670
|
+
version = "1.0.69"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"proc-macro2",
|
|
675
|
+
"quote",
|
|
676
|
+
"syn",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "thread_local"
|
|
681
|
+
version = "1.1.9"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"cfg-if",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "time"
|
|
690
|
+
version = "0.3.47"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"deranged",
|
|
695
|
+
"itoa",
|
|
696
|
+
"libc",
|
|
697
|
+
"num-conv",
|
|
698
|
+
"num_threads",
|
|
699
|
+
"powerfmt",
|
|
700
|
+
"serde_core",
|
|
701
|
+
"time-core",
|
|
702
|
+
"time-macros",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "time-core"
|
|
707
|
+
version = "0.1.8"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "time-macros"
|
|
713
|
+
version = "0.2.27"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"num-conv",
|
|
718
|
+
"time-core",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "tokio"
|
|
723
|
+
version = "1.52.3"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"bytes",
|
|
728
|
+
"libc",
|
|
729
|
+
"mio",
|
|
730
|
+
"parking_lot",
|
|
731
|
+
"pin-project-lite",
|
|
732
|
+
"signal-hook-registry",
|
|
733
|
+
"socket2",
|
|
734
|
+
"tokio-macros",
|
|
735
|
+
"windows-sys",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "tokio-macros"
|
|
740
|
+
version = "2.7.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"proc-macro2",
|
|
745
|
+
"quote",
|
|
746
|
+
"syn",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "toml"
|
|
751
|
+
version = "0.8.23"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"serde",
|
|
756
|
+
"serde_spanned",
|
|
757
|
+
"toml_datetime",
|
|
758
|
+
"toml_edit",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "toml_datetime"
|
|
763
|
+
version = "0.6.11"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"serde",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "toml_edit"
|
|
772
|
+
version = "0.22.27"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"indexmap",
|
|
777
|
+
"serde",
|
|
778
|
+
"serde_spanned",
|
|
779
|
+
"toml_datetime",
|
|
780
|
+
"toml_write",
|
|
781
|
+
"winnow",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "toml_write"
|
|
786
|
+
version = "0.1.2"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "tracing"
|
|
792
|
+
version = "0.1.44"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"pin-project-lite",
|
|
797
|
+
"tracing-attributes",
|
|
798
|
+
"tracing-core",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "tracing-attributes"
|
|
803
|
+
version = "0.1.31"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"proc-macro2",
|
|
808
|
+
"quote",
|
|
809
|
+
"syn",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "tracing-core"
|
|
814
|
+
version = "0.1.36"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"once_cell",
|
|
819
|
+
"valuable",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "tracing-log"
|
|
824
|
+
version = "0.2.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"log",
|
|
829
|
+
"once_cell",
|
|
830
|
+
"tracing-core",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "tracing-subscriber"
|
|
835
|
+
version = "0.3.23"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"matchers",
|
|
840
|
+
"nu-ansi-term",
|
|
841
|
+
"once_cell",
|
|
842
|
+
"regex-automata",
|
|
843
|
+
"sharded-slab",
|
|
844
|
+
"smallvec",
|
|
845
|
+
"thread_local",
|
|
846
|
+
"tracing",
|
|
847
|
+
"tracing-core",
|
|
848
|
+
"tracing-log",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "unicode-ident"
|
|
853
|
+
version = "1.0.24"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "valuable"
|
|
859
|
+
version = "0.1.1"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "vergen"
|
|
865
|
+
version = "8.3.2"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "2990d9ea5967266ea0ccf413a4aa5c42a93dbcfda9cb49a97de6931726b12566"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"anyhow",
|
|
870
|
+
"cfg-if",
|
|
871
|
+
"rustversion",
|
|
872
|
+
"time",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "wasi"
|
|
877
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "winapi-util"
|
|
883
|
+
version = "0.1.11"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"windows-sys",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "windows-link"
|
|
892
|
+
version = "0.2.1"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "windows-sys"
|
|
898
|
+
version = "0.61.2"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"windows-link",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "winnow"
|
|
907
|
+
version = "0.7.15"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"memchr",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "zmij"
|
|
916
|
+
version = "1.0.21"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|