tstring-bindings 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tstring_bindings-0.1.0/Cargo.lock +912 -0
- tstring_bindings-0.1.0/Cargo.toml +21 -0
- tstring_bindings-0.1.0/PKG-INFO +77 -0
- tstring_bindings-0.1.0/README.md +51 -0
- tstring_bindings-0.1.0/json-tstring-rs/Cargo.toml +24 -0
- tstring_bindings-0.1.0/json-tstring-rs/README.md +3 -0
- tstring_bindings-0.1.0/json-tstring-rs/src/lib.rs +2064 -0
- tstring_bindings-0.1.0/json-tstring-rs/tests/conformance.rs +66 -0
- tstring_bindings-0.1.0/json-tstring-rs/tests/parser.rs +48 -0
- tstring_bindings-0.1.0/pyproject.toml +42 -0
- tstring_bindings-0.1.0/python/tstring_bindings/__init__.py +153 -0
- tstring_bindings-0.1.0/python/tstring_bindings/__init__.pyi +38 -0
- tstring_bindings-0.1.0/python/tstring_bindings/_profiles.py +39 -0
- tstring_bindings-0.1.0/python/tstring_bindings/_types.py +13 -0
- tstring_bindings-0.1.0/python/tstring_bindings/py.typed +1 -0
- tstring_bindings-0.1.0/python/tstring_bindings/tstring_bindings.pyi +39 -0
- tstring_bindings-0.1.0/python-bindings/Cargo.toml +35 -0
- tstring_bindings-0.1.0/python-bindings/README.md +51 -0
- tstring_bindings-0.1.0/python-bindings/src/lib.rs +6143 -0
- tstring_bindings-0.1.0/toml-tstring-rs/Cargo.toml +22 -0
- tstring_bindings-0.1.0/toml-tstring-rs/README.md +3 -0
- tstring_bindings-0.1.0/toml-tstring-rs/src/lib.rs +2862 -0
- tstring_bindings-0.1.0/toml-tstring-rs/tests/conformance.rs +96 -0
- tstring_bindings-0.1.0/toml-tstring-rs/tests/parser.rs +38 -0
- tstring_bindings-0.1.0/tstring-core-rs/Cargo.toml +17 -0
- tstring_bindings-0.1.0/tstring-core-rs/README.md +4 -0
- tstring_bindings-0.1.0/tstring-core-rs/src/lib.rs +604 -0
- tstring_bindings-0.1.0/tstring-pyo3-bindings/Cargo.toml +30 -0
- tstring_bindings-0.1.0/tstring-pyo3-bindings/benches/render_paths.rs +120 -0
- tstring_bindings-0.1.0/tstring-pyo3-bindings/src/json.rs +557 -0
- tstring_bindings-0.1.0/tstring-pyo3-bindings/src/lib.rs +459 -0
- tstring_bindings-0.1.0/tstring-pyo3-bindings/src/toml.rs +1075 -0
- tstring_bindings-0.1.0/tstring-pyo3-bindings/src/yaml.rs +1939 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/Cargo.toml +26 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/README.md +3 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/src/lib.rs +6076 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/test-support/renderer_layout.rs +163 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/tests/conformance.rs +66 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/tests/normalized.rs +52 -0
- tstring_bindings-0.1.0/yaml-tstring-rs/tests/parser.rs +38 -0
|
@@ -0,0 +1,912 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.14"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "arraydeque"
|
|
28
|
+
version = "0.5.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "autocfg"
|
|
34
|
+
version = "1.5.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "bumpalo"
|
|
40
|
+
version = "3.20.2"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cast"
|
|
46
|
+
version = "0.3.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "cfg-if"
|
|
52
|
+
version = "1.0.4"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "ciborium"
|
|
58
|
+
version = "0.2.2"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"ciborium-io",
|
|
63
|
+
"ciborium-ll",
|
|
64
|
+
"serde",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "ciborium-io"
|
|
69
|
+
version = "0.2.2"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "ciborium-ll"
|
|
75
|
+
version = "0.2.2"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"ciborium-io",
|
|
80
|
+
"half",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "clap"
|
|
85
|
+
version = "4.6.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"clap_builder",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "clap_builder"
|
|
94
|
+
version = "4.6.0"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"anstyle",
|
|
99
|
+
"clap_lex",
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "clap_lex"
|
|
104
|
+
version = "1.1.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "criterion"
|
|
110
|
+
version = "0.5.1"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"anes",
|
|
115
|
+
"cast",
|
|
116
|
+
"ciborium",
|
|
117
|
+
"clap",
|
|
118
|
+
"criterion-plot",
|
|
119
|
+
"is-terminal",
|
|
120
|
+
"itertools",
|
|
121
|
+
"num-traits",
|
|
122
|
+
"once_cell",
|
|
123
|
+
"oorandom",
|
|
124
|
+
"plotters",
|
|
125
|
+
"rayon",
|
|
126
|
+
"regex",
|
|
127
|
+
"serde",
|
|
128
|
+
"serde_derive",
|
|
129
|
+
"serde_json",
|
|
130
|
+
"tinytemplate",
|
|
131
|
+
"walkdir",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "criterion-plot"
|
|
136
|
+
version = "0.5.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"cast",
|
|
141
|
+
"itertools",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "crossbeam-deque"
|
|
146
|
+
version = "0.8.6"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"crossbeam-epoch",
|
|
151
|
+
"crossbeam-utils",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "crossbeam-epoch"
|
|
156
|
+
version = "0.9.18"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"crossbeam-utils",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "crossbeam-utils"
|
|
165
|
+
version = "0.8.21"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "crunchy"
|
|
171
|
+
version = "0.2.4"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "either"
|
|
177
|
+
version = "1.15.0"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "encoding_rs"
|
|
183
|
+
version = "0.8.35"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"cfg-if",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "equivalent"
|
|
192
|
+
version = "1.0.2"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "foldhash"
|
|
198
|
+
version = "0.1.5"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "half"
|
|
204
|
+
version = "2.7.1"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"cfg-if",
|
|
209
|
+
"crunchy",
|
|
210
|
+
"zerocopy",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "hashbrown"
|
|
215
|
+
version = "0.15.5"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"foldhash",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "hashbrown"
|
|
224
|
+
version = "0.16.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "hashlink"
|
|
230
|
+
version = "0.10.0"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"hashbrown 0.15.5",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "heck"
|
|
239
|
+
version = "0.5.0"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "hermit-abi"
|
|
245
|
+
version = "0.5.2"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "indexmap"
|
|
251
|
+
version = "2.13.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"equivalent",
|
|
256
|
+
"hashbrown 0.16.1",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "indoc"
|
|
261
|
+
version = "2.0.7"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"rustversion",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "is-terminal"
|
|
270
|
+
version = "0.4.17"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"hermit-abi",
|
|
275
|
+
"libc",
|
|
276
|
+
"windows-sys",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "itertools"
|
|
281
|
+
version = "0.10.5"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"either",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "itoa"
|
|
290
|
+
version = "1.0.17"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "js-sys"
|
|
296
|
+
version = "0.3.91"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"once_cell",
|
|
301
|
+
"wasm-bindgen",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "libc"
|
|
306
|
+
version = "0.2.183"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "memchr"
|
|
312
|
+
version = "2.8.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "memoffset"
|
|
318
|
+
version = "0.9.1"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"autocfg",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "num-bigint"
|
|
327
|
+
version = "0.4.6"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"num-integer",
|
|
332
|
+
"num-traits",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "num-integer"
|
|
337
|
+
version = "0.1.46"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"num-traits",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "num-traits"
|
|
346
|
+
version = "0.2.19"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"autocfg",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "once_cell"
|
|
355
|
+
version = "1.21.4"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "oorandom"
|
|
361
|
+
version = "11.1.5"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "ordered-float"
|
|
367
|
+
version = "5.1.0"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"num-traits",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "plotters"
|
|
376
|
+
version = "0.3.7"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"num-traits",
|
|
381
|
+
"plotters-backend",
|
|
382
|
+
"plotters-svg",
|
|
383
|
+
"wasm-bindgen",
|
|
384
|
+
"web-sys",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "plotters-backend"
|
|
389
|
+
version = "0.3.7"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "plotters-svg"
|
|
395
|
+
version = "0.3.7"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"plotters-backend",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "portable-atomic"
|
|
404
|
+
version = "1.13.1"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "proc-macro2"
|
|
410
|
+
version = "1.0.106"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"unicode-ident",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "pyo3"
|
|
419
|
+
version = "0.25.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"indoc",
|
|
424
|
+
"libc",
|
|
425
|
+
"memoffset",
|
|
426
|
+
"once_cell",
|
|
427
|
+
"portable-atomic",
|
|
428
|
+
"pyo3-build-config",
|
|
429
|
+
"pyo3-ffi",
|
|
430
|
+
"pyo3-macros",
|
|
431
|
+
"unindent",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "pyo3-build-config"
|
|
436
|
+
version = "0.25.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"once_cell",
|
|
441
|
+
"target-lexicon",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "pyo3-ffi"
|
|
446
|
+
version = "0.25.1"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"libc",
|
|
451
|
+
"pyo3-build-config",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "pyo3-macros"
|
|
456
|
+
version = "0.25.1"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"proc-macro2",
|
|
461
|
+
"pyo3-macros-backend",
|
|
462
|
+
"quote",
|
|
463
|
+
"syn",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "pyo3-macros-backend"
|
|
468
|
+
version = "0.25.1"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"heck",
|
|
473
|
+
"proc-macro2",
|
|
474
|
+
"pyo3-build-config",
|
|
475
|
+
"quote",
|
|
476
|
+
"syn",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "pythonize"
|
|
481
|
+
version = "0.25.0"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "597907139a488b22573158793aa7539df36ae863eba300c75f3a0d65fc475e27"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"pyo3",
|
|
486
|
+
"serde",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "quote"
|
|
491
|
+
version = "1.0.45"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"proc-macro2",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "rayon"
|
|
500
|
+
version = "1.11.0"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
503
|
+
dependencies = [
|
|
504
|
+
"either",
|
|
505
|
+
"rayon-core",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "rayon-core"
|
|
510
|
+
version = "1.13.0"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"crossbeam-deque",
|
|
515
|
+
"crossbeam-utils",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "regex"
|
|
520
|
+
version = "1.12.3"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"aho-corasick",
|
|
525
|
+
"memchr",
|
|
526
|
+
"regex-automata",
|
|
527
|
+
"regex-syntax",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "regex-automata"
|
|
532
|
+
version = "0.4.14"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"aho-corasick",
|
|
537
|
+
"memchr",
|
|
538
|
+
"regex-syntax",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "regex-syntax"
|
|
543
|
+
version = "0.8.10"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "rustversion"
|
|
549
|
+
version = "1.0.22"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "same-file"
|
|
555
|
+
version = "1.0.6"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"winapi-util",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "saphyr"
|
|
564
|
+
version = "0.0.6"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "f3767dfe8889ebb55a21409df2b6f36e66abfbe1eb92d64ff76ae799d3f91016"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"arraydeque",
|
|
569
|
+
"encoding_rs",
|
|
570
|
+
"hashlink",
|
|
571
|
+
"ordered-float",
|
|
572
|
+
"saphyr-parser",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "saphyr-parser"
|
|
577
|
+
version = "0.0.6"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "4fb771b59f6b1985d1406325ec28f97cfb14256abcec4fdfb37b36a1766d6af7"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"arraydeque",
|
|
582
|
+
"hashlink",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "serde"
|
|
587
|
+
version = "1.0.228"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"serde_core",
|
|
592
|
+
"serde_derive",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "serde_core"
|
|
597
|
+
version = "1.0.228"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"serde_derive",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "serde_derive"
|
|
606
|
+
version = "1.0.228"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"proc-macro2",
|
|
611
|
+
"quote",
|
|
612
|
+
"syn",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "serde_json"
|
|
617
|
+
version = "1.0.149"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"itoa",
|
|
622
|
+
"memchr",
|
|
623
|
+
"serde",
|
|
624
|
+
"serde_core",
|
|
625
|
+
"zmij",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "serde_spanned"
|
|
630
|
+
version = "1.0.4"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"serde_core",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "syn"
|
|
639
|
+
version = "2.0.117"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"proc-macro2",
|
|
644
|
+
"quote",
|
|
645
|
+
"unicode-ident",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "target-lexicon"
|
|
650
|
+
version = "0.13.5"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "tinytemplate"
|
|
656
|
+
version = "1.2.1"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"serde",
|
|
661
|
+
"serde_json",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "toml"
|
|
666
|
+
version = "0.9.12+spec-1.1.0"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"indexmap",
|
|
671
|
+
"serde_core",
|
|
672
|
+
"serde_spanned",
|
|
673
|
+
"toml_datetime",
|
|
674
|
+
"toml_parser",
|
|
675
|
+
"toml_writer",
|
|
676
|
+
"winnow",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "toml_datetime"
|
|
681
|
+
version = "0.7.5+spec-1.1.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"serde_core",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "toml_parser"
|
|
690
|
+
version = "1.0.9+spec-1.1.0"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"winnow",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "toml_writer"
|
|
699
|
+
version = "1.0.6+spec-1.1.0"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "tstring-bindings"
|
|
705
|
+
version = "0.1.0"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"pyo3",
|
|
708
|
+
"pythonize",
|
|
709
|
+
"saphyr",
|
|
710
|
+
"serde_json",
|
|
711
|
+
"toml",
|
|
712
|
+
"tstring-json",
|
|
713
|
+
"tstring-pyo3-bindings",
|
|
714
|
+
"tstring-syntax",
|
|
715
|
+
"tstring-toml",
|
|
716
|
+
"tstring-yaml",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "tstring-json"
|
|
721
|
+
version = "0.1.0"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"serde_json",
|
|
724
|
+
"toml",
|
|
725
|
+
"tstring-syntax",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "tstring-pyo3-bindings"
|
|
730
|
+
version = "0.1.0"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"criterion",
|
|
733
|
+
"pyo3",
|
|
734
|
+
"saphyr",
|
|
735
|
+
"saphyr-parser",
|
|
736
|
+
"serde_json",
|
|
737
|
+
"toml",
|
|
738
|
+
"tstring-json",
|
|
739
|
+
"tstring-syntax",
|
|
740
|
+
"tstring-toml",
|
|
741
|
+
"tstring-yaml",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "tstring-syntax"
|
|
746
|
+
version = "0.1.0"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"num-bigint",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "tstring-toml"
|
|
753
|
+
version = "0.1.0"
|
|
754
|
+
dependencies = [
|
|
755
|
+
"serde_json",
|
|
756
|
+
"toml",
|
|
757
|
+
"tstring-syntax",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "tstring-yaml"
|
|
762
|
+
version = "0.1.0"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"saphyr",
|
|
765
|
+
"saphyr-parser",
|
|
766
|
+
"serde_json",
|
|
767
|
+
"toml",
|
|
768
|
+
"tstring-syntax",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "tstring-yaml-pyo3-tests"
|
|
773
|
+
version = "0.1.0"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"pyo3",
|
|
776
|
+
"saphyr",
|
|
777
|
+
"tstring-pyo3-bindings",
|
|
778
|
+
"tstring-yaml",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "unicode-ident"
|
|
783
|
+
version = "1.0.24"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "unindent"
|
|
789
|
+
version = "0.2.4"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "walkdir"
|
|
795
|
+
version = "2.5.0"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"same-file",
|
|
800
|
+
"winapi-util",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "wasm-bindgen"
|
|
805
|
+
version = "0.2.114"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"cfg-if",
|
|
810
|
+
"once_cell",
|
|
811
|
+
"rustversion",
|
|
812
|
+
"wasm-bindgen-macro",
|
|
813
|
+
"wasm-bindgen-shared",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "wasm-bindgen-macro"
|
|
818
|
+
version = "0.2.114"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"quote",
|
|
823
|
+
"wasm-bindgen-macro-support",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "wasm-bindgen-macro-support"
|
|
828
|
+
version = "0.2.114"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"bumpalo",
|
|
833
|
+
"proc-macro2",
|
|
834
|
+
"quote",
|
|
835
|
+
"syn",
|
|
836
|
+
"wasm-bindgen-shared",
|
|
837
|
+
]
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "wasm-bindgen-shared"
|
|
841
|
+
version = "0.2.114"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"unicode-ident",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "web-sys"
|
|
850
|
+
version = "0.3.91"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"js-sys",
|
|
855
|
+
"wasm-bindgen",
|
|
856
|
+
]
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "winapi-util"
|
|
860
|
+
version = "0.1.11"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"windows-sys",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "windows-link"
|
|
869
|
+
version = "0.2.1"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "windows-sys"
|
|
875
|
+
version = "0.61.2"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"windows-link",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "winnow"
|
|
884
|
+
version = "0.7.15"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "zerocopy"
|
|
890
|
+
version = "0.8.42"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"zerocopy-derive",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "zerocopy-derive"
|
|
899
|
+
version = "0.8.42"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"proc-macro2",
|
|
904
|
+
"quote",
|
|
905
|
+
"syn",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "zmij"
|
|
910
|
+
version = "1.0.21"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|