wasmtime 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +941 -627
- data/Cargo.toml +2 -14
- data/LICENSE +23 -21
- data/README.md +47 -118
- data/ext/Cargo.toml +17 -0
- data/ext/extconf.rb +6 -0
- data/ext/src/helpers/mod.rs +3 -0
- data/ext/src/helpers/wrapped_struct.rs +84 -0
- data/ext/src/lib.rs +9 -0
- data/ext/src/ruby_api/config.rs +68 -0
- data/ext/src/ruby_api/convert.rs +92 -0
- data/ext/src/ruby_api/engine.rs +66 -0
- data/ext/src/ruby_api/errors.rs +56 -0
- data/ext/src/ruby_api/externals.rs +113 -0
- data/ext/src/ruby_api/func.rs +388 -0
- data/ext/src/ruby_api/func_type.rs +139 -0
- data/ext/src/ruby_api/instance.rs +174 -0
- data/ext/src/ruby_api/linker.rs +296 -0
- data/ext/src/ruby_api/macros.rs +12 -0
- data/ext/src/ruby_api/memory.rs +142 -0
- data/ext/src/ruby_api/memory_type.rs +56 -0
- data/ext/src/ruby_api/mod.rs +48 -0
- data/ext/src/ruby_api/module.rs +107 -0
- data/ext/src/ruby_api/params.rs +42 -0
- data/ext/src/ruby_api/static_id.rs +57 -0
- data/ext/src/ruby_api/store.rs +182 -0
- data/ext/src/ruby_api/trap.rs +135 -0
- data/lib/wasmtime/version.rb +1 -1
- data/lib/wasmtime.rb +29 -4
- metadata +54 -30
- data/.cargo/config +0 -4
- data/CHANGELOG.md +0 -27
- data/ext/wasmtime/Makefile +0 -5
- data/ext/wasmtime/Rakefile +0 -3
- data/ext/wasmtime/extconf.rb +0 -5
- data/lib/tasks/compile.rake +0 -27
- data/lib/wasmtime/refinements.rb +0 -20
- data/lib/wasmtime/require.rb +0 -72
- data/src/export.rs +0 -19
- data/src/func.rs +0 -175
- data/src/instance.rs +0 -93
- data/src/lib.rs +0 -22
- data/src/memory.rs +0 -48
- data/src/ruby_type.rs +0 -32
- data/src/vm.rs +0 -6
data/Cargo.lock
CHANGED
@@ -1,1197 +1,1511 @@
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
2
2
|
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
3
5
|
[[package]]
|
4
|
-
name = "
|
5
|
-
version = "
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.17.0"
|
6
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "ahash"
|
16
|
+
version = "0.7.6"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
19
|
+
dependencies = [
|
20
|
+
"getrandom",
|
21
|
+
"once_cell",
|
22
|
+
"version_check",
|
23
|
+
]
|
7
24
|
|
8
25
|
[[package]]
|
9
26
|
name = "aho-corasick"
|
10
|
-
version = "0.7.
|
27
|
+
version = "0.7.19"
|
11
28
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
29
|
+
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
|
12
30
|
dependencies = [
|
13
|
-
"memchr
|
31
|
+
"memchr",
|
14
32
|
]
|
15
33
|
|
16
34
|
[[package]]
|
17
35
|
name = "anyhow"
|
18
|
-
version = "1.0.
|
36
|
+
version = "1.0.66"
|
19
37
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
+
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
|
20
39
|
|
21
40
|
[[package]]
|
22
|
-
name = "
|
23
|
-
version = "0.
|
41
|
+
name = "arrayvec"
|
42
|
+
version = "0.7.2"
|
24
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
|
25
45
|
|
26
46
|
[[package]]
|
27
|
-
name = "
|
28
|
-
version = "0.
|
47
|
+
name = "async-trait"
|
48
|
+
version = "0.1.58"
|
29
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
|
51
|
+
dependencies = [
|
52
|
+
"proc-macro2",
|
53
|
+
"quote",
|
54
|
+
"syn",
|
55
|
+
]
|
30
56
|
|
31
57
|
[[package]]
|
32
58
|
name = "atty"
|
33
59
|
version = "0.2.14"
|
34
60
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
61
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
35
62
|
dependencies = [
|
36
|
-
"hermit-abi
|
37
|
-
"libc
|
38
|
-
"winapi
|
63
|
+
"hermit-abi",
|
64
|
+
"libc",
|
65
|
+
"winapi",
|
39
66
|
]
|
40
67
|
|
41
68
|
[[package]]
|
42
69
|
name = "autocfg"
|
43
|
-
version = "1.
|
70
|
+
version = "1.1.0"
|
44
71
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
45
73
|
|
46
74
|
[[package]]
|
47
|
-
name = "
|
48
|
-
version = "0.
|
75
|
+
name = "base64"
|
76
|
+
version = "0.13.1"
|
49
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
|
51
|
-
"backtrace-sys 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)",
|
52
|
-
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
53
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
54
|
-
"rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
55
|
-
]
|
78
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
56
79
|
|
57
80
|
[[package]]
|
58
|
-
name = "
|
59
|
-
version = "
|
81
|
+
name = "bincode"
|
82
|
+
version = "1.3.3"
|
60
83
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
61
85
|
dependencies = [
|
62
|
-
"
|
63
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
86
|
+
"serde",
|
64
87
|
]
|
65
88
|
|
66
89
|
[[package]]
|
67
|
-
name = "
|
68
|
-
version = "0.
|
90
|
+
name = "bindgen"
|
91
|
+
version = "0.60.1"
|
69
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
93
|
+
checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
|
94
|
+
dependencies = [
|
95
|
+
"bitflags",
|
96
|
+
"cexpr",
|
97
|
+
"clang-sys",
|
98
|
+
"lazy_static",
|
99
|
+
"lazycell",
|
100
|
+
"peeking_take_while",
|
101
|
+
"proc-macro2",
|
102
|
+
"quote",
|
103
|
+
"regex",
|
104
|
+
"rustc-hash",
|
105
|
+
"shlex",
|
106
|
+
]
|
70
107
|
|
71
108
|
[[package]]
|
72
|
-
name = "
|
73
|
-
version = "
|
109
|
+
name = "bitflags"
|
110
|
+
version = "1.3.2"
|
74
111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
112
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
75
113
|
|
76
114
|
[[package]]
|
77
|
-
name = "
|
78
|
-
version = "
|
115
|
+
name = "block-buffer"
|
116
|
+
version = "0.10.3"
|
79
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
118
|
+
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
|
80
119
|
dependencies = [
|
81
|
-
"
|
82
|
-
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
120
|
+
"generic-array",
|
83
121
|
]
|
84
122
|
|
85
123
|
[[package]]
|
86
|
-
name = "
|
87
|
-
version = "
|
124
|
+
name = "bumpalo"
|
125
|
+
version = "3.11.1"
|
88
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
|
89
128
|
|
90
129
|
[[package]]
|
91
|
-
name = "
|
92
|
-
version = "
|
130
|
+
name = "byteorder"
|
131
|
+
version = "1.4.3"
|
93
132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
-
|
95
|
-
"arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
96
|
-
"arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
97
|
-
"constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
98
|
-
]
|
133
|
+
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
99
134
|
|
100
135
|
[[package]]
|
101
|
-
name = "
|
102
|
-
version = "0.
|
136
|
+
name = "cc"
|
137
|
+
version = "1.0.76"
|
103
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
139
|
+
checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
|
104
140
|
dependencies = [
|
105
|
-
"
|
106
|
-
"byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
107
|
-
"byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
108
|
-
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
141
|
+
"jobserver",
|
109
142
|
]
|
110
143
|
|
111
144
|
[[package]]
|
112
|
-
name = "
|
113
|
-
version = "0.
|
145
|
+
name = "cexpr"
|
146
|
+
version = "0.6.0"
|
114
147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
148
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
115
149
|
dependencies = [
|
116
|
-
"
|
150
|
+
"nom",
|
117
151
|
]
|
118
152
|
|
119
153
|
[[package]]
|
120
|
-
name = "
|
121
|
-
version = "0.
|
122
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
-
|
124
|
-
[[package]]
|
125
|
-
name = "byteorder"
|
126
|
-
version = "1.3.4"
|
154
|
+
name = "cfg-if"
|
155
|
+
version = "1.0.0"
|
127
156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
128
158
|
|
129
159
|
[[package]]
|
130
|
-
name = "
|
131
|
-
version = "1.0
|
160
|
+
name = "clang-sys"
|
161
|
+
version = "1.4.0"
|
132
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
+
checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
|
133
164
|
dependencies = [
|
134
|
-
"
|
165
|
+
"glob",
|
166
|
+
"libc",
|
167
|
+
"libloading",
|
135
168
|
]
|
136
169
|
|
137
170
|
[[package]]
|
138
|
-
name = "
|
139
|
-
version = "0.
|
171
|
+
name = "cpp_demangle"
|
172
|
+
version = "0.3.5"
|
140
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
174
|
+
checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
|
175
|
+
dependencies = [
|
176
|
+
"cfg-if",
|
177
|
+
]
|
141
178
|
|
142
179
|
[[package]]
|
143
|
-
name = "
|
144
|
-
version = "0.
|
180
|
+
name = "cpufeatures"
|
181
|
+
version = "0.2.5"
|
145
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
|
+
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
|
184
|
+
dependencies = [
|
185
|
+
"libc",
|
186
|
+
]
|
146
187
|
|
147
188
|
[[package]]
|
148
189
|
name = "cranelift-bforest"
|
149
|
-
version = "0.
|
190
|
+
version = "0.90.0"
|
150
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
+
checksum = "c200df7d943cd2b8cb3a67f6a56781c63849f122d74deff24d1767c3918b0bdc"
|
151
193
|
dependencies = [
|
152
|
-
"cranelift-entity
|
194
|
+
"cranelift-entity",
|
153
195
|
]
|
154
196
|
|
155
197
|
[[package]]
|
156
198
|
name = "cranelift-codegen"
|
157
|
-
version = "0.
|
199
|
+
version = "0.90.0"
|
158
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
201
|
+
checksum = "f365623f4c3d576f47f11868568d0c90e18ac169497a9ed73c433fe2d3f9f2fb"
|
159
202
|
dependencies = [
|
160
|
-
"
|
161
|
-
"
|
162
|
-
"cranelift-
|
163
|
-
"cranelift-codegen-
|
164
|
-
"cranelift-
|
165
|
-
"
|
166
|
-
"
|
167
|
-
"
|
168
|
-
"
|
169
|
-
"
|
170
|
-
"
|
171
|
-
"
|
203
|
+
"arrayvec",
|
204
|
+
"bumpalo",
|
205
|
+
"cranelift-bforest",
|
206
|
+
"cranelift-codegen-meta",
|
207
|
+
"cranelift-codegen-shared",
|
208
|
+
"cranelift-egraph",
|
209
|
+
"cranelift-entity",
|
210
|
+
"cranelift-isle",
|
211
|
+
"gimli",
|
212
|
+
"log",
|
213
|
+
"regalloc2",
|
214
|
+
"smallvec",
|
215
|
+
"target-lexicon",
|
172
216
|
]
|
173
217
|
|
174
218
|
[[package]]
|
175
219
|
name = "cranelift-codegen-meta"
|
176
|
-
version = "0.
|
220
|
+
version = "0.90.0"
|
177
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
222
|
+
checksum = "3cbaf79f8ae63bd86dc40a04417a7cc1691a217f6db204438026c164679b4694"
|
178
223
|
dependencies = [
|
179
|
-
"cranelift-codegen-shared
|
180
|
-
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
224
|
+
"cranelift-codegen-shared",
|
181
225
|
]
|
182
226
|
|
183
227
|
[[package]]
|
184
228
|
name = "cranelift-codegen-shared"
|
185
|
-
version = "0.
|
229
|
+
version = "0.90.0"
|
186
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
+
checksum = "587db55845c943d8211e9c7198a977fa6686b44f18df15f31cec9a12fcf5dda8"
|
232
|
+
|
233
|
+
[[package]]
|
234
|
+
name = "cranelift-egraph"
|
235
|
+
version = "0.90.0"
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
+
checksum = "0a6dccc0b16b7b8c1278162e436beebb35f3d321743b639d2b578138d630f43e"
|
238
|
+
dependencies = [
|
239
|
+
"cranelift-entity",
|
240
|
+
"fxhash",
|
241
|
+
"hashbrown",
|
242
|
+
"indexmap",
|
243
|
+
"log",
|
244
|
+
"smallvec",
|
245
|
+
]
|
187
246
|
|
188
247
|
[[package]]
|
189
248
|
name = "cranelift-entity"
|
190
|
-
version = "0.
|
249
|
+
version = "0.90.0"
|
191
250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
+
checksum = "a1b062935d2c6dba87387d2ac163eb9c54967ed6143c3136fffaba8acb5eaa9e"
|
192
252
|
dependencies = [
|
193
|
-
"serde
|
253
|
+
"serde",
|
194
254
|
]
|
195
255
|
|
196
256
|
[[package]]
|
197
257
|
name = "cranelift-frontend"
|
198
|
-
version = "0.
|
258
|
+
version = "0.90.0"
|
199
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
+
checksum = "476ea81fe736b858d2d2c53b9d9fd28082589f57ebe4e1654a68af7359800a0c"
|
200
261
|
dependencies = [
|
201
|
-
"cranelift-codegen
|
202
|
-
"log
|
203
|
-
"smallvec
|
204
|
-
"target-lexicon
|
262
|
+
"cranelift-codegen",
|
263
|
+
"log",
|
264
|
+
"smallvec",
|
265
|
+
"target-lexicon",
|
205
266
|
]
|
206
267
|
|
268
|
+
[[package]]
|
269
|
+
name = "cranelift-isle"
|
270
|
+
version = "0.90.0"
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
+
checksum = "9c50a465703c15d3d913f6b0db8320c4e92c940f0f0cad874c7fcf5aecc066c0"
|
273
|
+
|
207
274
|
[[package]]
|
208
275
|
name = "cranelift-native"
|
209
|
-
version = "0.
|
276
|
+
version = "0.90.0"
|
210
277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
278
|
+
checksum = "d7d9e0d1382584b8d454ec12c86fd562b64ccd454c1199846c1b7d158db9ed38"
|
211
279
|
dependencies = [
|
212
|
-
"cranelift-codegen
|
213
|
-
"
|
214
|
-
"target-lexicon
|
280
|
+
"cranelift-codegen",
|
281
|
+
"libc",
|
282
|
+
"target-lexicon",
|
215
283
|
]
|
216
284
|
|
217
285
|
[[package]]
|
218
286
|
name = "cranelift-wasm"
|
219
|
-
version = "0.
|
287
|
+
version = "0.90.0"
|
220
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
289
|
+
checksum = "1f54959195c47437544a1a4d2602381949a12918e0179bcc82d909cc34cf08dd"
|
221
290
|
dependencies = [
|
222
|
-
"cranelift-codegen
|
223
|
-
"cranelift-entity
|
224
|
-
"cranelift-frontend
|
225
|
-
"
|
226
|
-
"
|
227
|
-
"
|
228
|
-
"wasmparser
|
291
|
+
"cranelift-codegen",
|
292
|
+
"cranelift-entity",
|
293
|
+
"cranelift-frontend",
|
294
|
+
"itertools",
|
295
|
+
"log",
|
296
|
+
"smallvec",
|
297
|
+
"wasmparser",
|
298
|
+
"wasmtime-types",
|
229
299
|
]
|
230
300
|
|
231
301
|
[[package]]
|
232
302
|
name = "crc32fast"
|
233
|
-
version = "1.2
|
303
|
+
version = "1.3.2"
|
234
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
+
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
235
306
|
dependencies = [
|
236
|
-
"cfg-if
|
307
|
+
"cfg-if",
|
237
308
|
]
|
238
309
|
|
239
310
|
[[package]]
|
240
|
-
name = "crossbeam-
|
241
|
-
version = "0.
|
311
|
+
name = "crossbeam-channel"
|
312
|
+
version = "0.5.6"
|
242
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
+
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
243
315
|
dependencies = [
|
244
|
-
"
|
245
|
-
"crossbeam-utils
|
246
|
-
"maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
316
|
+
"cfg-if",
|
317
|
+
"crossbeam-utils",
|
247
318
|
]
|
248
319
|
|
249
320
|
[[package]]
|
250
|
-
name = "crossbeam-
|
321
|
+
name = "crossbeam-deque"
|
251
322
|
version = "0.8.2"
|
252
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
324
|
+
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
|
253
325
|
dependencies = [
|
254
|
-
"
|
255
|
-
"
|
256
|
-
"crossbeam-utils
|
257
|
-
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
258
|
-
"maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
259
|
-
"memoffset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
260
|
-
"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
326
|
+
"cfg-if",
|
327
|
+
"crossbeam-epoch",
|
328
|
+
"crossbeam-utils",
|
261
329
|
]
|
262
330
|
|
263
331
|
[[package]]
|
264
|
-
name = "crossbeam-
|
265
|
-
version = "0.
|
332
|
+
name = "crossbeam-epoch"
|
333
|
+
version = "0.9.11"
|
266
334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
335
|
+
checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
|
267
336
|
dependencies = [
|
268
|
-
"
|
269
|
-
"
|
337
|
+
"autocfg",
|
338
|
+
"cfg-if",
|
339
|
+
"crossbeam-utils",
|
340
|
+
"memoffset",
|
341
|
+
"scopeguard",
|
270
342
|
]
|
271
343
|
|
272
344
|
[[package]]
|
273
345
|
name = "crossbeam-utils"
|
274
|
-
version = "0.
|
346
|
+
version = "0.8.12"
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
+
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
|
349
|
+
dependencies = [
|
350
|
+
"cfg-if",
|
351
|
+
]
|
352
|
+
|
353
|
+
[[package]]
|
354
|
+
name = "crypto-common"
|
355
|
+
version = "0.1.6"
|
275
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
276
358
|
dependencies = [
|
277
|
-
"
|
278
|
-
"
|
279
|
-
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
359
|
+
"generic-array",
|
360
|
+
"typenum",
|
280
361
|
]
|
281
362
|
|
282
363
|
[[package]]
|
283
364
|
name = "digest"
|
284
|
-
version = "0.
|
365
|
+
version = "0.10.6"
|
285
366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
367
|
+
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
|
286
368
|
dependencies = [
|
287
|
-
"
|
369
|
+
"block-buffer",
|
370
|
+
"crypto-common",
|
288
371
|
]
|
289
372
|
|
290
373
|
[[package]]
|
291
|
-
name = "directories"
|
292
|
-
version = "2.0.
|
374
|
+
name = "directories-next"
|
375
|
+
version = "2.0.0"
|
293
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
377
|
+
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
|
294
378
|
dependencies = [
|
295
|
-
"cfg-if
|
296
|
-
"dirs-sys
|
379
|
+
"cfg-if",
|
380
|
+
"dirs-sys-next",
|
297
381
|
]
|
298
382
|
|
299
383
|
[[package]]
|
300
|
-
name = "dirs-sys"
|
301
|
-
version = "0.
|
384
|
+
name = "dirs-sys-next"
|
385
|
+
version = "0.1.2"
|
302
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
387
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
303
388
|
dependencies = [
|
304
|
-
"
|
305
|
-
"
|
306
|
-
"
|
307
|
-
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
389
|
+
"libc",
|
390
|
+
"redox_users",
|
391
|
+
"winapi",
|
308
392
|
]
|
309
393
|
|
310
394
|
[[package]]
|
311
395
|
name = "either"
|
312
|
-
version = "1.
|
396
|
+
version = "1.8.0"
|
313
397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
398
|
+
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
314
399
|
|
315
400
|
[[package]]
|
316
401
|
name = "env_logger"
|
317
|
-
version = "0.
|
402
|
+
version = "0.9.3"
|
318
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
+
checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
|
319
405
|
dependencies = [
|
320
|
-
"atty
|
321
|
-
"humantime
|
322
|
-
"log
|
323
|
-
"regex
|
324
|
-
"termcolor
|
406
|
+
"atty",
|
407
|
+
"humantime",
|
408
|
+
"log",
|
409
|
+
"regex",
|
410
|
+
"termcolor",
|
325
411
|
]
|
326
412
|
|
327
413
|
[[package]]
|
328
414
|
name = "errno"
|
329
|
-
version = "0.2.
|
415
|
+
version = "0.2.8"
|
330
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
+
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
|
331
418
|
dependencies = [
|
332
|
-
"errno-dragonfly
|
333
|
-
"libc
|
334
|
-
"winapi
|
419
|
+
"errno-dragonfly",
|
420
|
+
"libc",
|
421
|
+
"winapi",
|
335
422
|
]
|
336
423
|
|
337
424
|
[[package]]
|
338
425
|
name = "errno-dragonfly"
|
339
|
-
version = "0.1.
|
426
|
+
version = "0.1.2"
|
340
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
341
429
|
dependencies = [
|
342
|
-
"
|
343
|
-
"libc
|
430
|
+
"cc",
|
431
|
+
"libc",
|
344
432
|
]
|
345
433
|
|
346
434
|
[[package]]
|
347
|
-
name = "
|
348
|
-
version = "0.
|
349
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
435
|
+
name = "ext"
|
436
|
+
version = "0.1.0"
|
350
437
|
dependencies = [
|
351
|
-
"
|
352
|
-
"
|
353
|
-
"
|
354
|
-
"
|
355
|
-
"
|
356
|
-
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
357
|
-
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
438
|
+
"anyhow",
|
439
|
+
"lazy_static",
|
440
|
+
"magnus",
|
441
|
+
"rb-sys",
|
442
|
+
"wasmtime",
|
358
443
|
]
|
359
444
|
|
360
|
-
[[package]]
|
361
|
-
name = "fake-simd"
|
362
|
-
version = "0.1.2"
|
363
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
-
|
365
445
|
[[package]]
|
366
446
|
name = "fallible-iterator"
|
367
447
|
version = "0.2.0"
|
368
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
369
450
|
|
370
451
|
[[package]]
|
371
452
|
name = "file-per-thread-logger"
|
372
|
-
version = "0.1.
|
453
|
+
version = "0.1.5"
|
373
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "21e16290574b39ee41c71aeb90ae960c504ebaf1e2a1c87bd52aa56ed6e1a02f"
|
374
456
|
dependencies = [
|
375
|
-
"env_logger
|
376
|
-
"log
|
457
|
+
"env_logger",
|
458
|
+
"log",
|
377
459
|
]
|
378
460
|
|
379
461
|
[[package]]
|
380
|
-
name = "
|
381
|
-
version = "
|
462
|
+
name = "fxhash"
|
463
|
+
version = "0.2.1"
|
382
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
383
466
|
dependencies = [
|
384
|
-
"
|
385
|
-
"crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
386
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
387
|
-
"miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
467
|
+
"byteorder",
|
388
468
|
]
|
389
469
|
|
390
|
-
[[package]]
|
391
|
-
name = "gcc"
|
392
|
-
version = "0.3.55"
|
393
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
394
|
-
|
395
470
|
[[package]]
|
396
471
|
name = "generic-array"
|
397
|
-
version = "0.
|
472
|
+
version = "0.14.6"
|
398
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
+
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
399
475
|
dependencies = [
|
400
|
-
"typenum
|
476
|
+
"typenum",
|
477
|
+
"version_check",
|
401
478
|
]
|
402
479
|
|
403
480
|
[[package]]
|
404
481
|
name = "getrandom"
|
405
|
-
version = "0.
|
482
|
+
version = "0.2.8"
|
406
483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
484
|
+
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
407
485
|
dependencies = [
|
408
|
-
"cfg-if
|
409
|
-
"libc
|
410
|
-
"wasi
|
486
|
+
"cfg-if",
|
487
|
+
"libc",
|
488
|
+
"wasi",
|
411
489
|
]
|
412
490
|
|
413
491
|
[[package]]
|
414
492
|
name = "gimli"
|
415
|
-
version = "0.
|
493
|
+
version = "0.26.2"
|
416
494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
495
|
+
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
|
417
496
|
dependencies = [
|
418
|
-
"
|
419
|
-
"
|
420
|
-
"
|
421
|
-
"indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
422
|
-
"smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
423
|
-
"stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
497
|
+
"fallible-iterator",
|
498
|
+
"indexmap",
|
499
|
+
"stable_deref_trait",
|
424
500
|
]
|
425
501
|
|
426
502
|
[[package]]
|
427
503
|
name = "glob"
|
428
504
|
version = "0.3.0"
|
429
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
+
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
430
507
|
|
431
508
|
[[package]]
|
432
|
-
name = "
|
433
|
-
version = "0.
|
509
|
+
name = "hashbrown"
|
510
|
+
version = "0.12.3"
|
434
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
435
513
|
dependencies = [
|
436
|
-
"
|
437
|
-
"plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
438
|
-
"scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
514
|
+
"ahash",
|
439
515
|
]
|
440
516
|
|
441
517
|
[[package]]
|
442
518
|
name = "hermit-abi"
|
443
|
-
version = "0.1.
|
519
|
+
version = "0.1.19"
|
444
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
521
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
445
522
|
dependencies = [
|
446
|
-
"libc
|
523
|
+
"libc",
|
447
524
|
]
|
448
525
|
|
449
526
|
[[package]]
|
450
527
|
name = "humantime"
|
451
|
-
version = "1.
|
528
|
+
version = "2.1.0"
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
530
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
531
|
+
|
532
|
+
[[package]]
|
533
|
+
name = "indexmap"
|
534
|
+
version = "1.9.1"
|
452
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
453
537
|
dependencies = [
|
454
|
-
"
|
538
|
+
"autocfg",
|
539
|
+
"hashbrown",
|
540
|
+
"serde",
|
455
541
|
]
|
456
542
|
|
457
543
|
[[package]]
|
458
|
-
name = "
|
459
|
-
version = "
|
544
|
+
name = "io-lifetimes"
|
545
|
+
version = "0.7.5"
|
460
546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
547
|
+
checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074"
|
548
|
+
|
549
|
+
[[package]]
|
550
|
+
name = "io-lifetimes"
|
551
|
+
version = "1.0.1"
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
553
|
+
checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87"
|
554
|
+
dependencies = [
|
555
|
+
"libc",
|
556
|
+
"windows-sys 0.42.0",
|
557
|
+
]
|
558
|
+
|
559
|
+
[[package]]
|
560
|
+
name = "itertools"
|
561
|
+
version = "0.10.5"
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
563
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
564
|
+
dependencies = [
|
565
|
+
"either",
|
566
|
+
]
|
567
|
+
|
568
|
+
[[package]]
|
569
|
+
name = "ittapi"
|
570
|
+
version = "0.3.1"
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
572
|
+
checksum = "663fe0550070071ff59e981864a9cd3ee1c869ed0a088140d9ac4dc05ea6b1a1"
|
573
|
+
dependencies = [
|
574
|
+
"anyhow",
|
575
|
+
"ittapi-sys",
|
576
|
+
"log",
|
577
|
+
]
|
578
|
+
|
579
|
+
[[package]]
|
580
|
+
name = "ittapi-sys"
|
581
|
+
version = "0.3.1"
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
+
checksum = "e21911b7183f38c71d75ab478a527f314e28db51027037ece2e5511ed9410703"
|
461
584
|
dependencies = [
|
462
|
-
"
|
585
|
+
"cc",
|
463
586
|
]
|
464
587
|
|
465
588
|
[[package]]
|
466
589
|
name = "jobserver"
|
467
|
-
version = "0.1.
|
590
|
+
version = "0.1.25"
|
468
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
+
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
|
469
593
|
dependencies = [
|
470
|
-
"libc
|
594
|
+
"libc",
|
471
595
|
]
|
472
596
|
|
473
597
|
[[package]]
|
474
598
|
name = "lazy_static"
|
475
599
|
version = "1.4.0"
|
476
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
601
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
602
|
+
|
603
|
+
[[package]]
|
604
|
+
name = "lazycell"
|
605
|
+
version = "1.3.0"
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
607
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
477
608
|
|
478
609
|
[[package]]
|
479
610
|
name = "leb128"
|
480
|
-
version = "0.2.
|
611
|
+
version = "0.2.5"
|
481
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
613
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
482
614
|
|
483
615
|
[[package]]
|
484
616
|
name = "libc"
|
485
|
-
version = "0.2.
|
617
|
+
version = "0.2.137"
|
486
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
+
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "libloading"
|
623
|
+
version = "0.7.4"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
626
|
+
dependencies = [
|
627
|
+
"cfg-if",
|
628
|
+
"winapi",
|
629
|
+
]
|
630
|
+
|
631
|
+
[[package]]
|
632
|
+
name = "linux-raw-sys"
|
633
|
+
version = "0.0.46"
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
+
checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d"
|
636
|
+
|
637
|
+
[[package]]
|
638
|
+
name = "linux-raw-sys"
|
639
|
+
version = "0.1.2"
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
641
|
+
checksum = "bb68f22743a3fb35785f1e7f844ca5a3de2dde5bd0c0ef5b372065814699b121"
|
487
642
|
|
488
643
|
[[package]]
|
489
644
|
name = "log"
|
490
|
-
version = "0.4.
|
645
|
+
version = "0.4.17"
|
491
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
647
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
492
648
|
dependencies = [
|
493
|
-
"cfg-if
|
649
|
+
"cfg-if",
|
494
650
|
]
|
495
651
|
|
496
652
|
[[package]]
|
497
653
|
name = "mach"
|
498
|
-
version = "0.2
|
654
|
+
version = "0.3.2"
|
499
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
656
|
+
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
|
500
657
|
dependencies = [
|
501
|
-
"libc
|
658
|
+
"libc",
|
502
659
|
]
|
503
660
|
|
504
661
|
[[package]]
|
505
|
-
name = "
|
506
|
-
version = "
|
507
|
-
source = "
|
662
|
+
name = "magnus"
|
663
|
+
version = "0.4.0"
|
664
|
+
source = "git+https://github.com/matsadler/magnus#d6f41528f35ed83aaedae1131dce0553d06953e8"
|
665
|
+
dependencies = [
|
666
|
+
"magnus-macros",
|
667
|
+
"rb-sys",
|
668
|
+
"rb-sys-env",
|
669
|
+
]
|
670
|
+
|
671
|
+
[[package]]
|
672
|
+
name = "magnus-macros"
|
673
|
+
version = "0.2.0"
|
674
|
+
source = "git+https://github.com/matsadler/magnus#d6f41528f35ed83aaedae1131dce0553d06953e8"
|
675
|
+
dependencies = [
|
676
|
+
"proc-macro2",
|
677
|
+
"quote",
|
678
|
+
"syn",
|
679
|
+
]
|
508
680
|
|
509
681
|
[[package]]
|
510
682
|
name = "memchr"
|
511
|
-
version = "2.
|
683
|
+
version = "2.5.0"
|
512
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
513
686
|
|
514
687
|
[[package]]
|
515
|
-
name = "
|
516
|
-
version = "0.
|
688
|
+
name = "memfd"
|
689
|
+
version = "0.6.2"
|
517
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
+
checksum = "b20a59d985586e4a5aef64564ac77299f8586d8be6cf9106a5a40207e8908efb"
|
518
692
|
dependencies = [
|
519
|
-
"
|
693
|
+
"rustix 0.36.1",
|
520
694
|
]
|
521
695
|
|
522
696
|
[[package]]
|
523
|
-
name = "
|
524
|
-
version = "0.
|
697
|
+
name = "memoffset"
|
698
|
+
version = "0.6.5"
|
525
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
700
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
526
701
|
dependencies = [
|
527
|
-
"
|
702
|
+
"autocfg",
|
528
703
|
]
|
529
704
|
|
530
705
|
[[package]]
|
531
|
-
name = "
|
706
|
+
name = "minimal-lexical"
|
532
707
|
version = "0.2.1"
|
533
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
710
|
+
|
711
|
+
[[package]]
|
712
|
+
name = "nom"
|
713
|
+
version = "7.1.1"
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
+
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
716
|
+
dependencies = [
|
717
|
+
"memchr",
|
718
|
+
"minimal-lexical",
|
719
|
+
]
|
534
720
|
|
535
721
|
[[package]]
|
536
722
|
name = "num_cpus"
|
537
|
-
version = "1.
|
723
|
+
version = "1.14.0"
|
538
724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
+
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
|
539
726
|
dependencies = [
|
540
|
-
"hermit-abi
|
541
|
-
"libc
|
727
|
+
"hermit-abi",
|
728
|
+
"libc",
|
542
729
|
]
|
543
730
|
|
544
731
|
[[package]]
|
545
732
|
name = "object"
|
546
|
-
version = "0.
|
733
|
+
version = "0.29.0"
|
547
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
+
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
|
548
736
|
dependencies = [
|
549
|
-
"
|
550
|
-
"
|
551
|
-
"
|
737
|
+
"crc32fast",
|
738
|
+
"hashbrown",
|
739
|
+
"indexmap",
|
740
|
+
"memchr",
|
552
741
|
]
|
553
742
|
|
554
743
|
[[package]]
|
555
|
-
name = "
|
556
|
-
version = "
|
744
|
+
name = "once_cell"
|
745
|
+
version = "1.16.0"
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
747
|
+
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
|
748
|
+
|
749
|
+
[[package]]
|
750
|
+
name = "paste"
|
751
|
+
version = "1.0.9"
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
753
|
+
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
|
754
|
+
|
755
|
+
[[package]]
|
756
|
+
name = "peeking_take_while"
|
757
|
+
version = "0.1.2"
|
557
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
558
760
|
|
559
761
|
[[package]]
|
560
|
-
name = "
|
561
|
-
version = "0.2.
|
762
|
+
name = "ppv-lite86"
|
763
|
+
version = "0.2.17"
|
562
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
563
766
|
|
564
767
|
[[package]]
|
565
768
|
name = "proc-macro2"
|
566
|
-
version = "1.0.
|
769
|
+
version = "1.0.47"
|
567
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
771
|
+
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
|
568
772
|
dependencies = [
|
569
|
-
"unicode-
|
773
|
+
"unicode-ident",
|
570
774
|
]
|
571
775
|
|
572
776
|
[[package]]
|
573
|
-
name = "
|
574
|
-
version = "1.
|
777
|
+
name = "psm"
|
778
|
+
version = "0.1.21"
|
575
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
781
|
+
dependencies = [
|
782
|
+
"cc",
|
783
|
+
]
|
576
784
|
|
577
785
|
[[package]]
|
578
786
|
name = "quote"
|
579
|
-
version = "1.0.
|
787
|
+
version = "1.0.21"
|
580
788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
789
|
+
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
581
790
|
dependencies = [
|
582
|
-
"proc-macro2
|
791
|
+
"proc-macro2",
|
583
792
|
]
|
584
793
|
|
585
794
|
[[package]]
|
586
|
-
name = "
|
587
|
-
version = "
|
795
|
+
name = "rand"
|
796
|
+
version = "0.8.5"
|
588
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
589
799
|
dependencies = [
|
590
|
-
"
|
591
|
-
"
|
592
|
-
"
|
800
|
+
"libc",
|
801
|
+
"rand_chacha",
|
802
|
+
"rand_core",
|
593
803
|
]
|
594
804
|
|
595
805
|
[[package]]
|
596
|
-
name = "
|
597
|
-
version = "
|
806
|
+
name = "rand_chacha"
|
807
|
+
version = "0.3.1"
|
598
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
599
810
|
dependencies = [
|
600
|
-
"
|
601
|
-
"
|
602
|
-
"rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
811
|
+
"ppv-lite86",
|
812
|
+
"rand_core",
|
603
813
|
]
|
604
814
|
|
605
815
|
[[package]]
|
606
|
-
name = "
|
607
|
-
version = "
|
816
|
+
name = "rand_core"
|
817
|
+
version = "0.6.4"
|
608
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
609
820
|
dependencies = [
|
610
|
-
"
|
611
|
-
"crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
612
|
-
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
613
|
-
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
614
|
-
"num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
821
|
+
"getrandom",
|
615
822
|
]
|
616
823
|
|
617
824
|
[[package]]
|
618
|
-
name = "
|
619
|
-
version = "
|
825
|
+
name = "rayon"
|
826
|
+
version = "1.5.3"
|
620
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
828
|
+
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
|
829
|
+
dependencies = [
|
830
|
+
"autocfg",
|
831
|
+
"crossbeam-deque",
|
832
|
+
"either",
|
833
|
+
"rayon-core",
|
834
|
+
]
|
621
835
|
|
622
836
|
[[package]]
|
623
|
-
name = "
|
624
|
-
version = "
|
837
|
+
name = "rayon-core"
|
838
|
+
version = "1.9.3"
|
625
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
+
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
|
626
841
|
dependencies = [
|
627
|
-
"
|
628
|
-
"
|
629
|
-
"
|
842
|
+
"crossbeam-channel",
|
843
|
+
"crossbeam-deque",
|
844
|
+
"crossbeam-utils",
|
845
|
+
"num_cpus",
|
630
846
|
]
|
631
847
|
|
632
848
|
[[package]]
|
633
|
-
name = "
|
634
|
-
version = "0.
|
849
|
+
name = "rb-sys"
|
850
|
+
version = "0.9.44"
|
635
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
+
checksum = "31f48777b8161ff5c077ad74ce486ebe963ca8a92257512bab473b405a80d69f"
|
636
853
|
dependencies = [
|
637
|
-
"
|
638
|
-
"rustc-hash 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
639
|
-
"smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
854
|
+
"rb-sys-build",
|
640
855
|
]
|
641
856
|
|
642
857
|
[[package]]
|
643
|
-
name = "
|
644
|
-
version = "
|
858
|
+
name = "rb-sys-build"
|
859
|
+
version = "0.9.44"
|
645
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
+
checksum = "a46785122aff7077527b78c2518d739c45dc0fbc410a2b8361076ff4bbf993f9"
|
646
862
|
dependencies = [
|
647
|
-
"
|
648
|
-
"
|
649
|
-
"
|
650
|
-
"thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
863
|
+
"bindgen",
|
864
|
+
"regex",
|
865
|
+
"shell-words",
|
651
866
|
]
|
652
867
|
|
653
868
|
[[package]]
|
654
|
-
name = "
|
655
|
-
version = "0.
|
869
|
+
name = "rb-sys-env"
|
870
|
+
version = "0.1.1"
|
656
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
872
|
+
checksum = "74c38752410925faeb82c400c06ba2fd9ee6aa8f719dd33994c9e53f5242d25f"
|
657
873
|
|
658
874
|
[[package]]
|
659
|
-
name = "
|
660
|
-
version = "2.
|
875
|
+
name = "redox_syscall"
|
876
|
+
version = "0.2.16"
|
661
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
878
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
662
879
|
dependencies = [
|
663
|
-
"bitflags
|
664
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
665
|
-
"mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
666
|
-
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
880
|
+
"bitflags",
|
667
881
|
]
|
668
882
|
|
669
883
|
[[package]]
|
670
|
-
name = "
|
671
|
-
version = "0.
|
884
|
+
name = "redox_users"
|
885
|
+
version = "0.4.3"
|
672
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
887
|
+
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
673
888
|
dependencies = [
|
674
|
-
"
|
675
|
-
"
|
676
|
-
"
|
677
|
-
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
889
|
+
"getrandom",
|
890
|
+
"redox_syscall",
|
891
|
+
"thiserror",
|
678
892
|
]
|
679
893
|
|
680
894
|
[[package]]
|
681
|
-
name = "
|
682
|
-
version = "0.
|
683
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
-
|
685
|
-
[[package]]
|
686
|
-
name = "rustc-hash"
|
687
|
-
version = "1.1.0"
|
895
|
+
name = "regalloc2"
|
896
|
+
version = "0.4.2"
|
688
897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
898
|
+
checksum = "91b2eab54204ea0117fe9a060537e0b07a4e72f7c7d182361ecc346cab2240e5"
|
899
|
+
dependencies = [
|
900
|
+
"fxhash",
|
901
|
+
"log",
|
902
|
+
"slice-group-by",
|
903
|
+
"smallvec",
|
904
|
+
]
|
689
905
|
|
690
906
|
[[package]]
|
691
|
-
name = "
|
692
|
-
version = "
|
907
|
+
name = "regex"
|
908
|
+
version = "1.7.0"
|
693
909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
+
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
|
694
911
|
dependencies = [
|
695
|
-
"
|
912
|
+
"aho-corasick",
|
913
|
+
"memchr",
|
914
|
+
"regex-syntax",
|
696
915
|
]
|
697
916
|
|
698
917
|
[[package]]
|
699
|
-
name = "
|
700
|
-
version = "0.
|
918
|
+
name = "regex-syntax"
|
919
|
+
version = "0.6.28"
|
701
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
-
|
703
|
-
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
704
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
705
|
-
]
|
921
|
+
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
706
922
|
|
707
923
|
[[package]]
|
708
|
-
name = "
|
709
|
-
version = "
|
924
|
+
name = "rustc-demangle"
|
925
|
+
version = "0.1.21"
|
710
926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
+
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
|
711
928
|
|
712
929
|
[[package]]
|
713
|
-
name = "
|
714
|
-
version = "
|
930
|
+
name = "rustc-hash"
|
931
|
+
version = "1.1.0"
|
715
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
-
|
717
|
-
"scroll_derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
718
|
-
]
|
933
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
719
934
|
|
720
935
|
[[package]]
|
721
|
-
name = "
|
722
|
-
version = "0.
|
936
|
+
name = "rustix"
|
937
|
+
version = "0.35.13"
|
723
938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
+
checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9"
|
724
940
|
dependencies = [
|
725
|
-
"
|
726
|
-
"
|
727
|
-
"
|
941
|
+
"bitflags",
|
942
|
+
"errno",
|
943
|
+
"io-lifetimes 0.7.5",
|
944
|
+
"libc",
|
945
|
+
"linux-raw-sys 0.0.46",
|
946
|
+
"windows-sys 0.42.0",
|
728
947
|
]
|
729
948
|
|
730
949
|
[[package]]
|
731
|
-
name = "
|
732
|
-
version = "0.
|
950
|
+
name = "rustix"
|
951
|
+
version = "0.36.1"
|
733
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
953
|
+
checksum = "812a2ec2043c4d6bc6482f5be2ab8244613cac2493d128d36c0759e52a626ab3"
|
734
954
|
dependencies = [
|
735
|
-
"
|
955
|
+
"bitflags",
|
956
|
+
"errno",
|
957
|
+
"io-lifetimes 1.0.1",
|
958
|
+
"libc",
|
959
|
+
"linux-raw-sys 0.1.2",
|
960
|
+
"windows-sys 0.42.0",
|
736
961
|
]
|
737
962
|
|
738
963
|
[[package]]
|
739
|
-
name = "
|
740
|
-
version = "
|
964
|
+
name = "scopeguard"
|
965
|
+
version = "1.1.0"
|
741
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
967
|
+
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
742
968
|
|
743
969
|
[[package]]
|
744
970
|
name = "serde"
|
745
|
-
version = "1.0.
|
971
|
+
version = "1.0.147"
|
746
972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
973
|
+
checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
|
747
974
|
dependencies = [
|
748
|
-
"serde_derive
|
975
|
+
"serde_derive",
|
749
976
|
]
|
750
977
|
|
751
978
|
[[package]]
|
752
979
|
name = "serde_derive"
|
753
|
-
version = "1.0.
|
980
|
+
version = "1.0.147"
|
754
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
982
|
+
checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
|
755
983
|
dependencies = [
|
756
|
-
"proc-macro2
|
757
|
-
"quote
|
758
|
-
"syn
|
984
|
+
"proc-macro2",
|
985
|
+
"quote",
|
986
|
+
"syn",
|
759
987
|
]
|
760
988
|
|
761
989
|
[[package]]
|
762
990
|
name = "sha2"
|
763
|
-
version = "0.
|
991
|
+
version = "0.10.6"
|
764
992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
+
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
765
994
|
dependencies = [
|
766
|
-
"
|
767
|
-
"
|
768
|
-
"
|
769
|
-
"opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
995
|
+
"cfg-if",
|
996
|
+
"cpufeatures",
|
997
|
+
"digest",
|
770
998
|
]
|
771
999
|
|
772
1000
|
[[package]]
|
773
|
-
name = "
|
774
|
-
version = "1.
|
1001
|
+
name = "shell-words"
|
1002
|
+
version = "1.1.0"
|
775
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
776
1005
|
|
777
1006
|
[[package]]
|
778
|
-
name = "
|
779
|
-
version = "1.1.
|
1007
|
+
name = "shlex"
|
1008
|
+
version = "1.1.0"
|
780
1009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
781
1011
|
|
782
1012
|
[[package]]
|
783
|
-
name = "
|
784
|
-
version = "0.
|
1013
|
+
name = "slice-group-by"
|
1014
|
+
version = "0.3.0"
|
785
1015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
-
|
787
|
-
|
788
|
-
]
|
1016
|
+
checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec"
|
1017
|
+
|
1018
|
+
[[package]]
|
1019
|
+
name = "smallvec"
|
1020
|
+
version = "1.10.0"
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
+
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
1023
|
+
|
1024
|
+
[[package]]
|
1025
|
+
name = "stable_deref_trait"
|
1026
|
+
version = "1.2.0"
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
789
1029
|
|
790
1030
|
[[package]]
|
791
1031
|
name = "syn"
|
792
|
-
version = "1.0.
|
1032
|
+
version = "1.0.103"
|
793
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
+
checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
|
794
1035
|
dependencies = [
|
795
|
-
"proc-macro2
|
796
|
-
"quote
|
797
|
-
"unicode-
|
1036
|
+
"proc-macro2",
|
1037
|
+
"quote",
|
1038
|
+
"unicode-ident",
|
798
1039
|
]
|
799
1040
|
|
800
1041
|
[[package]]
|
801
1042
|
name = "target-lexicon"
|
802
|
-
version = "0.
|
1043
|
+
version = "0.12.5"
|
803
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
+
checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d"
|
804
1046
|
|
805
1047
|
[[package]]
|
806
1048
|
name = "termcolor"
|
807
|
-
version = "1.1.
|
1049
|
+
version = "1.1.3"
|
808
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1051
|
+
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
809
1052
|
dependencies = [
|
810
|
-
"winapi-util
|
1053
|
+
"winapi-util",
|
811
1054
|
]
|
812
1055
|
|
813
1056
|
[[package]]
|
814
1057
|
name = "thiserror"
|
815
|
-
version = "1.0.
|
1058
|
+
version = "1.0.37"
|
816
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1060
|
+
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
|
817
1061
|
dependencies = [
|
818
|
-
"thiserror-impl
|
1062
|
+
"thiserror-impl",
|
819
1063
|
]
|
820
1064
|
|
821
1065
|
[[package]]
|
822
1066
|
name = "thiserror-impl"
|
823
|
-
version = "1.0.
|
1067
|
+
version = "1.0.37"
|
824
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1069
|
+
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
|
825
1070
|
dependencies = [
|
826
|
-
"proc-macro2
|
827
|
-
"quote
|
828
|
-
"syn
|
1071
|
+
"proc-macro2",
|
1072
|
+
"quote",
|
1073
|
+
"syn",
|
829
1074
|
]
|
830
1075
|
|
831
1076
|
[[package]]
|
832
|
-
name = "
|
833
|
-
version = "
|
1077
|
+
name = "toml"
|
1078
|
+
version = "0.5.9"
|
834
1079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1080
|
+
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
|
835
1081
|
dependencies = [
|
836
|
-
"
|
1082
|
+
"serde",
|
837
1083
|
]
|
838
1084
|
|
839
1085
|
[[package]]
|
840
|
-
name = "
|
841
|
-
version = "
|
1086
|
+
name = "typenum"
|
1087
|
+
version = "1.15.0"
|
842
1088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
843
|
-
|
844
|
-
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
845
|
-
]
|
1089
|
+
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
846
1090
|
|
847
1091
|
[[package]]
|
848
|
-
name = "
|
849
|
-
version = "1.
|
1092
|
+
name = "unicode-ident"
|
1093
|
+
version = "1.0.5"
|
850
1094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1095
|
+
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
851
1096
|
|
852
1097
|
[[package]]
|
853
|
-
name = "unicode-
|
854
|
-
version = "0.
|
1098
|
+
name = "unicode-width"
|
1099
|
+
version = "0.1.10"
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
+
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
1102
|
+
|
1103
|
+
[[package]]
|
1104
|
+
name = "version_check"
|
1105
|
+
version = "0.9.4"
|
855
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1107
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
856
1108
|
|
857
1109
|
[[package]]
|
858
1110
|
name = "wasi"
|
859
|
-
version = "0.
|
1111
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
860
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1113
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1114
|
+
|
1115
|
+
[[package]]
|
1116
|
+
name = "wasm-encoder"
|
1117
|
+
version = "0.19.1"
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1119
|
+
checksum = "9424cdab516a16d4ea03c8f4a01b14e7b2d04a129dcc2bcdde5bcc5f68f06c41"
|
1120
|
+
dependencies = [
|
1121
|
+
"leb128",
|
1122
|
+
]
|
861
1123
|
|
862
1124
|
[[package]]
|
863
1125
|
name = "wasmparser"
|
864
|
-
version = "0.
|
1126
|
+
version = "0.93.0"
|
865
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
+
checksum = "c5a4460aa3e271fa180b6a5d003e728f3963fb30e3ba0fa7c9634caa06049328"
|
1129
|
+
dependencies = [
|
1130
|
+
"indexmap",
|
1131
|
+
]
|
866
1132
|
|
867
1133
|
[[package]]
|
868
1134
|
name = "wasmtime"
|
869
|
-
version = "0.
|
1135
|
+
version = "3.0.0"
|
870
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
+
checksum = "9ad9bd12d0823195f6c833f340d8d1df39e2bbf40f5767416560ca7476b97e47"
|
871
1138
|
dependencies = [
|
872
|
-
"anyhow
|
873
|
-
"
|
874
|
-
"
|
875
|
-
"
|
876
|
-
"
|
877
|
-
"
|
878
|
-
"
|
879
|
-
"
|
880
|
-
"
|
881
|
-
"
|
882
|
-
"
|
883
|
-
"
|
884
|
-
"
|
885
|
-
"
|
886
|
-
"
|
1139
|
+
"anyhow",
|
1140
|
+
"async-trait",
|
1141
|
+
"bincode",
|
1142
|
+
"cfg-if",
|
1143
|
+
"indexmap",
|
1144
|
+
"libc",
|
1145
|
+
"log",
|
1146
|
+
"object",
|
1147
|
+
"once_cell",
|
1148
|
+
"paste",
|
1149
|
+
"psm",
|
1150
|
+
"rayon",
|
1151
|
+
"serde",
|
1152
|
+
"target-lexicon",
|
1153
|
+
"wasmparser",
|
1154
|
+
"wasmtime-cache",
|
1155
|
+
"wasmtime-cranelift",
|
1156
|
+
"wasmtime-environ",
|
1157
|
+
"wasmtime-fiber",
|
1158
|
+
"wasmtime-jit",
|
1159
|
+
"wasmtime-runtime",
|
1160
|
+
"wat",
|
1161
|
+
"windows-sys 0.36.1",
|
887
1162
|
]
|
888
1163
|
|
889
1164
|
[[package]]
|
890
|
-
name = "wasmtime-
|
891
|
-
version = "0.
|
1165
|
+
name = "wasmtime-asm-macros"
|
1166
|
+
version = "3.0.0"
|
892
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
+
checksum = "3b6694b753be856b36d47744cdf2bd525bac53d0de5981132d5430bb62c496e4"
|
893
1169
|
dependencies = [
|
894
|
-
"
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
"
|
899
|
-
"
|
900
|
-
"
|
901
|
-
|
1170
|
+
"cfg-if",
|
1171
|
+
]
|
1172
|
+
|
1173
|
+
[[package]]
|
1174
|
+
name = "wasmtime-cache"
|
1175
|
+
version = "3.0.0"
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1177
|
+
checksum = "68f467d67ad8295d34de2840dde47e60ef83b88bce08f4bdb371503e8e1e5c55"
|
1178
|
+
dependencies = [
|
1179
|
+
"anyhow",
|
1180
|
+
"base64",
|
1181
|
+
"bincode",
|
1182
|
+
"directories-next",
|
1183
|
+
"file-per-thread-logger",
|
1184
|
+
"log",
|
1185
|
+
"rustix 0.35.13",
|
1186
|
+
"serde",
|
1187
|
+
"sha2",
|
1188
|
+
"toml",
|
1189
|
+
"windows-sys 0.36.1",
|
1190
|
+
"zstd",
|
1191
|
+
]
|
1192
|
+
|
1193
|
+
[[package]]
|
1194
|
+
name = "wasmtime-cranelift"
|
1195
|
+
version = "3.0.0"
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
+
checksum = "9c55d30708ebc24b6fa2a247807821642967487388845c7fc5320fef1010abe8"
|
1198
|
+
dependencies = [
|
1199
|
+
"anyhow",
|
1200
|
+
"cranelift-codegen",
|
1201
|
+
"cranelift-entity",
|
1202
|
+
"cranelift-frontend",
|
1203
|
+
"cranelift-native",
|
1204
|
+
"cranelift-wasm",
|
1205
|
+
"gimli",
|
1206
|
+
"log",
|
1207
|
+
"object",
|
1208
|
+
"target-lexicon",
|
1209
|
+
"thiserror",
|
1210
|
+
"wasmparser",
|
1211
|
+
"wasmtime-environ",
|
902
1212
|
]
|
903
1213
|
|
904
1214
|
[[package]]
|
905
1215
|
name = "wasmtime-environ"
|
906
|
-
version = "0.
|
907
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
-
|
909
|
-
|
910
|
-
"
|
911
|
-
"
|
912
|
-
"
|
913
|
-
"
|
914
|
-
"
|
915
|
-
"
|
916
|
-
"
|
917
|
-
"
|
918
|
-
"
|
919
|
-
"
|
920
|
-
"
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
"
|
925
|
-
"
|
926
|
-
"
|
927
|
-
|
928
|
-
|
929
|
-
"
|
1216
|
+
version = "3.0.0"
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
+
checksum = "01be016d65ec9200a2d4efbc2ca983bbb7264332e49c11179aaf7587e57d854d"
|
1219
|
+
dependencies = [
|
1220
|
+
"anyhow",
|
1221
|
+
"cranelift-entity",
|
1222
|
+
"gimli",
|
1223
|
+
"indexmap",
|
1224
|
+
"log",
|
1225
|
+
"object",
|
1226
|
+
"serde",
|
1227
|
+
"target-lexicon",
|
1228
|
+
"thiserror",
|
1229
|
+
"wasmparser",
|
1230
|
+
"wasmtime-types",
|
1231
|
+
]
|
1232
|
+
|
1233
|
+
[[package]]
|
1234
|
+
name = "wasmtime-fiber"
|
1235
|
+
version = "3.0.0"
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1237
|
+
checksum = "edf27540165d5fd3af99cb04a05b8ccc8d04bbdf380d2fd87fd5cb3f1093c08c"
|
1238
|
+
dependencies = [
|
1239
|
+
"cc",
|
1240
|
+
"cfg-if",
|
1241
|
+
"rustix 0.35.13",
|
1242
|
+
"wasmtime-asm-macros",
|
1243
|
+
"windows-sys 0.36.1",
|
930
1244
|
]
|
931
1245
|
|
932
1246
|
[[package]]
|
933
1247
|
name = "wasmtime-jit"
|
934
|
-
version = "0.
|
935
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
936
|
-
|
937
|
-
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
938
|
-
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
939
|
-
"cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
940
|
-
"cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
941
|
-
"cranelift-frontend 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
942
|
-
"cranelift-native 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
943
|
-
"cranelift-wasm 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
944
|
-
"gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
945
|
-
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
946
|
-
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
947
|
-
"region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
948
|
-
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
949
|
-
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
950
|
-
"wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
951
|
-
"wasmtime-debug 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
952
|
-
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
953
|
-
"wasmtime-profiling 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
954
|
-
"wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
955
|
-
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
956
|
-
]
|
957
|
-
|
958
|
-
[[package]]
|
959
|
-
name = "wasmtime-profiling"
|
960
|
-
version = "0.16.0"
|
961
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
962
|
-
dependencies = [
|
963
|
-
"anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
|
964
|
-
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
965
|
-
"gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
966
|
-
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
967
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
968
|
-
"object 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
969
|
-
"scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
970
|
-
"serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)",
|
971
|
-
"target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
972
|
-
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
973
|
-
"wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
974
|
-
]
|
975
|
-
|
976
|
-
[[package]]
|
977
|
-
name = "wasmtime-ruby"
|
978
|
-
version = "0.1.0"
|
1248
|
+
version = "3.0.0"
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
+
checksum = "5d36042d7962fa1b2a6bfb96d3b33e2283138e7396bc29b2c6970f2a1e80a0ed"
|
979
1251
|
dependencies = [
|
980
|
-
"
|
981
|
-
"
|
982
|
-
"
|
1252
|
+
"addr2line",
|
1253
|
+
"anyhow",
|
1254
|
+
"bincode",
|
1255
|
+
"cfg-if",
|
1256
|
+
"cpp_demangle",
|
1257
|
+
"gimli",
|
1258
|
+
"ittapi",
|
1259
|
+
"log",
|
1260
|
+
"object",
|
1261
|
+
"rustc-demangle",
|
1262
|
+
"serde",
|
1263
|
+
"target-lexicon",
|
1264
|
+
"thiserror",
|
1265
|
+
"wasmtime-environ",
|
1266
|
+
"wasmtime-jit-debug",
|
1267
|
+
"wasmtime-jit-icache-coherence",
|
1268
|
+
"wasmtime-runtime",
|
1269
|
+
"windows-sys 0.36.1",
|
1270
|
+
]
|
1271
|
+
|
1272
|
+
[[package]]
|
1273
|
+
name = "wasmtime-jit-debug"
|
1274
|
+
version = "3.0.0"
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1276
|
+
checksum = "ad4511b8abbdbaf3e9aaa4044ead8bd31b70e2da5e43e2cb91605f871ca23d56"
|
1277
|
+
dependencies = [
|
1278
|
+
"object",
|
1279
|
+
"once_cell",
|
1280
|
+
"rustix 0.35.13",
|
1281
|
+
]
|
1282
|
+
|
1283
|
+
[[package]]
|
1284
|
+
name = "wasmtime-jit-icache-coherence"
|
1285
|
+
version = "2.0.0"
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1287
|
+
checksum = "6fb7b3e58024d8d395dfc4efbe2a58360a1998565b118b0342b3cf62a4084bde"
|
1288
|
+
dependencies = [
|
1289
|
+
"cfg-if",
|
1290
|
+
"libc",
|
1291
|
+
"windows-sys 0.36.1",
|
983
1292
|
]
|
984
1293
|
|
985
1294
|
[[package]]
|
986
1295
|
name = "wasmtime-runtime"
|
987
|
-
version = "0.
|
1296
|
+
version = "3.0.0"
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1298
|
+
checksum = "4034f371135e9e2e81430dda14f6f5a49a222c6557ec4f65301edc093b216d38"
|
1299
|
+
dependencies = [
|
1300
|
+
"anyhow",
|
1301
|
+
"cc",
|
1302
|
+
"cfg-if",
|
1303
|
+
"indexmap",
|
1304
|
+
"libc",
|
1305
|
+
"log",
|
1306
|
+
"mach",
|
1307
|
+
"memfd",
|
1308
|
+
"memoffset",
|
1309
|
+
"paste",
|
1310
|
+
"rand",
|
1311
|
+
"rustix 0.35.13",
|
1312
|
+
"thiserror",
|
1313
|
+
"wasmtime-asm-macros",
|
1314
|
+
"wasmtime-environ",
|
1315
|
+
"wasmtime-fiber",
|
1316
|
+
"wasmtime-jit-debug",
|
1317
|
+
"windows-sys 0.36.1",
|
1318
|
+
]
|
1319
|
+
|
1320
|
+
[[package]]
|
1321
|
+
name = "wasmtime-types"
|
1322
|
+
version = "3.0.0"
|
988
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1324
|
+
checksum = "a770de14a3b5676dfd8a3c06bcab829d9cb58b113911634f3ec3b6960b1d79e3"
|
989
1325
|
dependencies = [
|
990
|
-
"
|
991
|
-
"
|
992
|
-
"
|
993
|
-
"
|
994
|
-
"libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)",
|
995
|
-
"memoffset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
996
|
-
"more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
997
|
-
"region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
998
|
-
"thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
999
|
-
"wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
1000
|
-
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
1326
|
+
"cranelift-entity",
|
1327
|
+
"serde",
|
1328
|
+
"thiserror",
|
1329
|
+
"wasmparser",
|
1001
1330
|
]
|
1002
1331
|
|
1003
1332
|
[[package]]
|
1004
1333
|
name = "wast"
|
1005
|
-
version = "
|
1334
|
+
version = "49.0.0"
|
1006
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1336
|
+
checksum = "05ef81fcd60d244cafffeafac3d17615fdb2fddda6aca18f34a8ae233353587c"
|
1007
1337
|
dependencies = [
|
1008
|
-
"leb128
|
1338
|
+
"leb128",
|
1339
|
+
"memchr",
|
1340
|
+
"unicode-width",
|
1341
|
+
"wasm-encoder",
|
1009
1342
|
]
|
1010
1343
|
|
1011
1344
|
[[package]]
|
1012
1345
|
name = "wat"
|
1013
|
-
version = "1.0.
|
1346
|
+
version = "1.0.51"
|
1014
1347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1348
|
+
checksum = "4c347c4460ffb311e95aafccd8c29e4888f241b9e4b3bb0e0ccbd998de2c8c0d"
|
1015
1349
|
dependencies = [
|
1016
|
-
"wast
|
1350
|
+
"wast",
|
1017
1351
|
]
|
1018
1352
|
|
1019
1353
|
[[package]]
|
1020
1354
|
name = "winapi"
|
1021
|
-
version = "0.3.
|
1355
|
+
version = "0.3.9"
|
1022
1356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
1023
1358
|
dependencies = [
|
1024
|
-
"winapi-i686-pc-windows-gnu
|
1025
|
-
"winapi-x86_64-pc-windows-gnu
|
1359
|
+
"winapi-i686-pc-windows-gnu",
|
1360
|
+
"winapi-x86_64-pc-windows-gnu",
|
1026
1361
|
]
|
1027
1362
|
|
1028
1363
|
[[package]]
|
1029
1364
|
name = "winapi-i686-pc-windows-gnu"
|
1030
1365
|
version = "0.4.0"
|
1031
1366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1367
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1032
1368
|
|
1033
1369
|
[[package]]
|
1034
1370
|
name = "winapi-util"
|
1035
1371
|
version = "0.1.5"
|
1036
1372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1373
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
1037
1374
|
dependencies = [
|
1038
|
-
"winapi
|
1375
|
+
"winapi",
|
1039
1376
|
]
|
1040
1377
|
|
1041
1378
|
[[package]]
|
1042
1379
|
name = "winapi-x86_64-pc-windows-gnu"
|
1043
1380
|
version = "0.4.0"
|
1044
1381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1382
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1383
|
+
|
1384
|
+
[[package]]
|
1385
|
+
name = "windows-sys"
|
1386
|
+
version = "0.36.1"
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1388
|
+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
1389
|
+
dependencies = [
|
1390
|
+
"windows_aarch64_msvc 0.36.1",
|
1391
|
+
"windows_i686_gnu 0.36.1",
|
1392
|
+
"windows_i686_msvc 0.36.1",
|
1393
|
+
"windows_x86_64_gnu 0.36.1",
|
1394
|
+
"windows_x86_64_msvc 0.36.1",
|
1395
|
+
]
|
1396
|
+
|
1397
|
+
[[package]]
|
1398
|
+
name = "windows-sys"
|
1399
|
+
version = "0.42.0"
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1401
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
1402
|
+
dependencies = [
|
1403
|
+
"windows_aarch64_gnullvm",
|
1404
|
+
"windows_aarch64_msvc 0.42.0",
|
1405
|
+
"windows_i686_gnu 0.42.0",
|
1406
|
+
"windows_i686_msvc 0.42.0",
|
1407
|
+
"windows_x86_64_gnu 0.42.0",
|
1408
|
+
"windows_x86_64_gnullvm",
|
1409
|
+
"windows_x86_64_msvc 0.42.0",
|
1410
|
+
]
|
1411
|
+
|
1412
|
+
[[package]]
|
1413
|
+
name = "windows_aarch64_gnullvm"
|
1414
|
+
version = "0.42.0"
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1416
|
+
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
|
1417
|
+
|
1418
|
+
[[package]]
|
1419
|
+
name = "windows_aarch64_msvc"
|
1420
|
+
version = "0.36.1"
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1422
|
+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
1423
|
+
|
1424
|
+
[[package]]
|
1425
|
+
name = "windows_aarch64_msvc"
|
1426
|
+
version = "0.42.0"
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1428
|
+
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
|
1429
|
+
|
1430
|
+
[[package]]
|
1431
|
+
name = "windows_i686_gnu"
|
1432
|
+
version = "0.36.1"
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1434
|
+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
1435
|
+
|
1436
|
+
[[package]]
|
1437
|
+
name = "windows_i686_gnu"
|
1438
|
+
version = "0.42.0"
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1440
|
+
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
|
1441
|
+
|
1442
|
+
[[package]]
|
1443
|
+
name = "windows_i686_msvc"
|
1444
|
+
version = "0.36.1"
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446
|
+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
1447
|
+
|
1448
|
+
[[package]]
|
1449
|
+
name = "windows_i686_msvc"
|
1450
|
+
version = "0.42.0"
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1452
|
+
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
|
1453
|
+
|
1454
|
+
[[package]]
|
1455
|
+
name = "windows_x86_64_gnu"
|
1456
|
+
version = "0.36.1"
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1458
|
+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
1459
|
+
|
1460
|
+
[[package]]
|
1461
|
+
name = "windows_x86_64_gnu"
|
1462
|
+
version = "0.42.0"
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1464
|
+
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
|
1465
|
+
|
1466
|
+
[[package]]
|
1467
|
+
name = "windows_x86_64_gnullvm"
|
1468
|
+
version = "0.42.0"
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1470
|
+
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
|
1471
|
+
|
1472
|
+
[[package]]
|
1473
|
+
name = "windows_x86_64_msvc"
|
1474
|
+
version = "0.36.1"
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1476
|
+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
1477
|
+
|
1478
|
+
[[package]]
|
1479
|
+
name = "windows_x86_64_msvc"
|
1480
|
+
version = "0.42.0"
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1482
|
+
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
|
1045
1483
|
|
1046
1484
|
[[package]]
|
1047
1485
|
name = "zstd"
|
1048
|
-
version = "0.
|
1486
|
+
version = "0.11.2+zstd.1.5.2"
|
1049
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1488
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
1050
1489
|
dependencies = [
|
1051
|
-
"zstd-safe
|
1490
|
+
"zstd-safe",
|
1052
1491
|
]
|
1053
1492
|
|
1054
1493
|
[[package]]
|
1055
1494
|
name = "zstd-safe"
|
1056
|
-
version = "
|
1495
|
+
version = "5.0.2+zstd.1.5.2"
|
1057
1496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1497
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
1058
1498
|
dependencies = [
|
1059
|
-
"libc
|
1060
|
-
"zstd-sys
|
1499
|
+
"libc",
|
1500
|
+
"zstd-sys",
|
1061
1501
|
]
|
1062
1502
|
|
1063
1503
|
[[package]]
|
1064
1504
|
name = "zstd-sys"
|
1065
|
-
version = "
|
1066
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
-
|
1068
|
-
|
1069
|
-
"
|
1070
|
-
"libc
|
1071
|
-
]
|
1072
|
-
|
1073
|
-
[metadata]
|
1074
|
-
"checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
|
1075
|
-
"checksum aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
|
1076
|
-
"checksum anyhow 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)" = "d9a60d744a80c30fcb657dfe2c1b22bcb3e814c1a1e3674f32bf5820b570fbff"
|
1077
|
-
"checksum arrayref 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
|
1078
|
-
"checksum arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
1079
|
-
"checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
1080
|
-
"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
|
1081
|
-
"checksum backtrace 0.3.46 (registry+https://github.com/rust-lang/crates.io-index)" = "b1e692897359247cc6bb902933361652380af0f1b7651ae5c5013407f30e109e"
|
1082
|
-
"checksum backtrace-sys 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "18fbebbe1c9d1f383a9cc7e8ccdb471b91c8d024ee9c2ca5b5346121fe8b4399"
|
1083
|
-
"checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
|
1084
|
-
"checksum base64 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d5ca2cd0adc3f48f9e9ea5a6bbdf9ccc0bfade884847e484d452414c7ccffb3"
|
1085
|
-
"checksum bincode 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
|
1086
|
-
"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
1087
|
-
"checksum blake2b_simd 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
|
1088
|
-
"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
|
1089
|
-
"checksum block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
|
1090
|
-
"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
|
1091
|
-
"checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
|
1092
|
-
"checksum cc 1.0.52 (registry+https://github.com/rust-lang/crates.io-index)" = "c3d87b23d6a92cd03af510a5ade527033f6aa6fa92161e2d5863a907d4c5e31d"
|
1093
|
-
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
1094
|
-
"checksum constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
1095
|
-
"checksum cranelift-bforest 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4425bb6c3f3d2f581c650f1a1fdd3196a975490149cf59bea9d34c3bea79eda"
|
1096
|
-
"checksum cranelift-codegen 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d166b289fd30062ee6de86284750fc3fe5d037c6b864b3326ce153239b0626e1"
|
1097
|
-
"checksum cranelift-codegen-meta 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02c9fb2306a36d41c5facd4bf3400bc6c157185c43a96eaaa503471c34c5144b"
|
1098
|
-
"checksum cranelift-codegen-shared 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44e0cfe9b1f97d9f836bca551618106c7d53b93b579029ecd38e73daa7eb689e"
|
1099
|
-
"checksum cranelift-entity 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "926a73c432e5ba9c891171ff50b75e7d992cd76cd271f0a0a0ba199138077472"
|
1100
|
-
"checksum cranelift-frontend 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e45f82e3446dd1ebb8c2c2f6a6b0e6cd6cd52965c7e5f7b1b35e9a9ace31ccde"
|
1101
|
-
"checksum cranelift-native 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "488b5d481bb0996a143e55a9d1739ef425efa20d4a5e5e98c859a8573c9ead9a"
|
1102
|
-
"checksum cranelift-wasm 0.63.0 (registry+https://github.com/rust-lang/crates.io-index)" = "00aa8dde71fd9fdb1958e7b0ef8f524c1560e2c6165e4ea54bc302b40551c161"
|
1103
|
-
"checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
|
1104
|
-
"checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
|
1105
|
-
"checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
|
1106
|
-
"checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
|
1107
|
-
"checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
|
1108
|
-
"checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
|
1109
|
-
"checksum directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
|
1110
|
-
"checksum dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
|
1111
|
-
"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
|
1112
|
-
"checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
|
1113
|
-
"checksum errno 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b480f641ccf0faf324e20c1d3e53d81b7484c698b42ea677f6907ae4db195371"
|
1114
|
-
"checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
|
1115
|
-
"checksum faerie 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfef65b0e94693295c5d2fe2506f0ee6f43465342d4b5331659936aee8b16084"
|
1116
|
-
"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
|
1117
|
-
"checksum fallible-iterator 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
1118
|
-
"checksum file-per-thread-logger 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8505b75b31ef7285168dd237c4a7db3c1f3e0927e7d314e670bc98e854272fe9"
|
1119
|
-
"checksum flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42"
|
1120
|
-
"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
|
1121
|
-
"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
|
1122
|
-
"checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
|
1123
|
-
"checksum gimli 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)" = "81dd6190aad0f05ddbbf3245c54ed14ca4aa6dd32f22312b70d8f168c3e3e633"
|
1124
|
-
"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
1125
|
-
"checksum goblin 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3081214398d39e4bd7f2c1975f0488ed04614ffdd976c6fc7a0708278552c0da"
|
1126
|
-
"checksum hermit-abi 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "61565ff7aaace3525556587bd2dc31d4a07071957be715e63ce7b1eccf51a8f4"
|
1127
|
-
"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
|
1128
|
-
"checksum indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292"
|
1129
|
-
"checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
|
1130
|
-
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
1131
|
-
"checksum leb128 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3576a87f2ba00f6f106fdfcd16db1d698d648a26ad8e0573cad8537c3c362d2a"
|
1132
|
-
"checksum libc 0.2.69 (registry+https://github.com/rust-lang/crates.io-index)" = "99e85c08494b21a9054e7fe1374a732aeadaff3980b6990b94bfd3a70f690005"
|
1133
|
-
"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
|
1134
|
-
"checksum mach 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "86dd2487cdfea56def77b88438a2c915fb45113c5319bfe7e14306ca4cd0b0e1"
|
1135
|
-
"checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
1136
|
-
"checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
|
1137
|
-
"checksum memoffset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"
|
1138
|
-
"checksum miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aa679ff6578b1cddee93d7e82e263b94a575e0bfced07284eb0c037c1d2416a5"
|
1139
|
-
"checksum more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238"
|
1140
|
-
"checksum num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
|
1141
|
-
"checksum object 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e5666bbb90bc4d1e5bdcb26c0afda1822d25928341e9384ab187a9b37ab69e36"
|
1142
|
-
"checksum opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
|
1143
|
-
"checksum plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
1144
|
-
"checksum proc-macro2 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "8872cf6f48eee44265156c111456a700ab3483686b3f96df4cf5481c89157319"
|
1145
|
-
"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
1146
|
-
"checksum quote 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4c1f4b0efa5fc5e8ceb705136bfee52cfdb6a4e3509f770b478cd6ed434232a7"
|
1147
|
-
"checksum raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4a349ca83373cfa5d6dbb66fd76e58b2cca08da71a5f6400de0a0a6a9bceeaf"
|
1148
|
-
"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
|
1149
|
-
"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
|
1150
|
-
"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
|
1151
|
-
"checksum redox_users 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431"
|
1152
|
-
"checksum regalloc 0.0.21 (registry+https://github.com/rust-lang/crates.io-index)" = "b27b256b41986ac5141b37b8bbba85d314fbf546c182eb255af6720e07e4f804"
|
1153
|
-
"checksum regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a6020f034922e3194c711b82a627453881bc4682166cabb07134a10c26ba7692"
|
1154
|
-
"checksum regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
|
1155
|
-
"checksum region 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "448e868c6e4cfddfa49b6a72c95906c04e8547465e9536575b95c70a4044f856"
|
1156
|
-
"checksum rust-argon2 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
|
1157
|
-
"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
|
1158
|
-
"checksum rustc-hash 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1159
|
-
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
1160
|
-
"checksum rutie 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "99a4174504679e66c524ffd839767eeca900d8c2e332ecf8bc6b9f15a5b8e5b1"
|
1161
|
-
"checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1162
|
-
"checksum scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "abb2332cb595d33f7edd5700f4cbf94892e680c7f0ae56adab58a35190b66cb1"
|
1163
|
-
"checksum scroll_derive 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8584eea9b9ff42825b46faf46a8c24d2cff13ec152fa2a50df788b87c07ee28"
|
1164
|
-
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
1165
|
-
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
1166
|
-
"checksum serde 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)" = "36df6ac6412072f67cf767ebbde4133a5b2e88e76dc6187fa7104cd16f783399"
|
1167
|
-
"checksum serde_derive 1.0.106 (registry+https://github.com/rust-lang/crates.io-index)" = "9e549e3abf4fb8621bd1609f11dfc9f5e50320802273b12f3811a67e6716ea6c"
|
1168
|
-
"checksum sha2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "27044adfd2e1f077f649f59deb9490d3941d674002f7d062870a60ebe9bd47a0"
|
1169
|
-
"checksum smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
|
1170
|
-
"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
|
1171
|
-
"checksum string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd710eadff449a1531351b0e43eb81ea404336fa2f56c777427ab0e32a4cf183"
|
1172
|
-
"checksum syn 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "410a7488c0a728c7ceb4ad59b9567eb4053d02e8cc7f5c0e0eeeb39518369213"
|
1173
|
-
"checksum target-lexicon 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ab0e7238dcc7b40a7be719a25365910f6807bd864f4cce6b2e6b873658e2b19d"
|
1174
|
-
"checksum termcolor 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
|
1175
|
-
"checksum thiserror 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "d12a1dae4add0f0d568eebc7bf142f145ba1aa2544cafb195c76f0f409091b60"
|
1176
|
-
"checksum thiserror-impl 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "3f34e0c1caaa462fd840ec6b768946ea1e7842620d94fe29d5b847138f521269"
|
1177
|
-
"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
|
1178
|
-
"checksum toml 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
|
1179
|
-
"checksum typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
|
1180
|
-
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
|
1181
|
-
"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
1182
|
-
"checksum wasmparser 0.51.4 (registry+https://github.com/rust-lang/crates.io-index)" = "aeb1956b19469d1c5e63e459d29e7b5aa0f558d9f16fcef09736f8a265e6c10a"
|
1183
|
-
"checksum wasmtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b98eb07c950a0e192d7eccca1aae502c2ec6eb46e65d785e49cc2878e9962aa1"
|
1184
|
-
"checksum wasmtime-debug 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d39ba645aee700b29ff0093028b4123556dd142a74973f04ed6225eedb40e77d"
|
1185
|
-
"checksum wasmtime-environ 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed54fd9d64dfeeee7c285fd126174a6b5e6d4efc7e5a1566fdb635e60ff6a74e"
|
1186
|
-
"checksum wasmtime-jit 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8da8f32b1cc4c133612ff78e413213e24facb52f07748fc9f3c457b20918fa1d"
|
1187
|
-
"checksum wasmtime-profiling 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b0b0c85eda9345e1dc260c7e3e532dd3544dc0e885b0d35aab7ceb95664fd4d"
|
1188
|
-
"checksum wasmtime-runtime 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "460b71a4366e26e2d95ecb972d8375d5a8a0c6f0394752d2906c0d37516e0d27"
|
1189
|
-
"checksum wast 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "47b11c94c63d5365a76ea287f8e6e5b6050233fae4b2423aea2a1e126a385e17"
|
1190
|
-
"checksum wat 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)" = "03db18bc33cff3859c296efbefdcc00763a644539feeadca3415a1cee8a2835d"
|
1191
|
-
"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
|
1192
|
-
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
1193
|
-
"checksum winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
1194
|
-
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1195
|
-
"checksum zstd 0.5.1+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5c5d978b793ae64375b80baf652919b148f6a496ac8802922d9999f5a553194f"
|
1196
|
-
"checksum zstd-safe 2.0.3+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bee25eac9753cfedd48133fa1736cbd23b774e253d89badbeac7d12b23848d3f"
|
1197
|
-
"checksum zstd-sys 1.4.15+zstd.1.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "89719b034dc22d240d5b407fb0a3fe6d29952c181cff9a9f95c0bd40b4f8f7d8"
|
1505
|
+
version = "2.0.1+zstd.1.5.2"
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1507
|
+
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
|
1508
|
+
dependencies = [
|
1509
|
+
"cc",
|
1510
|
+
"libc",
|
1511
|
+
]
|