pyhyperminhash 0.1.5__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/Cargo.lock +136 -163
- pyhyperminhash-0.2.1/Cargo.toml +44 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/PKG-INFO +34 -7
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/README.md +32 -5
- pyhyperminhash-0.2.1/examples/bench.py +268 -0
- pyhyperminhash-0.2.1/pyhyperminhash.pyi +59 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/pyproject.toml +4 -1
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/src/lib.rs +117 -31
- pyhyperminhash-0.2.1/tests/test_pyhyperminhash.py +323 -0
- pyhyperminhash-0.1.5/.github/workflows/CI.yml +0 -285
- pyhyperminhash-0.1.5/.github/workflows/check.yml +0 -68
- pyhyperminhash-0.1.5/.gitignore +0 -3
- pyhyperminhash-0.1.5/Cargo.toml +0 -25
- pyhyperminhash-0.1.5/pyhyperminhash.pyi +0 -38
- pyhyperminhash-0.1.5/tests/test_pyhyperminhash.py +0 -197
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/LICENSE +0 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/build.rs +0 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/examples/large_file.py +0 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/examples/simple.py +0 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/examples/sqlite_agg.py +0 -0
- {pyhyperminhash-0.1.5 → pyhyperminhash-0.2.1}/examples/unique_files.py +0 -0
|
@@ -2,26 +2,20 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "autocfg"
|
|
7
|
-
version = "1.5.0"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
10
|
-
|
|
11
5
|
[[package]]
|
|
12
6
|
name = "built"
|
|
13
|
-
version = "0.8.
|
|
7
|
+
version = "0.8.1"
|
|
14
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
9
|
+
checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
|
|
16
10
|
dependencies = [
|
|
17
11
|
"cargo-lock",
|
|
18
12
|
]
|
|
19
13
|
|
|
20
14
|
[[package]]
|
|
21
15
|
name = "cargo-lock"
|
|
22
|
-
version = "
|
|
16
|
+
version = "11.0.1"
|
|
23
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
18
|
+
checksum = "63585cdf8572aa7adf0e30a253f988f2b77233bfac1973d52efb6dd53a75920e"
|
|
25
19
|
dependencies = [
|
|
26
20
|
"petgraph",
|
|
27
21
|
"semver",
|
|
@@ -32,9 +26,9 @@ dependencies = [
|
|
|
32
26
|
|
|
33
27
|
[[package]]
|
|
34
28
|
name = "displaydoc"
|
|
35
|
-
version = "0.2.
|
|
29
|
+
version = "0.2.6"
|
|
36
30
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
-
checksum = "
|
|
31
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
38
32
|
dependencies = [
|
|
39
33
|
"proc-macro2",
|
|
40
34
|
"quote",
|
|
@@ -49,9 +43,15 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
49
43
|
|
|
50
44
|
[[package]]
|
|
51
45
|
name = "fixedbitset"
|
|
52
|
-
version = "0.
|
|
46
|
+
version = "0.5.7"
|
|
53
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
48
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "foldhash"
|
|
52
|
+
version = "0.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
55
55
|
|
|
56
56
|
[[package]]
|
|
57
57
|
name = "form_urlencoded"
|
|
@@ -64,9 +64,18 @@ dependencies = [
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "hashbrown"
|
|
67
|
-
version = "0.
|
|
67
|
+
version = "0.15.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"foldhash",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "hashbrown"
|
|
76
|
+
version = "0.17.1"
|
|
68
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
78
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
70
79
|
|
|
71
80
|
[[package]]
|
|
72
81
|
name = "heck"
|
|
@@ -76,21 +85,22 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
76
85
|
|
|
77
86
|
[[package]]
|
|
78
87
|
name = "hyperminhash"
|
|
79
|
-
version = "0.2.
|
|
88
|
+
version = "0.2.4"
|
|
80
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
90
|
+
checksum = "197811a19bbf25c62ec1cd6f8ca16382f9afe17e563ef7066fb6f7a1cbfbba07"
|
|
82
91
|
dependencies = [
|
|
83
92
|
"xxhash-rust",
|
|
84
93
|
]
|
|
85
94
|
|
|
86
95
|
[[package]]
|
|
87
96
|
name = "icu_collections"
|
|
88
|
-
version = "2.
|
|
97
|
+
version = "2.2.0"
|
|
89
98
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
-
checksum = "
|
|
99
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
91
100
|
dependencies = [
|
|
92
101
|
"displaydoc",
|
|
93
102
|
"potential_utf",
|
|
103
|
+
"utf8_iter",
|
|
94
104
|
"yoke",
|
|
95
105
|
"zerofrom",
|
|
96
106
|
"zerovec",
|
|
@@ -98,9 +108,9 @@ dependencies = [
|
|
|
98
108
|
|
|
99
109
|
[[package]]
|
|
100
110
|
name = "icu_locale_core"
|
|
101
|
-
version = "2.
|
|
111
|
+
version = "2.2.0"
|
|
102
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "
|
|
113
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
104
114
|
dependencies = [
|
|
105
115
|
"displaydoc",
|
|
106
116
|
"litemap",
|
|
@@ -111,9 +121,9 @@ dependencies = [
|
|
|
111
121
|
|
|
112
122
|
[[package]]
|
|
113
123
|
name = "icu_normalizer"
|
|
114
|
-
version = "2.
|
|
124
|
+
version = "2.2.0"
|
|
115
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
126
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
117
127
|
dependencies = [
|
|
118
128
|
"icu_collections",
|
|
119
129
|
"icu_normalizer_data",
|
|
@@ -125,15 +135,15 @@ dependencies = [
|
|
|
125
135
|
|
|
126
136
|
[[package]]
|
|
127
137
|
name = "icu_normalizer_data"
|
|
128
|
-
version = "2.
|
|
138
|
+
version = "2.2.0"
|
|
129
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
-
checksum = "
|
|
140
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
131
141
|
|
|
132
142
|
[[package]]
|
|
133
143
|
name = "icu_properties"
|
|
134
|
-
version = "2.
|
|
144
|
+
version = "2.2.0"
|
|
135
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
-
checksum = "
|
|
146
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
137
147
|
dependencies = [
|
|
138
148
|
"icu_collections",
|
|
139
149
|
"icu_locale_core",
|
|
@@ -145,15 +155,15 @@ dependencies = [
|
|
|
145
155
|
|
|
146
156
|
[[package]]
|
|
147
157
|
name = "icu_properties_data"
|
|
148
|
-
version = "2.
|
|
158
|
+
version = "2.2.0"
|
|
149
159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
-
checksum = "
|
|
160
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
151
161
|
|
|
152
162
|
[[package]]
|
|
153
163
|
name = "icu_provider"
|
|
154
|
-
version = "2.
|
|
164
|
+
version = "2.2.0"
|
|
155
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
-
checksum = "
|
|
166
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
157
167
|
dependencies = [
|
|
158
168
|
"displaydoc",
|
|
159
169
|
"icu_locale_core",
|
|
@@ -177,9 +187,9 @@ dependencies = [
|
|
|
177
187
|
|
|
178
188
|
[[package]]
|
|
179
189
|
name = "idna_adapter"
|
|
180
|
-
version = "1.2.
|
|
190
|
+
version = "1.2.2"
|
|
181
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
192
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
183
193
|
dependencies = [
|
|
184
194
|
"icu_normalizer",
|
|
185
195
|
"icu_properties",
|
|
@@ -187,55 +197,31 @@ dependencies = [
|
|
|
187
197
|
|
|
188
198
|
[[package]]
|
|
189
199
|
name = "indexmap"
|
|
190
|
-
version = "2.
|
|
200
|
+
version = "2.14.0"
|
|
191
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
202
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
193
203
|
dependencies = [
|
|
194
204
|
"equivalent",
|
|
195
|
-
"hashbrown",
|
|
196
|
-
]
|
|
197
|
-
|
|
198
|
-
[[package]]
|
|
199
|
-
name = "indoc"
|
|
200
|
-
version = "2.0.7"
|
|
201
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
-
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
203
|
-
dependencies = [
|
|
204
|
-
"rustversion",
|
|
205
|
+
"hashbrown 0.17.1",
|
|
205
206
|
]
|
|
206
207
|
|
|
207
208
|
[[package]]
|
|
208
209
|
name = "libc"
|
|
209
|
-
version = "0.2.
|
|
210
|
+
version = "0.2.186"
|
|
210
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
212
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
212
213
|
|
|
213
214
|
[[package]]
|
|
214
215
|
name = "litemap"
|
|
215
|
-
version = "0.8.
|
|
216
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
-
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
218
|
-
|
|
219
|
-
[[package]]
|
|
220
|
-
name = "memchr"
|
|
221
|
-
version = "2.7.6"
|
|
222
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
-
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
224
|
-
|
|
225
|
-
[[package]]
|
|
226
|
-
name = "memoffset"
|
|
227
|
-
version = "0.9.1"
|
|
216
|
+
version = "0.8.2"
|
|
228
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
-
checksum = "
|
|
230
|
-
dependencies = [
|
|
231
|
-
"autocfg",
|
|
232
|
-
]
|
|
218
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
233
219
|
|
|
234
220
|
[[package]]
|
|
235
221
|
name = "once_cell"
|
|
236
|
-
version = "1.21.
|
|
222
|
+
version = "1.21.4"
|
|
237
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
224
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
239
225
|
|
|
240
226
|
[[package]]
|
|
241
227
|
name = "percent-encoding"
|
|
@@ -245,41 +231,43 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
245
231
|
|
|
246
232
|
[[package]]
|
|
247
233
|
name = "petgraph"
|
|
248
|
-
version = "0.
|
|
234
|
+
version = "0.8.3"
|
|
249
235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "
|
|
236
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
251
237
|
dependencies = [
|
|
252
238
|
"fixedbitset",
|
|
239
|
+
"hashbrown 0.15.5",
|
|
253
240
|
"indexmap",
|
|
241
|
+
"serde",
|
|
254
242
|
]
|
|
255
243
|
|
|
256
244
|
[[package]]
|
|
257
245
|
name = "portable-atomic"
|
|
258
|
-
version = "1.
|
|
246
|
+
version = "1.13.1"
|
|
259
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
-
checksum = "
|
|
248
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
261
249
|
|
|
262
250
|
[[package]]
|
|
263
251
|
name = "potential_utf"
|
|
264
|
-
version = "0.1.
|
|
252
|
+
version = "0.1.5"
|
|
265
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
-
checksum = "
|
|
254
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
267
255
|
dependencies = [
|
|
268
256
|
"zerovec",
|
|
269
257
|
]
|
|
270
258
|
|
|
271
259
|
[[package]]
|
|
272
260
|
name = "proc-macro2"
|
|
273
|
-
version = "1.0.
|
|
261
|
+
version = "1.0.106"
|
|
274
262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
-
checksum = "
|
|
263
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
276
264
|
dependencies = [
|
|
277
265
|
"unicode-ident",
|
|
278
266
|
]
|
|
279
267
|
|
|
280
268
|
[[package]]
|
|
281
269
|
name = "pyhyperminhash"
|
|
282
|
-
version = "0.1
|
|
270
|
+
version = "0.2.1"
|
|
283
271
|
dependencies = [
|
|
284
272
|
"built",
|
|
285
273
|
"hyperminhash",
|
|
@@ -288,35 +276,32 @@ dependencies = [
|
|
|
288
276
|
|
|
289
277
|
[[package]]
|
|
290
278
|
name = "pyo3"
|
|
291
|
-
version = "0.
|
|
279
|
+
version = "0.29.0"
|
|
292
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
-
checksum = "
|
|
281
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
294
282
|
dependencies = [
|
|
295
|
-
"indoc",
|
|
296
283
|
"libc",
|
|
297
|
-
"memoffset",
|
|
298
284
|
"once_cell",
|
|
299
285
|
"portable-atomic",
|
|
300
286
|
"pyo3-build-config",
|
|
301
287
|
"pyo3-ffi",
|
|
302
288
|
"pyo3-macros",
|
|
303
|
-
"unindent",
|
|
304
289
|
]
|
|
305
290
|
|
|
306
291
|
[[package]]
|
|
307
292
|
name = "pyo3-build-config"
|
|
308
|
-
version = "0.
|
|
293
|
+
version = "0.29.0"
|
|
309
294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
-
checksum = "
|
|
295
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
311
296
|
dependencies = [
|
|
312
297
|
"target-lexicon",
|
|
313
298
|
]
|
|
314
299
|
|
|
315
300
|
[[package]]
|
|
316
301
|
name = "pyo3-ffi"
|
|
317
|
-
version = "0.
|
|
302
|
+
version = "0.29.0"
|
|
318
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
304
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
320
305
|
dependencies = [
|
|
321
306
|
"libc",
|
|
322
307
|
"pyo3-build-config",
|
|
@@ -324,9 +309,9 @@ dependencies = [
|
|
|
324
309
|
|
|
325
310
|
[[package]]
|
|
326
311
|
name = "pyo3-macros"
|
|
327
|
-
version = "0.
|
|
312
|
+
version = "0.29.0"
|
|
328
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "
|
|
314
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
330
315
|
dependencies = [
|
|
331
316
|
"proc-macro2",
|
|
332
317
|
"pyo3-macros-backend",
|
|
@@ -336,37 +321,30 @@ dependencies = [
|
|
|
336
321
|
|
|
337
322
|
[[package]]
|
|
338
323
|
name = "pyo3-macros-backend"
|
|
339
|
-
version = "0.
|
|
324
|
+
version = "0.29.0"
|
|
340
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
326
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
342
327
|
dependencies = [
|
|
343
328
|
"heck",
|
|
344
329
|
"proc-macro2",
|
|
345
|
-
"pyo3-build-config",
|
|
346
330
|
"quote",
|
|
347
331
|
"syn",
|
|
348
332
|
]
|
|
349
333
|
|
|
350
334
|
[[package]]
|
|
351
335
|
name = "quote"
|
|
352
|
-
version = "1.0.
|
|
336
|
+
version = "1.0.46"
|
|
353
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
338
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
355
339
|
dependencies = [
|
|
356
340
|
"proc-macro2",
|
|
357
341
|
]
|
|
358
342
|
|
|
359
|
-
[[package]]
|
|
360
|
-
name = "rustversion"
|
|
361
|
-
version = "1.0.22"
|
|
362
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
-
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
364
|
-
|
|
365
343
|
[[package]]
|
|
366
344
|
name = "semver"
|
|
367
|
-
version = "1.0.
|
|
345
|
+
version = "1.0.28"
|
|
368
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
347
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
370
348
|
dependencies = [
|
|
371
349
|
"serde",
|
|
372
350
|
"serde_core",
|
|
@@ -404,18 +382,18 @@ dependencies = [
|
|
|
404
382
|
|
|
405
383
|
[[package]]
|
|
406
384
|
name = "serde_spanned"
|
|
407
|
-
version = "
|
|
385
|
+
version = "1.1.1"
|
|
408
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
-
checksum = "
|
|
387
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
410
388
|
dependencies = [
|
|
411
|
-
"
|
|
389
|
+
"serde_core",
|
|
412
390
|
]
|
|
413
391
|
|
|
414
392
|
[[package]]
|
|
415
393
|
name = "smallvec"
|
|
416
|
-
version = "1.15.
|
|
394
|
+
version = "1.15.2"
|
|
417
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
-
checksum = "
|
|
396
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
419
397
|
|
|
420
398
|
[[package]]
|
|
421
399
|
name = "stable_deref_trait"
|
|
@@ -425,9 +403,9 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
|
425
403
|
|
|
426
404
|
[[package]]
|
|
427
405
|
name = "syn"
|
|
428
|
-
version = "2.0.
|
|
406
|
+
version = "2.0.118"
|
|
429
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
408
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
431
409
|
dependencies = [
|
|
432
410
|
"proc-macro2",
|
|
433
411
|
"quote",
|
|
@@ -447,15 +425,15 @@ dependencies = [
|
|
|
447
425
|
|
|
448
426
|
[[package]]
|
|
449
427
|
name = "target-lexicon"
|
|
450
|
-
version = "0.13.
|
|
428
|
+
version = "0.13.5"
|
|
451
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
-
checksum = "
|
|
430
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
453
431
|
|
|
454
432
|
[[package]]
|
|
455
433
|
name = "tinystr"
|
|
456
|
-
version = "0.8.
|
|
434
|
+
version = "0.8.3"
|
|
457
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
-
checksum = "
|
|
436
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
459
437
|
dependencies = [
|
|
460
438
|
"displaydoc",
|
|
461
439
|
"zerovec",
|
|
@@ -463,62 +441,54 @@ dependencies = [
|
|
|
463
441
|
|
|
464
442
|
[[package]]
|
|
465
443
|
name = "toml"
|
|
466
|
-
version = "0.
|
|
444
|
+
version = "0.9.12+spec-1.1.0"
|
|
467
445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
-
checksum = "
|
|
446
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
469
447
|
dependencies = [
|
|
470
|
-
"
|
|
448
|
+
"indexmap",
|
|
449
|
+
"serde_core",
|
|
471
450
|
"serde_spanned",
|
|
472
451
|
"toml_datetime",
|
|
473
|
-
"
|
|
452
|
+
"toml_parser",
|
|
453
|
+
"toml_writer",
|
|
454
|
+
"winnow 0.7.15",
|
|
474
455
|
]
|
|
475
456
|
|
|
476
457
|
[[package]]
|
|
477
458
|
name = "toml_datetime"
|
|
478
|
-
version = "0.
|
|
459
|
+
version = "0.7.5+spec-1.1.0"
|
|
479
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
461
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
481
462
|
dependencies = [
|
|
482
|
-
"
|
|
463
|
+
"serde_core",
|
|
483
464
|
]
|
|
484
465
|
|
|
485
466
|
[[package]]
|
|
486
|
-
name = "
|
|
487
|
-
version = "
|
|
467
|
+
name = "toml_parser"
|
|
468
|
+
version = "1.1.2+spec-1.1.0"
|
|
488
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
-
checksum = "
|
|
470
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
490
471
|
dependencies = [
|
|
491
|
-
"
|
|
492
|
-
"serde",
|
|
493
|
-
"serde_spanned",
|
|
494
|
-
"toml_datetime",
|
|
495
|
-
"toml_write",
|
|
496
|
-
"winnow",
|
|
472
|
+
"winnow 1.0.4",
|
|
497
473
|
]
|
|
498
474
|
|
|
499
475
|
[[package]]
|
|
500
|
-
name = "
|
|
501
|
-
version = "
|
|
476
|
+
name = "toml_writer"
|
|
477
|
+
version = "1.1.2+spec-1.1.0"
|
|
502
478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
-
checksum = "
|
|
479
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
504
480
|
|
|
505
481
|
[[package]]
|
|
506
482
|
name = "unicode-ident"
|
|
507
|
-
version = "1.0.
|
|
483
|
+
version = "1.0.24"
|
|
508
484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
510
|
-
|
|
511
|
-
[[package]]
|
|
512
|
-
name = "unindent"
|
|
513
|
-
version = "0.2.4"
|
|
514
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
-
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
485
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
516
486
|
|
|
517
487
|
[[package]]
|
|
518
488
|
name = "url"
|
|
519
|
-
version = "2.5.
|
|
489
|
+
version = "2.5.8"
|
|
520
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
491
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
522
492
|
dependencies = [
|
|
523
493
|
"form_urlencoded",
|
|
524
494
|
"idna",
|
|
@@ -534,30 +504,33 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
534
504
|
|
|
535
505
|
[[package]]
|
|
536
506
|
name = "winnow"
|
|
537
|
-
version = "0.7.
|
|
507
|
+
version = "0.7.15"
|
|
538
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
-
checksum = "
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
509
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "winnow"
|
|
513
|
+
version = "1.0.4"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
543
516
|
|
|
544
517
|
[[package]]
|
|
545
518
|
name = "writeable"
|
|
546
|
-
version = "0.6.
|
|
519
|
+
version = "0.6.3"
|
|
547
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "
|
|
521
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
549
522
|
|
|
550
523
|
[[package]]
|
|
551
524
|
name = "xxhash-rust"
|
|
552
|
-
version = "0.8.
|
|
525
|
+
version = "0.8.16"
|
|
553
526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
-
checksum = "
|
|
527
|
+
checksum = "4d93c89cdc2d3a63c3ec48ffe926931bdc069eafa8e4402fe6d8f790c9d1e576"
|
|
555
528
|
|
|
556
529
|
[[package]]
|
|
557
530
|
name = "yoke"
|
|
558
|
-
version = "0.8.
|
|
531
|
+
version = "0.8.3"
|
|
559
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
-
checksum = "
|
|
533
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
561
534
|
dependencies = [
|
|
562
535
|
"stable_deref_trait",
|
|
563
536
|
"yoke-derive",
|
|
@@ -566,9 +539,9 @@ dependencies = [
|
|
|
566
539
|
|
|
567
540
|
[[package]]
|
|
568
541
|
name = "yoke-derive"
|
|
569
|
-
version = "0.8.
|
|
542
|
+
version = "0.8.2"
|
|
570
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
-
checksum = "
|
|
544
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
572
545
|
dependencies = [
|
|
573
546
|
"proc-macro2",
|
|
574
547
|
"quote",
|
|
@@ -578,18 +551,18 @@ dependencies = [
|
|
|
578
551
|
|
|
579
552
|
[[package]]
|
|
580
553
|
name = "zerofrom"
|
|
581
|
-
version = "0.1.
|
|
554
|
+
version = "0.1.8"
|
|
582
555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
556
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
584
557
|
dependencies = [
|
|
585
558
|
"zerofrom-derive",
|
|
586
559
|
]
|
|
587
560
|
|
|
588
561
|
[[package]]
|
|
589
562
|
name = "zerofrom-derive"
|
|
590
|
-
version = "0.1.
|
|
563
|
+
version = "0.1.7"
|
|
591
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
-
checksum = "
|
|
565
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
593
566
|
dependencies = [
|
|
594
567
|
"proc-macro2",
|
|
595
568
|
"quote",
|
|
@@ -599,9 +572,9 @@ dependencies = [
|
|
|
599
572
|
|
|
600
573
|
[[package]]
|
|
601
574
|
name = "zerotrie"
|
|
602
|
-
version = "0.2.
|
|
575
|
+
version = "0.2.4"
|
|
603
576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
-
checksum = "
|
|
577
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
605
578
|
dependencies = [
|
|
606
579
|
"displaydoc",
|
|
607
580
|
"yoke",
|
|
@@ -610,9 +583,9 @@ dependencies = [
|
|
|
610
583
|
|
|
611
584
|
[[package]]
|
|
612
585
|
name = "zerovec"
|
|
613
|
-
version = "0.11.
|
|
586
|
+
version = "0.11.6"
|
|
614
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "
|
|
588
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
616
589
|
dependencies = [
|
|
617
590
|
"yoke",
|
|
618
591
|
"zerofrom",
|
|
@@ -621,9 +594,9 @@ dependencies = [
|
|
|
621
594
|
|
|
622
595
|
[[package]]
|
|
623
596
|
name = "zerovec-derive"
|
|
624
|
-
version = "0.11.
|
|
597
|
+
version = "0.11.3"
|
|
625
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "
|
|
599
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
627
600
|
dependencies = [
|
|
628
601
|
"proc-macro2",
|
|
629
602
|
"quote",
|