ironcalc 0.7.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +6 -0
- data/Cargo.lock +1239 -0
- data/Cargo.toml +9 -0
- data/LICENSE-Apache-2.0.md +191 -0
- data/LICENSE-MIT.md +9 -0
- data/README.md +124 -0
- data/ext/ironcalc/Cargo.toml +18 -0
- data/ext/ironcalc/extconf.rb +4 -0
- data/ext/ironcalc/src/error.rs +17 -0
- data/ext/ironcalc/src/lib.rs +270 -0
- data/ext/ironcalc/src/model.rs +330 -0
- data/ext/ironcalc/src/user_model.rs +365 -0
- data/lib/ironcalc/model.rb +81 -0
- data/lib/ironcalc/native_methods.rb +501 -0
- data/lib/ironcalc/version.rb +3 -0
- data/lib/ironcalc.rb +11 -0
- metadata +74 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1239 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aes"
|
|
13
|
+
version = "0.8.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"cipher",
|
|
19
|
+
"cpufeatures",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "aho-corasick"
|
|
24
|
+
version = "1.1.4"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"memchr",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "android_system_properties"
|
|
33
|
+
version = "0.1.5"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"libc",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "approx"
|
|
42
|
+
version = "0.5.1"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"num-traits",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "arrayvec"
|
|
51
|
+
version = "0.7.6"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "autocfg"
|
|
57
|
+
version = "1.5.1"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "base64ct"
|
|
63
|
+
version = "1.8.3"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bindgen"
|
|
69
|
+
version = "0.72.1"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"bitflags",
|
|
74
|
+
"cexpr",
|
|
75
|
+
"clang-sys",
|
|
76
|
+
"itertools 0.13.0",
|
|
77
|
+
"proc-macro2",
|
|
78
|
+
"quote",
|
|
79
|
+
"regex",
|
|
80
|
+
"rustc-hash",
|
|
81
|
+
"shlex 1.3.0",
|
|
82
|
+
"syn",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "bitcode"
|
|
87
|
+
version = "0.6.9"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "0a6ed1b54d8dc333e7be604d00fa9262f4635485ffea923647b6521a5fff045d"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"arrayvec",
|
|
92
|
+
"bitcode_derive",
|
|
93
|
+
"bytemuck",
|
|
94
|
+
"glam",
|
|
95
|
+
"serde",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "bitcode_derive"
|
|
100
|
+
version = "0.6.9"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "238b90427dfad9da4a9abd60f3ec1cdee6b80454bde49ed37f1781dd8e9dc7f9"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"proc-macro2",
|
|
105
|
+
"quote",
|
|
106
|
+
"syn",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "bitflags"
|
|
111
|
+
version = "2.13.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "block-buffer"
|
|
117
|
+
version = "0.10.4"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"generic-array",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bumpalo"
|
|
126
|
+
version = "3.20.3"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bytemuck"
|
|
132
|
+
version = "1.25.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "byteorder"
|
|
138
|
+
version = "1.5.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "bzip2"
|
|
144
|
+
version = "0.4.4"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"bzip2-sys",
|
|
149
|
+
"libc",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "bzip2-sys"
|
|
154
|
+
version = "0.1.13+1.0.8"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"cc",
|
|
159
|
+
"pkg-config",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "cc"
|
|
164
|
+
version = "1.2.64"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"find-msvc-tools",
|
|
169
|
+
"jobserver",
|
|
170
|
+
"libc",
|
|
171
|
+
"shlex 2.0.1",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "cexpr"
|
|
176
|
+
version = "0.6.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"nom",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "cfg-if"
|
|
185
|
+
version = "1.0.4"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "chrono"
|
|
191
|
+
version = "0.4.45"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"iana-time-zone",
|
|
196
|
+
"js-sys",
|
|
197
|
+
"num-traits",
|
|
198
|
+
"wasm-bindgen",
|
|
199
|
+
"windows-link",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "chrono-tz"
|
|
204
|
+
version = "0.10.4"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"chrono",
|
|
209
|
+
"phf",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "cipher"
|
|
214
|
+
version = "0.4.4"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"crypto-common",
|
|
219
|
+
"inout",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "clang-sys"
|
|
224
|
+
version = "1.8.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"glob",
|
|
229
|
+
"libc",
|
|
230
|
+
"libloading",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "constant_time_eq"
|
|
235
|
+
version = "0.1.5"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "core-foundation-sys"
|
|
241
|
+
version = "0.8.7"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "cpufeatures"
|
|
247
|
+
version = "0.2.17"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"libc",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "crc32fast"
|
|
256
|
+
version = "1.5.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"cfg-if",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "crossbeam-utils"
|
|
265
|
+
version = "0.8.21"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "crypto-common"
|
|
271
|
+
version = "0.1.7"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"generic-array",
|
|
276
|
+
"typenum",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "csv"
|
|
281
|
+
version = "1.4.0"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"csv-core",
|
|
286
|
+
"itoa",
|
|
287
|
+
"ryu",
|
|
288
|
+
"serde_core",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "csv-core"
|
|
293
|
+
version = "0.1.13"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"memchr",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "deranged"
|
|
302
|
+
version = "0.5.8"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "digest"
|
|
308
|
+
version = "0.10.7"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"block-buffer",
|
|
313
|
+
"crypto-common",
|
|
314
|
+
"subtle",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "either"
|
|
319
|
+
version = "1.16.0"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "find-msvc-tools"
|
|
325
|
+
version = "0.1.9"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "flate2"
|
|
331
|
+
version = "1.1.9"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"crc32fast",
|
|
336
|
+
"miniz_oxide",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "futures-core"
|
|
341
|
+
version = "0.3.32"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "futures-task"
|
|
347
|
+
version = "0.3.32"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "futures-util"
|
|
353
|
+
version = "0.3.32"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"futures-core",
|
|
358
|
+
"futures-task",
|
|
359
|
+
"pin-project-lite",
|
|
360
|
+
"slab",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "generic-array"
|
|
365
|
+
version = "0.14.7"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"typenum",
|
|
370
|
+
"version_check",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "getrandom"
|
|
375
|
+
version = "0.2.17"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"cfg-if",
|
|
380
|
+
"libc",
|
|
381
|
+
"wasi",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "getrandom"
|
|
386
|
+
version = "0.3.4"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"cfg-if",
|
|
391
|
+
"libc",
|
|
392
|
+
"r-efi",
|
|
393
|
+
"wasip2",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "glam"
|
|
398
|
+
version = "0.33.1"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "898f5a568a84989b6c0f8caa50a93074b97dbdc58fc6d9543157bb4562758933"
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "glob"
|
|
404
|
+
version = "0.3.3"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "hmac"
|
|
410
|
+
version = "0.12.1"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"digest",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "iana-time-zone"
|
|
419
|
+
version = "0.1.65"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"android_system_properties",
|
|
424
|
+
"core-foundation-sys",
|
|
425
|
+
"iana-time-zone-haiku",
|
|
426
|
+
"js-sys",
|
|
427
|
+
"log",
|
|
428
|
+
"wasm-bindgen",
|
|
429
|
+
"windows-core",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "iana-time-zone-haiku"
|
|
434
|
+
version = "0.1.2"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"cc",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "inout"
|
|
443
|
+
version = "0.1.4"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"generic-array",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "ironcalc"
|
|
452
|
+
version = "0.7.1"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "8e07dd44af17a9e14e7df372347ee0bfc3f0bbbf38894aba5e9abfb53f32ba95"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"bitcode",
|
|
457
|
+
"chrono",
|
|
458
|
+
"ironcalc_base",
|
|
459
|
+
"itertools 0.12.1",
|
|
460
|
+
"roxmltree",
|
|
461
|
+
"serde",
|
|
462
|
+
"serde_json",
|
|
463
|
+
"thiserror",
|
|
464
|
+
"zip",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "ironcalc_base"
|
|
469
|
+
version = "0.7.1"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "9f208abea2365061ed7ce3f6a70e7c1537181ea11780de4974aae3082bf4c6d9"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"bitcode",
|
|
474
|
+
"chrono",
|
|
475
|
+
"chrono-tz",
|
|
476
|
+
"csv",
|
|
477
|
+
"js-sys",
|
|
478
|
+
"rand",
|
|
479
|
+
"regex",
|
|
480
|
+
"ryu",
|
|
481
|
+
"serde",
|
|
482
|
+
"statrs",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "ironcalc_ruby"
|
|
487
|
+
version = "0.7.1.0"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"bitcode",
|
|
490
|
+
"ironcalc",
|
|
491
|
+
"magnus",
|
|
492
|
+
"serde",
|
|
493
|
+
"serde_json",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "itertools"
|
|
498
|
+
version = "0.12.1"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"either",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "itertools"
|
|
507
|
+
version = "0.13.0"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"either",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "itoa"
|
|
516
|
+
version = "1.0.18"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "jobserver"
|
|
522
|
+
version = "0.1.34"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"getrandom 0.3.4",
|
|
527
|
+
"libc",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "js-sys"
|
|
532
|
+
version = "0.3.102"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"cfg-if",
|
|
537
|
+
"futures-util",
|
|
538
|
+
"wasm-bindgen",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "lazy_static"
|
|
543
|
+
version = "1.5.0"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "libc"
|
|
549
|
+
version = "0.2.186"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "libloading"
|
|
555
|
+
version = "0.8.9"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"cfg-if",
|
|
560
|
+
"windows-link",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "log"
|
|
565
|
+
version = "0.4.32"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "magnus"
|
|
571
|
+
version = "0.8.2"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"magnus-macros",
|
|
576
|
+
"rb-sys",
|
|
577
|
+
"rb-sys-env",
|
|
578
|
+
"seq-macro",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "magnus-macros"
|
|
583
|
+
version = "0.8.0"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"proc-macro2",
|
|
588
|
+
"quote",
|
|
589
|
+
"syn",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "memchr"
|
|
594
|
+
version = "2.8.2"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "minimal-lexical"
|
|
600
|
+
version = "0.2.1"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "miniz_oxide"
|
|
606
|
+
version = "0.8.9"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"adler2",
|
|
611
|
+
"simd-adler32",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "nom"
|
|
616
|
+
version = "7.1.3"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"memchr",
|
|
621
|
+
"minimal-lexical",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "num-conv"
|
|
626
|
+
version = "0.2.2"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "num-traits"
|
|
632
|
+
version = "0.2.19"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"autocfg",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "once_cell"
|
|
641
|
+
version = "1.21.4"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "password-hash"
|
|
647
|
+
version = "0.4.2"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"base64ct",
|
|
652
|
+
"rand_core",
|
|
653
|
+
"subtle",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "pbkdf2"
|
|
658
|
+
version = "0.11.0"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"digest",
|
|
663
|
+
"hmac",
|
|
664
|
+
"password-hash",
|
|
665
|
+
"sha2",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "phf"
|
|
670
|
+
version = "0.12.1"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"phf_shared",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "phf_shared"
|
|
679
|
+
version = "0.12.1"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"siphasher",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "pin-project-lite"
|
|
688
|
+
version = "0.2.17"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "pkg-config"
|
|
694
|
+
version = "0.3.33"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "powerfmt"
|
|
700
|
+
version = "0.2.0"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "ppv-lite86"
|
|
706
|
+
version = "0.2.21"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"zerocopy",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "proc-macro2"
|
|
715
|
+
version = "1.0.106"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"unicode-ident",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "quote"
|
|
724
|
+
version = "1.0.45"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"proc-macro2",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "r-efi"
|
|
733
|
+
version = "5.3.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "rand"
|
|
739
|
+
version = "0.8.6"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"libc",
|
|
744
|
+
"rand_chacha",
|
|
745
|
+
"rand_core",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "rand_chacha"
|
|
750
|
+
version = "0.3.1"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"ppv-lite86",
|
|
755
|
+
"rand_core",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "rand_core"
|
|
760
|
+
version = "0.6.4"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"getrandom 0.2.17",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "rb-sys"
|
|
769
|
+
version = "0.9.128"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"rb-sys-build",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "rb-sys-build"
|
|
778
|
+
version = "0.9.128"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"bindgen",
|
|
783
|
+
"lazy_static",
|
|
784
|
+
"proc-macro2",
|
|
785
|
+
"quote",
|
|
786
|
+
"regex",
|
|
787
|
+
"shell-words",
|
|
788
|
+
"syn",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "rb-sys-env"
|
|
793
|
+
version = "0.2.3"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "regex"
|
|
799
|
+
version = "1.12.4"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"aho-corasick",
|
|
804
|
+
"memchr",
|
|
805
|
+
"regex-automata",
|
|
806
|
+
"regex-syntax",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "regex-automata"
|
|
811
|
+
version = "0.4.14"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"aho-corasick",
|
|
816
|
+
"memchr",
|
|
817
|
+
"regex-syntax",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "regex-syntax"
|
|
822
|
+
version = "0.8.11"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "roxmltree"
|
|
828
|
+
version = "0.19.0"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "3cd14fd5e3b777a7422cca79358c57a8f6e3a703d9ac187448d0daf220c2407f"
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "rustc-hash"
|
|
834
|
+
version = "2.1.2"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "rustversion"
|
|
840
|
+
version = "1.0.22"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "ryu"
|
|
846
|
+
version = "1.0.23"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "seq-macro"
|
|
852
|
+
version = "0.3.6"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "serde"
|
|
858
|
+
version = "1.0.228"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"serde_core",
|
|
863
|
+
"serde_derive",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "serde_core"
|
|
868
|
+
version = "1.0.228"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"serde_derive",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "serde_derive"
|
|
877
|
+
version = "1.0.228"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"proc-macro2",
|
|
882
|
+
"quote",
|
|
883
|
+
"syn",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "serde_json"
|
|
888
|
+
version = "1.0.150"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"itoa",
|
|
893
|
+
"memchr",
|
|
894
|
+
"serde",
|
|
895
|
+
"serde_core",
|
|
896
|
+
"zmij",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "sha1"
|
|
901
|
+
version = "0.10.6"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"cfg-if",
|
|
906
|
+
"cpufeatures",
|
|
907
|
+
"digest",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "sha2"
|
|
912
|
+
version = "0.10.9"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"cfg-if",
|
|
917
|
+
"cpufeatures",
|
|
918
|
+
"digest",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "shell-words"
|
|
923
|
+
version = "1.1.1"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "shlex"
|
|
929
|
+
version = "1.3.0"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "shlex"
|
|
935
|
+
version = "2.0.1"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "simd-adler32"
|
|
941
|
+
version = "0.3.9"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "siphasher"
|
|
947
|
+
version = "1.0.3"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "slab"
|
|
953
|
+
version = "0.4.12"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "statrs"
|
|
959
|
+
version = "0.18.0"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"approx",
|
|
964
|
+
"num-traits",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "subtle"
|
|
969
|
+
version = "2.6.1"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "syn"
|
|
975
|
+
version = "2.0.117"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"proc-macro2",
|
|
980
|
+
"quote",
|
|
981
|
+
"unicode-ident",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "thiserror"
|
|
986
|
+
version = "1.0.69"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"thiserror-impl",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "thiserror-impl"
|
|
995
|
+
version = "1.0.69"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"proc-macro2",
|
|
1000
|
+
"quote",
|
|
1001
|
+
"syn",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "time"
|
|
1006
|
+
version = "0.3.49"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"deranged",
|
|
1011
|
+
"num-conv",
|
|
1012
|
+
"powerfmt",
|
|
1013
|
+
"serde_core",
|
|
1014
|
+
"time-core",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "time-core"
|
|
1019
|
+
version = "0.1.9"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "typenum"
|
|
1025
|
+
version = "1.20.1"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "unicode-ident"
|
|
1031
|
+
version = "1.0.24"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "version_check"
|
|
1037
|
+
version = "0.9.5"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "wasi"
|
|
1043
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "wasip2"
|
|
1049
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"wit-bindgen",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "wasm-bindgen"
|
|
1058
|
+
version = "0.2.125"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"cfg-if",
|
|
1063
|
+
"once_cell",
|
|
1064
|
+
"rustversion",
|
|
1065
|
+
"wasm-bindgen-macro",
|
|
1066
|
+
"wasm-bindgen-shared",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "wasm-bindgen-macro"
|
|
1071
|
+
version = "0.2.125"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"quote",
|
|
1076
|
+
"wasm-bindgen-macro-support",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "wasm-bindgen-macro-support"
|
|
1081
|
+
version = "0.2.125"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"bumpalo",
|
|
1086
|
+
"proc-macro2",
|
|
1087
|
+
"quote",
|
|
1088
|
+
"syn",
|
|
1089
|
+
"wasm-bindgen-shared",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "wasm-bindgen-shared"
|
|
1094
|
+
version = "0.2.125"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
1097
|
+
dependencies = [
|
|
1098
|
+
"unicode-ident",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "windows-core"
|
|
1103
|
+
version = "0.62.2"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"windows-implement",
|
|
1108
|
+
"windows-interface",
|
|
1109
|
+
"windows-link",
|
|
1110
|
+
"windows-result",
|
|
1111
|
+
"windows-strings",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "windows-implement"
|
|
1116
|
+
version = "0.60.2"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"proc-macro2",
|
|
1121
|
+
"quote",
|
|
1122
|
+
"syn",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "windows-interface"
|
|
1127
|
+
version = "0.59.3"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"proc-macro2",
|
|
1132
|
+
"quote",
|
|
1133
|
+
"syn",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "windows-link"
|
|
1138
|
+
version = "0.2.1"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "windows-result"
|
|
1144
|
+
version = "0.4.1"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"windows-link",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "windows-strings"
|
|
1153
|
+
version = "0.5.1"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"windows-link",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "wit-bindgen"
|
|
1162
|
+
version = "0.57.1"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "zerocopy"
|
|
1168
|
+
version = "0.8.52"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"zerocopy-derive",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "zerocopy-derive"
|
|
1177
|
+
version = "0.8.52"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"proc-macro2",
|
|
1182
|
+
"quote",
|
|
1183
|
+
"syn",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "zip"
|
|
1188
|
+
version = "0.6.6"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"aes",
|
|
1193
|
+
"byteorder",
|
|
1194
|
+
"bzip2",
|
|
1195
|
+
"constant_time_eq",
|
|
1196
|
+
"crc32fast",
|
|
1197
|
+
"crossbeam-utils",
|
|
1198
|
+
"flate2",
|
|
1199
|
+
"hmac",
|
|
1200
|
+
"pbkdf2",
|
|
1201
|
+
"sha1",
|
|
1202
|
+
"time",
|
|
1203
|
+
"zstd",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "zmij"
|
|
1208
|
+
version = "1.0.21"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "zstd"
|
|
1214
|
+
version = "0.11.2+zstd.1.5.2"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
|
1217
|
+
dependencies = [
|
|
1218
|
+
"zstd-safe",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "zstd-safe"
|
|
1223
|
+
version = "5.0.2+zstd.1.5.2"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"libc",
|
|
1228
|
+
"zstd-sys",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "zstd-sys"
|
|
1233
|
+
version = "2.0.16+zstd.1.5.7"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"cc",
|
|
1238
|
+
"pkg-config",
|
|
1239
|
+
]
|