stdbr 0.0.6__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.
- stdbr-0.0.6/Cargo.lock +792 -0
- stdbr-0.0.6/Cargo.toml +31 -0
- stdbr-0.0.6/PKG-INFO +25 -0
- stdbr-0.0.6/README.md +10 -0
- stdbr-0.0.6/bindings/python/BUILD.bazel +19 -0
- stdbr-0.0.6/bindings/python/Cargo.toml +23 -0
- stdbr-0.0.6/bindings/python/README.md +22 -0
- stdbr-0.0.6/bindings/python/src/cep.rs +167 -0
- stdbr-0.0.6/bindings/python/src/cnpj.rs +180 -0
- stdbr-0.0.6/bindings/python/src/cpf.rs +171 -0
- stdbr-0.0.6/bindings/python/src/lib.rs +18 -0
- stdbr-0.0.6/bindings/python/src/municipio.rs +92 -0
- stdbr-0.0.6/bindings/python/src/rg.rs +116 -0
- stdbr-0.0.6/bindings/python/src/uf.rs +113 -0
- stdbr-0.0.6/bindings/python/stdbr.pyi +516 -0
- stdbr-0.0.6/bindings/python/test_parity.py +295 -0
- stdbr-0.0.6/core/BUILD.bazel +19 -0
- stdbr-0.0.6/core/Cargo.toml +22 -0
- stdbr-0.0.6/core/README.md +22 -0
- stdbr-0.0.6/core/src/cep.rs +561 -0
- stdbr-0.0.6/core/src/cnpj.rs +790 -0
- stdbr-0.0.6/core/src/cpf.rs +634 -0
- stdbr-0.0.6/core/src/lib.rs +17 -0
- stdbr-0.0.6/core/src/municipio.rs +28076 -0
- stdbr-0.0.6/core/src/rand.rs +22 -0
- stdbr-0.0.6/core/src/rg.rs +797 -0
- stdbr-0.0.6/core/src/uf.rs +273 -0
- stdbr-0.0.6/core/src/util.rs +35 -0
- stdbr-0.0.6/core/tests/parity.rs +673 -0
- stdbr-0.0.6/pyproject.toml +22 -0
stdbr-0.0.6/Cargo.lock
ADDED
|
@@ -0,0 +1,792 @@
|
|
|
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 = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "autocfg"
|
|
22
|
+
version = "1.5.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "base64"
|
|
28
|
+
version = "0.22.1"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "bitflags"
|
|
34
|
+
version = "2.11.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
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 = "bytes"
|
|
46
|
+
version = "1.11.1"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "cc"
|
|
52
|
+
version = "1.2.61"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"find-msvc-tools",
|
|
57
|
+
"shlex",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "cfg-if"
|
|
62
|
+
version = "1.0.4"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
65
|
+
|
|
66
|
+
[[package]]
|
|
67
|
+
name = "convert_case"
|
|
68
|
+
version = "0.6.0"
|
|
69
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
71
|
+
dependencies = [
|
|
72
|
+
"unicode-segmentation",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "crc32fast"
|
|
77
|
+
version = "1.5.0"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"cfg-if",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "ctor"
|
|
86
|
+
version = "0.2.9"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"quote",
|
|
91
|
+
"syn",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "find-msvc-tools"
|
|
96
|
+
version = "0.1.9"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "flate2"
|
|
102
|
+
version = "1.1.9"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"crc32fast",
|
|
107
|
+
"miniz_oxide",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "getrandom"
|
|
112
|
+
version = "0.2.17"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"cfg-if",
|
|
117
|
+
"libc",
|
|
118
|
+
"wasi",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "heck"
|
|
123
|
+
version = "0.5.0"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "http"
|
|
129
|
+
version = "1.4.0"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"bytes",
|
|
134
|
+
"itoa",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "httparse"
|
|
139
|
+
version = "1.10.1"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
142
|
+
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "indoc"
|
|
145
|
+
version = "2.0.7"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"rustversion",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "itoa"
|
|
154
|
+
version = "1.0.18"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "libc"
|
|
160
|
+
version = "0.2.186"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "libloading"
|
|
166
|
+
version = "0.8.9"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"cfg-if",
|
|
171
|
+
"windows-link",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "log"
|
|
176
|
+
version = "0.4.29"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "memchr"
|
|
182
|
+
version = "2.8.0"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "memoffset"
|
|
188
|
+
version = "0.9.1"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"autocfg",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "miniz_oxide"
|
|
197
|
+
version = "0.8.9"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"adler2",
|
|
202
|
+
"simd-adler32",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "napi"
|
|
207
|
+
version = "2.16.17"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"bitflags",
|
|
212
|
+
"ctor",
|
|
213
|
+
"napi-derive",
|
|
214
|
+
"napi-sys",
|
|
215
|
+
"once_cell",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "napi-build"
|
|
220
|
+
version = "2.1.3"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "napi-derive"
|
|
226
|
+
version = "2.16.13"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"cfg-if",
|
|
231
|
+
"convert_case",
|
|
232
|
+
"napi-derive-backend",
|
|
233
|
+
"proc-macro2",
|
|
234
|
+
"quote",
|
|
235
|
+
"syn",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "napi-derive-backend"
|
|
240
|
+
version = "1.0.75"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"convert_case",
|
|
245
|
+
"once_cell",
|
|
246
|
+
"proc-macro2",
|
|
247
|
+
"quote",
|
|
248
|
+
"regex",
|
|
249
|
+
"semver",
|
|
250
|
+
"syn",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "napi-sys"
|
|
255
|
+
version = "2.4.0"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"libloading",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "once_cell"
|
|
264
|
+
version = "1.21.4"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "parity-gen"
|
|
270
|
+
version = "0.0.6"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"serde_json",
|
|
273
|
+
"stdbr-core",
|
|
274
|
+
"ureq",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "percent-encoding"
|
|
279
|
+
version = "2.3.2"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "portable-atomic"
|
|
285
|
+
version = "1.13.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "proc-macro2"
|
|
291
|
+
version = "1.0.106"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"unicode-ident",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "pyo3"
|
|
300
|
+
version = "0.24.2"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"cfg-if",
|
|
305
|
+
"indoc",
|
|
306
|
+
"libc",
|
|
307
|
+
"memoffset",
|
|
308
|
+
"once_cell",
|
|
309
|
+
"portable-atomic",
|
|
310
|
+
"pyo3-build-config",
|
|
311
|
+
"pyo3-ffi",
|
|
312
|
+
"pyo3-macros",
|
|
313
|
+
"unindent",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "pyo3-build-config"
|
|
318
|
+
version = "0.24.2"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"once_cell",
|
|
323
|
+
"target-lexicon",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "pyo3-ffi"
|
|
328
|
+
version = "0.24.2"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"libc",
|
|
333
|
+
"pyo3-build-config",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "pyo3-macros"
|
|
338
|
+
version = "0.24.2"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"proc-macro2",
|
|
343
|
+
"pyo3-macros-backend",
|
|
344
|
+
"quote",
|
|
345
|
+
"syn",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "pyo3-macros-backend"
|
|
350
|
+
version = "0.24.2"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"heck",
|
|
355
|
+
"proc-macro2",
|
|
356
|
+
"pyo3-build-config",
|
|
357
|
+
"quote",
|
|
358
|
+
"syn",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "quote"
|
|
363
|
+
version = "1.0.45"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"proc-macro2",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "regex"
|
|
372
|
+
version = "1.12.3"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"aho-corasick",
|
|
377
|
+
"memchr",
|
|
378
|
+
"regex-automata",
|
|
379
|
+
"regex-syntax",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "regex-automata"
|
|
384
|
+
version = "0.4.14"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"aho-corasick",
|
|
389
|
+
"memchr",
|
|
390
|
+
"regex-syntax",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "regex-syntax"
|
|
395
|
+
version = "0.8.10"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "ring"
|
|
401
|
+
version = "0.17.14"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"cc",
|
|
406
|
+
"cfg-if",
|
|
407
|
+
"getrandom",
|
|
408
|
+
"libc",
|
|
409
|
+
"untrusted",
|
|
410
|
+
"windows-sys",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "rustls"
|
|
415
|
+
version = "0.23.40"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"log",
|
|
420
|
+
"once_cell",
|
|
421
|
+
"ring",
|
|
422
|
+
"rustls-pki-types",
|
|
423
|
+
"rustls-webpki",
|
|
424
|
+
"subtle",
|
|
425
|
+
"zeroize",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "rustls-pki-types"
|
|
430
|
+
version = "1.14.1"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"zeroize",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "rustls-webpki"
|
|
439
|
+
version = "0.103.13"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"ring",
|
|
444
|
+
"rustls-pki-types",
|
|
445
|
+
"untrusted",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "rustversion"
|
|
450
|
+
version = "1.0.22"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "semver"
|
|
456
|
+
version = "1.0.28"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "serde"
|
|
462
|
+
version = "1.0.228"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"serde_core",
|
|
467
|
+
]
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "serde_core"
|
|
471
|
+
version = "1.0.228"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"serde_derive",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "serde_derive"
|
|
480
|
+
version = "1.0.228"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"proc-macro2",
|
|
485
|
+
"quote",
|
|
486
|
+
"syn",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "serde_json"
|
|
491
|
+
version = "1.0.149"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"itoa",
|
|
496
|
+
"memchr",
|
|
497
|
+
"serde",
|
|
498
|
+
"serde_core",
|
|
499
|
+
"zmij",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "shlex"
|
|
504
|
+
version = "1.3.0"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "simd-adler32"
|
|
510
|
+
version = "0.3.9"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "stdbr"
|
|
516
|
+
version = "0.0.6"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"stdbr-core",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "stdbr-core"
|
|
523
|
+
version = "0.0.6"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"serde_json",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "stdbr-ffi"
|
|
530
|
+
version = "0.0.6"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"stdbr-core",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "stdbr-napi"
|
|
537
|
+
version = "0.0.6"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"napi",
|
|
540
|
+
"napi-build",
|
|
541
|
+
"napi-derive",
|
|
542
|
+
"stdbr-core",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "stdbr-python"
|
|
547
|
+
version = "0.0.6"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"pyo3",
|
|
550
|
+
"stdbr-core",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "stdbr-wasm"
|
|
555
|
+
version = "0.0.6"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"stdbr-core",
|
|
558
|
+
"wasm-bindgen",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "subtle"
|
|
563
|
+
version = "2.6.1"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "syn"
|
|
569
|
+
version = "2.0.117"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"proc-macro2",
|
|
574
|
+
"quote",
|
|
575
|
+
"unicode-ident",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "target-lexicon"
|
|
580
|
+
version = "0.13.5"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "unicode-ident"
|
|
586
|
+
version = "1.0.24"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "unicode-segmentation"
|
|
592
|
+
version = "1.13.2"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "unindent"
|
|
598
|
+
version = "0.2.4"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "untrusted"
|
|
604
|
+
version = "0.9.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "ureq"
|
|
610
|
+
version = "3.3.0"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"base64",
|
|
615
|
+
"flate2",
|
|
616
|
+
"log",
|
|
617
|
+
"percent-encoding",
|
|
618
|
+
"rustls",
|
|
619
|
+
"rustls-pki-types",
|
|
620
|
+
"ureq-proto",
|
|
621
|
+
"utf8-zero",
|
|
622
|
+
"webpki-roots",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "ureq-proto"
|
|
627
|
+
version = "0.6.0"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"base64",
|
|
632
|
+
"http",
|
|
633
|
+
"httparse",
|
|
634
|
+
"log",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "utf8-zero"
|
|
639
|
+
version = "0.8.1"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "wasi"
|
|
645
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "wasm-bindgen"
|
|
651
|
+
version = "0.2.105"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"cfg-if",
|
|
656
|
+
"once_cell",
|
|
657
|
+
"rustversion",
|
|
658
|
+
"wasm-bindgen-macro",
|
|
659
|
+
"wasm-bindgen-shared",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "wasm-bindgen-macro"
|
|
664
|
+
version = "0.2.105"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"quote",
|
|
669
|
+
"wasm-bindgen-macro-support",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "wasm-bindgen-macro-support"
|
|
674
|
+
version = "0.2.105"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"bumpalo",
|
|
679
|
+
"proc-macro2",
|
|
680
|
+
"quote",
|
|
681
|
+
"syn",
|
|
682
|
+
"wasm-bindgen-shared",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "wasm-bindgen-shared"
|
|
687
|
+
version = "0.2.105"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"unicode-ident",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "webpki-roots"
|
|
696
|
+
version = "1.0.7"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"rustls-pki-types",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "windows-link"
|
|
705
|
+
version = "0.2.1"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "windows-sys"
|
|
711
|
+
version = "0.52.0"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"windows-targets",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "windows-targets"
|
|
720
|
+
version = "0.52.6"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"windows_aarch64_gnullvm",
|
|
725
|
+
"windows_aarch64_msvc",
|
|
726
|
+
"windows_i686_gnu",
|
|
727
|
+
"windows_i686_gnullvm",
|
|
728
|
+
"windows_i686_msvc",
|
|
729
|
+
"windows_x86_64_gnu",
|
|
730
|
+
"windows_x86_64_gnullvm",
|
|
731
|
+
"windows_x86_64_msvc",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "windows_aarch64_gnullvm"
|
|
736
|
+
version = "0.52.6"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "windows_aarch64_msvc"
|
|
742
|
+
version = "0.52.6"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "windows_i686_gnu"
|
|
748
|
+
version = "0.52.6"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "windows_i686_gnullvm"
|
|
754
|
+
version = "0.52.6"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "windows_i686_msvc"
|
|
760
|
+
version = "0.52.6"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "windows_x86_64_gnu"
|
|
766
|
+
version = "0.52.6"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "windows_x86_64_gnullvm"
|
|
772
|
+
version = "0.52.6"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "windows_x86_64_msvc"
|
|
778
|
+
version = "0.52.6"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "zeroize"
|
|
784
|
+
version = "1.8.2"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "zmij"
|
|
790
|
+
version = "1.0.21"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|