oboron-cli 0.2.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.
Files changed (143) hide show
  1. oboron_cli-0.2.0/Cargo.lock +1764 -0
  2. oboron_cli-0.2.0/Cargo.toml +25 -0
  3. oboron_cli-0.2.0/LICENSE +21 -0
  4. oboron_cli-0.2.0/PKG-INFO +565 -0
  5. oboron_cli-0.2.0/README.md +542 -0
  6. oboron_cli-0.2.0/oboron/BASELINE_BENCHMARKS.md +130 -0
  7. oboron_cli-0.2.0/oboron/BENCHMARKS.md +45 -0
  8. oboron_cli-0.2.0/oboron/Cargo.toml +261 -0
  9. oboron_cli-0.2.0/oboron/LICENSE +21 -0
  10. oboron_cli-0.2.0/oboron/NON_SECURITY_USE_CASES.md +391 -0
  11. oboron_cli-0.2.0/oboron/README.md +824 -0
  12. oboron_cli-0.2.0/oboron/README_FEATURES.md +157 -0
  13. oboron_cli-0.2.0/oboron/Z_TIER.md +243 -0
  14. oboron_cli-0.2.0/oboron/benches/aags_b32.rs +98 -0
  15. oboron_cli-0.2.0/oboron/benches/aags_b64.rs +98 -0
  16. oboron_cli-0.2.0/oboron/benches/aags_c32.rs +98 -0
  17. oboron_cli-0.2.0/oboron/benches/aags_hex.rs +98 -0
  18. oboron_cli-0.2.0/oboron/benches/aasv_b32.rs +98 -0
  19. oboron_cli-0.2.0/oboron/benches/aasv_b64.rs +98 -0
  20. oboron_cli-0.2.0/oboron/benches/aasv_c32.rs +98 -0
  21. oboron_cli-0.2.0/oboron/benches/aasv_hex.rs +98 -0
  22. oboron_cli-0.2.0/oboron/benches/apgs_b32.rs +98 -0
  23. oboron_cli-0.2.0/oboron/benches/apgs_b64.rs +98 -0
  24. oboron_cli-0.2.0/oboron/benches/apgs_c32.rs +98 -0
  25. oboron_cli-0.2.0/oboron/benches/apgs_hex.rs +98 -0
  26. oboron_cli-0.2.0/oboron/benches/apsv_b32.rs +98 -0
  27. oboron_cli-0.2.0/oboron/benches/apsv_b64.rs +98 -0
  28. oboron_cli-0.2.0/oboron/benches/apsv_c32.rs +98 -0
  29. oboron_cli-0.2.0/oboron/benches/apsv_hex.rs +98 -0
  30. oboron_cli-0.2.0/oboron/benches/benchmarks_aags_b32.jsonl +26 -0
  31. oboron_cli-0.2.0/oboron/benches/benchmarks_aags_b64.jsonl +26 -0
  32. oboron_cli-0.2.0/oboron/benches/benchmarks_aags_c32.jsonl +26 -0
  33. oboron_cli-0.2.0/oboron/benches/benchmarks_aags_hex.jsonl +26 -0
  34. oboron_cli-0.2.0/oboron/benches/benchmarks_aasv_b32.jsonl +26 -0
  35. oboron_cli-0.2.0/oboron/benches/benchmarks_aasv_b64.jsonl +26 -0
  36. oboron_cli-0.2.0/oboron/benches/benchmarks_aasv_c32.jsonl +26 -0
  37. oboron_cli-0.2.0/oboron/benches/benchmarks_aasv_hex.jsonl +26 -0
  38. oboron_cli-0.2.0/oboron/benches/benchmarks_apgs_b32.jsonl +26 -0
  39. oboron_cli-0.2.0/oboron/benches/benchmarks_apgs_b64.jsonl +26 -0
  40. oboron_cli-0.2.0/oboron/benches/benchmarks_apgs_c32.jsonl +26 -0
  41. oboron_cli-0.2.0/oboron/benches/benchmarks_apgs_hex.jsonl +26 -0
  42. oboron_cli-0.2.0/oboron/benches/benchmarks_apsv_b32.jsonl +26 -0
  43. oboron_cli-0.2.0/oboron/benches/benchmarks_apsv_b64.jsonl +26 -0
  44. oboron_cli-0.2.0/oboron/benches/benchmarks_apsv_c32.jsonl +26 -0
  45. oboron_cli-0.2.0/oboron/benches/benchmarks_apsv_hex.jsonl +26 -0
  46. oboron_cli-0.2.0/oboron/benches/benchmarks_legacy_b32.jsonl +27 -0
  47. oboron_cli-0.2.0/oboron/benches/benchmarks_legacy_b64.jsonl +26 -0
  48. oboron_cli-0.2.0/oboron/benches/benchmarks_legacy_c32.jsonl +27 -0
  49. oboron_cli-0.2.0/oboron/benches/benchmarks_legacy_hex.jsonl +26 -0
  50. oboron_cli-0.2.0/oboron/benches/benchmarks_ob.jsonl +626 -0
  51. oboron_cli-0.2.0/oboron/benches/benchmarks_obz.jsonl +208 -0
  52. oboron_cli-0.2.0/oboron/benches/benchmarks_omnib.jsonl +562 -0
  53. oboron_cli-0.2.0/oboron/benches/benchmarks_omnibz.jsonl +112 -0
  54. oboron_cli-0.2.0/oboron/benches/benchmarks_upbc_b32.jsonl +26 -0
  55. oboron_cli-0.2.0/oboron/benches/benchmarks_upbc_b64.jsonl +26 -0
  56. oboron_cli-0.2.0/oboron/benches/benchmarks_upbc_c32.jsonl +26 -0
  57. oboron_cli-0.2.0/oboron/benches/benchmarks_upbc_hex.jsonl +26 -0
  58. oboron_cli-0.2.0/oboron/benches/benchmarks_zrbcx_b32.jsonl +27 -0
  59. oboron_cli-0.2.0/oboron/benches/benchmarks_zrbcx_b64.jsonl +26 -0
  60. oboron_cli-0.2.0/oboron/benches/benchmarks_zrbcx_c32.jsonl +27 -0
  61. oboron_cli-0.2.0/oboron/benches/benchmarks_zrbcx_hex.jsonl +26 -0
  62. oboron_cli-0.2.0/oboron/benches/legacy_b32.rs +98 -0
  63. oboron_cli-0.2.0/oboron/benches/ob.rs +134 -0
  64. oboron_cli-0.2.0/oboron/benches/obstatic.rs +127 -0
  65. oboron_cli-0.2.0/oboron/benches/obz.rs +134 -0
  66. oboron_cli-0.2.0/oboron/benches/omnib.rs +129 -0
  67. oboron_cli-0.2.0/oboron/benches/omnibz.rs +129 -0
  68. oboron_cli-0.2.0/oboron/benches/test123.rs +176 -0
  69. oboron_cli-0.2.0/oboron/benches/upbc_b32.rs +98 -0
  70. oboron_cli-0.2.0/oboron/benches/upbc_b64.rs +98 -0
  71. oboron_cli-0.2.0/oboron/benches/upbc_c32.rs +98 -0
  72. oboron_cli-0.2.0/oboron/benches/upbc_hex.rs +98 -0
  73. oboron_cli-0.2.0/oboron/benches/z_jwt.rs +228 -0
  74. oboron_cli-0.2.0/oboron/benches/z_sha256.rs +85 -0
  75. oboron_cli-0.2.0/oboron/benches/zrbcx_b32.rs +98 -0
  76. oboron_cli-0.2.0/oboron/benches/zrbcx_b64.rs +98 -0
  77. oboron_cli-0.2.0/oboron/benches/zrbcx_c32.rs +98 -0
  78. oboron_cli-0.2.0/oboron/benches/zrbcx_hex.rs +98 -0
  79. oboron_cli-0.2.0/oboron/src/base32.rs +21 -0
  80. oboron_cli-0.2.0/oboron/src/bin/hex2b64.rs +45 -0
  81. oboron_cli-0.2.0/oboron/src/bin/keygen.rs +5 -0
  82. oboron_cli-0.2.0/oboron/src/bin/secretgen.rs +5 -0
  83. oboron_cli-0.2.0/oboron/src/codec.rs +1505 -0
  84. oboron_cli-0.2.0/oboron/src/constants.rs +248 -0
  85. oboron_cli-0.2.0/oboron/src/dec.rs +114 -0
  86. oboron_cli-0.2.0/oboron/src/dec_auto.rs +150 -0
  87. oboron_cli-0.2.0/oboron/src/enc.rs +79 -0
  88. oboron_cli-0.2.0/oboron/src/encoding.rs +63 -0
  89. oboron_cli-0.2.0/oboron/src/error.rs +63 -0
  90. oboron_cli-0.2.0/oboron/src/format.rs +490 -0
  91. oboron_cli-0.2.0/oboron/src/keygen.rs +146 -0
  92. oboron_cli-0.2.0/oboron/src/lib.rs +544 -0
  93. oboron_cli-0.2.0/oboron/src/masterkey.rs +59 -0
  94. oboron_cli-0.2.0/oboron/src/ob.rs +498 -0
  95. oboron_cli-0.2.0/oboron/src/obcrypt/aags.rs +49 -0
  96. oboron_cli-0.2.0/oboron/src/obcrypt/aasv.rs +35 -0
  97. oboron_cli-0.2.0/oboron/src/obcrypt/apgs.rs +60 -0
  98. oboron_cli-0.2.0/oboron/src/obcrypt/apsv.rs +46 -0
  99. oboron_cli-0.2.0/oboron/src/obcrypt/constants.rs +5 -0
  100. oboron_cli-0.2.0/oboron/src/obcrypt/mock1.rs +47 -0
  101. oboron_cli-0.2.0/oboron/src/obcrypt/mock2.rs +69 -0
  102. oboron_cli-0.2.0/oboron/src/obcrypt/mod.rs +37 -0
  103. oboron_cli-0.2.0/oboron/src/obcrypt/upbc.rs +74 -0
  104. oboron_cli-0.2.0/oboron/src/omnib.rs +168 -0
  105. oboron_cli-0.2.0/oboron/src/scheme.rs +179 -0
  106. oboron_cli-0.2.0/oboron/src/ztier/constants.rs +5 -0
  107. oboron_cli-0.2.0/oboron/src/ztier/legacy.rs +232 -0
  108. oboron_cli-0.2.0/oboron/src/ztier/mod.rs +43 -0
  109. oboron_cli-0.2.0/oboron/src/ztier/obz.rs +476 -0
  110. oboron_cli-0.2.0/oboron/src/ztier/omnibz.rs +435 -0
  111. oboron_cli-0.2.0/oboron/src/ztier/zcodec.rs +151 -0
  112. oboron_cli-0.2.0/oboron/src/ztier/zdec.rs +55 -0
  113. oboron_cli-0.2.0/oboron/src/ztier/zdec_auto.rs +212 -0
  114. oboron_cli-0.2.0/oboron/src/ztier/zenc.rs +52 -0
  115. oboron_cli-0.2.0/oboron/src/ztier/zmock1.rs +46 -0
  116. oboron_cli-0.2.0/oboron/src/ztier/zrbcx.rs +92 -0
  117. oboron_cli-0.2.0/oboron/src/ztier/zsecret.rs +103 -0
  118. oboron_cli-0.2.0/oboron/tests/basic_tests.rs +122 -0
  119. oboron_cli-0.2.0/oboron/tests/feature_gate_tests.rs +169 -0
  120. oboron_cli-0.2.0/oboron/tests/integration_tests.rs +98 -0
  121. oboron_cli-0.2.0/oboron/tests/legacy-test-vectors.jsonl +166 -0
  122. oboron_cli-0.2.0/oboron/tests/legacy_test_vectors.rs +162 -0
  123. oboron_cli-0.2.0/oboron/tests/legacy_tests.rs +222 -0
  124. oboron_cli-0.2.0/oboron/tests/test-vectors.jsonl +3320 -0
  125. oboron_cli-0.2.0/oboron/tests/test_mock1.rs +376 -0
  126. oboron_cli-0.2.0/oboron/tests/test_mock2.rs +170 -0
  127. oboron_cli-0.2.0/oboron/tests/test_ob.rs +179 -0
  128. oboron_cli-0.2.0/oboron/tests/test_schemes.rs +490 -0
  129. oboron_cli-0.2.0/oboron/tests/test_vectors.rs +147 -0
  130. oboron_cli-0.2.0/oboron/tests/ztier-test-vectors.jsonl +664 -0
  131. oboron_cli-0.2.0/oboron/tests/ztier_test_vectors.rs +147 -0
  132. oboron_cli-0.2.0/oboron-cli/CHANGELOG.md +15 -0
  133. oboron_cli-0.2.0/oboron-cli/CLI_HELP.md +313 -0
  134. oboron_cli-0.2.0/oboron-cli/Cargo.toml +64 -0
  135. oboron_cli-0.2.0/oboron-cli/LICENSE +21 -0
  136. oboron_cli-0.2.0/oboron-cli/README.md +542 -0
  137. oboron_cli-0.2.0/oboron-cli/src/completions.rs +102 -0
  138. oboron_cli-0.2.0/oboron-cli/src/config.rs +520 -0
  139. oboron_cli-0.2.0/oboron-cli/src/main.rs +804 -0
  140. oboron_cli-0.2.0/oboron-cli/src/obz_completions.rs +102 -0
  141. oboron_cli-0.2.0/oboron-cli/src/obz_config.rs +493 -0
  142. oboron_cli-0.2.0/oboron-cli/src/obz_main.rs +771 -0
  143. oboron_cli-0.2.0/pyproject.toml +34 -0
@@ -0,0 +1,1764 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.5.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
+ dependencies = [
11
+ "crypto-common",
12
+ "generic-array 0.14.9",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "aes"
17
+ version = "0.8.4"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
20
+ dependencies = [
21
+ "cfg-if",
22
+ "cipher",
23
+ "cpufeatures",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm-siv"
28
+ version = "0.11.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "polyval",
37
+ "subtle",
38
+ "zeroize",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "aes-siv"
43
+ version = "0.7.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "7e08d0cdb774acd1e4dac11478b1a0c0d203134b2aab0ba25eb430de9b18f8b9"
46
+ dependencies = [
47
+ "aead",
48
+ "aes",
49
+ "cipher",
50
+ "cmac",
51
+ "ctr",
52
+ "dbl",
53
+ "digest",
54
+ "zeroize",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "aho-corasick"
59
+ version = "1.1.4"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
62
+ dependencies = [
63
+ "memchr",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "anes"
68
+ version = "0.1.6"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
71
+
72
+ [[package]]
73
+ name = "anstream"
74
+ version = "0.6.21"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
77
+ dependencies = [
78
+ "anstyle",
79
+ "anstyle-parse",
80
+ "anstyle-query",
81
+ "anstyle-wincon",
82
+ "colorchoice",
83
+ "is_terminal_polyfill",
84
+ "utf8parse",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle"
89
+ version = "1.0.13"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
92
+
93
+ [[package]]
94
+ name = "anstyle-parse"
95
+ version = "0.2.7"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
98
+ dependencies = [
99
+ "utf8parse",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anstyle-query"
104
+ version = "1.1.4"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
107
+ dependencies = [
108
+ "windows-sys 0.60.2",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "anstyle-wincon"
113
+ version = "3.0.10"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
116
+ dependencies = [
117
+ "anstyle",
118
+ "once_cell_polyfill",
119
+ "windows-sys 0.60.2",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "anyhow"
124
+ version = "1.0.100"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
127
+
128
+ [[package]]
129
+ name = "assert_cmd"
130
+ version = "2.1.1"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
133
+ dependencies = [
134
+ "anstyle",
135
+ "bstr",
136
+ "libc",
137
+ "predicates",
138
+ "predicates-core",
139
+ "predicates-tree",
140
+ "wait-timeout",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "autocfg"
145
+ version = "1.5.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
148
+
149
+ [[package]]
150
+ name = "base64"
151
+ version = "0.22.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
154
+
155
+ [[package]]
156
+ name = "bitflags"
157
+ version = "2.10.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
160
+
161
+ [[package]]
162
+ name = "block-buffer"
163
+ version = "0.10.4"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
166
+ dependencies = [
167
+ "generic-array 0.14.9",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "block-padding"
172
+ version = "0.3.3"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
175
+ dependencies = [
176
+ "generic-array 0.14.9",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "bstr"
181
+ version = "1.12.1"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
184
+ dependencies = [
185
+ "memchr",
186
+ "regex-automata",
187
+ "serde",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "bumpalo"
192
+ version = "3.19.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
195
+
196
+ [[package]]
197
+ name = "cast"
198
+ version = "0.3.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
201
+
202
+ [[package]]
203
+ name = "cbc"
204
+ version = "0.1.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
207
+ dependencies = [
208
+ "cipher",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "cc"
213
+ version = "1.2.48"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
216
+ dependencies = [
217
+ "find-msvc-tools",
218
+ "shlex",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cfg-if"
223
+ version = "1.0.4"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
226
+
227
+ [[package]]
228
+ name = "ciborium"
229
+ version = "0.2.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
232
+ dependencies = [
233
+ "ciborium-io",
234
+ "ciborium-ll",
235
+ "serde",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "ciborium-io"
240
+ version = "0.2.2"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
243
+
244
+ [[package]]
245
+ name = "ciborium-ll"
246
+ version = "0.2.2"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
249
+ dependencies = [
250
+ "ciborium-io",
251
+ "half",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "cipher"
256
+ version = "0.4.4"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
259
+ dependencies = [
260
+ "crypto-common",
261
+ "inout",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "clap"
266
+ version = "4.5.51"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
269
+ dependencies = [
270
+ "clap_builder",
271
+ "clap_derive",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap-markdown"
276
+ version = "0.1.5"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "d2a2617956a06d4885b490697b5307ebb09fec10b088afc18c81762d848c2339"
279
+ dependencies = [
280
+ "clap",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "clap_builder"
285
+ version = "4.5.51"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
288
+ dependencies = [
289
+ "anstream",
290
+ "anstyle",
291
+ "clap_lex",
292
+ "strsim",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "clap_complete"
297
+ version = "4.5.60"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971"
300
+ dependencies = [
301
+ "clap",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "clap_derive"
306
+ version = "4.5.49"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
309
+ dependencies = [
310
+ "heck",
311
+ "proc-macro2",
312
+ "quote",
313
+ "syn",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "clap_lex"
318
+ version = "0.7.6"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
321
+
322
+ [[package]]
323
+ name = "cmac"
324
+ version = "0.7.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "8543454e3c3f5126effff9cd44d562af4e31fb8ce1cc0d3dcd8f084515dbc1aa"
327
+ dependencies = [
328
+ "cipher",
329
+ "dbl",
330
+ "digest",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "colorchoice"
335
+ version = "1.0.4"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
338
+
339
+ [[package]]
340
+ name = "cpufeatures"
341
+ version = "0.2.17"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
344
+ dependencies = [
345
+ "libc",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "criterion"
350
+ version = "0.5.1"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
353
+ dependencies = [
354
+ "anes",
355
+ "cast",
356
+ "ciborium",
357
+ "clap",
358
+ "criterion-plot",
359
+ "is-terminal",
360
+ "itertools",
361
+ "num-traits",
362
+ "once_cell",
363
+ "oorandom",
364
+ "plotters",
365
+ "rayon",
366
+ "regex",
367
+ "serde",
368
+ "serde_derive",
369
+ "serde_json",
370
+ "tinytemplate",
371
+ "walkdir",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "criterion-plot"
376
+ version = "0.5.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
379
+ dependencies = [
380
+ "cast",
381
+ "itertools",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "crossbeam-deque"
386
+ version = "0.8.6"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
389
+ dependencies = [
390
+ "crossbeam-epoch",
391
+ "crossbeam-utils",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "crossbeam-epoch"
396
+ version = "0.9.18"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
399
+ dependencies = [
400
+ "crossbeam-utils",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "crossbeam-utils"
405
+ version = "0.8.21"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
408
+
409
+ [[package]]
410
+ name = "crunchy"
411
+ version = "0.2.4"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
414
+
415
+ [[package]]
416
+ name = "crypto-common"
417
+ version = "0.1.6"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
420
+ dependencies = [
421
+ "generic-array 0.14.9",
422
+ "rand_core",
423
+ "typenum",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "ctr"
428
+ version = "0.9.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
431
+ dependencies = [
432
+ "cipher",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "data-encoding"
437
+ version = "2.9.0"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
440
+
441
+ [[package]]
442
+ name = "dbl"
443
+ version = "0.3.2"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9"
446
+ dependencies = [
447
+ "generic-array 0.14.9",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "deranged"
452
+ version = "0.5.5"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
455
+ dependencies = [
456
+ "powerfmt",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "difflib"
461
+ version = "0.4.0"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
464
+
465
+ [[package]]
466
+ name = "digest"
467
+ version = "0.10.7"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
470
+ dependencies = [
471
+ "block-buffer",
472
+ "crypto-common",
473
+ "subtle",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "dirs"
478
+ version = "5.0.1"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
481
+ dependencies = [
482
+ "dirs-sys",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "dirs-sys"
487
+ version = "0.4.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
490
+ dependencies = [
491
+ "libc",
492
+ "option-ext",
493
+ "redox_users",
494
+ "windows-sys 0.48.0",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "either"
499
+ version = "1.15.0"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
502
+
503
+ [[package]]
504
+ name = "errno"
505
+ version = "0.3.14"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
508
+ dependencies = [
509
+ "libc",
510
+ "windows-sys 0.60.2",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "fastrand"
515
+ version = "2.3.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
518
+
519
+ [[package]]
520
+ name = "find-msvc-tools"
521
+ version = "0.1.5"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
524
+
525
+ [[package]]
526
+ name = "float-cmp"
527
+ version = "0.10.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
530
+ dependencies = [
531
+ "num-traits",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "generic-array"
536
+ version = "0.14.9"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
539
+ dependencies = [
540
+ "typenum",
541
+ "version_check",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "generic-array"
546
+ version = "1.3.5"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542"
549
+ dependencies = [
550
+ "rustversion",
551
+ "typenum",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "getrandom"
556
+ version = "0.2.16"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
559
+ dependencies = [
560
+ "cfg-if",
561
+ "js-sys",
562
+ "libc",
563
+ "wasi",
564
+ "wasm-bindgen",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "getrandom"
569
+ version = "0.3.4"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
572
+ dependencies = [
573
+ "cfg-if",
574
+ "libc",
575
+ "r-efi",
576
+ "wasip2",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "half"
581
+ version = "2.7.1"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
584
+ dependencies = [
585
+ "cfg-if",
586
+ "crunchy",
587
+ "zerocopy",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "heck"
592
+ version = "0.5.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
595
+
596
+ [[package]]
597
+ name = "hermit-abi"
598
+ version = "0.5.2"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
601
+
602
+ [[package]]
603
+ name = "hex"
604
+ version = "0.4.3"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
607
+
608
+ [[package]]
609
+ name = "indoc"
610
+ version = "2.0.7"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
613
+ dependencies = [
614
+ "rustversion",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "inout"
619
+ version = "0.1.4"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
622
+ dependencies = [
623
+ "block-padding",
624
+ "generic-array 0.14.9",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "is-terminal"
629
+ version = "0.4.17"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
632
+ dependencies = [
633
+ "hermit-abi",
634
+ "libc",
635
+ "windows-sys 0.60.2",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "is_terminal_polyfill"
640
+ version = "1.70.2"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
643
+
644
+ [[package]]
645
+ name = "itertools"
646
+ version = "0.10.5"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
649
+ dependencies = [
650
+ "either",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "itoa"
655
+ version = "1.0.15"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
658
+
659
+ [[package]]
660
+ name = "js-sys"
661
+ version = "0.3.82"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
664
+ dependencies = [
665
+ "once_cell",
666
+ "wasm-bindgen",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "jsonwebtoken"
671
+ version = "9.3.1"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
674
+ dependencies = [
675
+ "base64",
676
+ "js-sys",
677
+ "pem",
678
+ "ring",
679
+ "serde",
680
+ "serde_json",
681
+ "simple_asn1",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "libc"
686
+ version = "0.2.177"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
689
+
690
+ [[package]]
691
+ name = "libredox"
692
+ version = "0.1.10"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
695
+ dependencies = [
696
+ "bitflags",
697
+ "libc",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "linux-raw-sys"
702
+ version = "0.11.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
705
+
706
+ [[package]]
707
+ name = "memchr"
708
+ version = "2.7.6"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
711
+
712
+ [[package]]
713
+ name = "memoffset"
714
+ version = "0.9.1"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
717
+ dependencies = [
718
+ "autocfg",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "normalize-line-endings"
723
+ version = "0.3.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
726
+
727
+ [[package]]
728
+ name = "num-bigint"
729
+ version = "0.4.6"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
732
+ dependencies = [
733
+ "num-integer",
734
+ "num-traits",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "num-conv"
739
+ version = "0.1.0"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
742
+
743
+ [[package]]
744
+ name = "num-integer"
745
+ version = "0.1.46"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
748
+ dependencies = [
749
+ "num-traits",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "num-traits"
754
+ version = "0.2.19"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
757
+ dependencies = [
758
+ "autocfg",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "oboron"
763
+ version = "0.5.0"
764
+ dependencies = [
765
+ "aes",
766
+ "aes-gcm-siv",
767
+ "aes-siv",
768
+ "cbc",
769
+ "cipher",
770
+ "criterion",
771
+ "data-encoding",
772
+ "generic-array 1.3.5",
773
+ "getrandom 0.2.16",
774
+ "hex",
775
+ "jsonwebtoken",
776
+ "num-bigint",
777
+ "oboron",
778
+ "once_cell",
779
+ "rand",
780
+ "serde",
781
+ "serde_json",
782
+ "sha2",
783
+ "thiserror 1.0.69",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "oboron-cli"
788
+ version = "0.2.0"
789
+ dependencies = [
790
+ "anyhow",
791
+ "assert_cmd",
792
+ "clap",
793
+ "clap-markdown",
794
+ "clap_complete",
795
+ "data-encoding",
796
+ "dirs",
797
+ "oboron",
798
+ "predicates",
799
+ "rand",
800
+ "serde",
801
+ "serde_json",
802
+ "tempfile",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "oboron-py"
807
+ version = "0.2.0"
808
+ dependencies = [
809
+ "hex",
810
+ "oboron",
811
+ "pyo3",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "once_cell"
816
+ version = "1.21.3"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
819
+
820
+ [[package]]
821
+ name = "once_cell_polyfill"
822
+ version = "1.70.2"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
825
+
826
+ [[package]]
827
+ name = "oorandom"
828
+ version = "11.1.5"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
831
+
832
+ [[package]]
833
+ name = "opaque-debug"
834
+ version = "0.3.1"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
837
+
838
+ [[package]]
839
+ name = "option-ext"
840
+ version = "0.2.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
843
+
844
+ [[package]]
845
+ name = "pem"
846
+ version = "3.0.6"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
849
+ dependencies = [
850
+ "base64",
851
+ "serde_core",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "plotters"
856
+ version = "0.3.7"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
859
+ dependencies = [
860
+ "num-traits",
861
+ "plotters-backend",
862
+ "plotters-svg",
863
+ "wasm-bindgen",
864
+ "web-sys",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "plotters-backend"
869
+ version = "0.3.7"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
872
+
873
+ [[package]]
874
+ name = "plotters-svg"
875
+ version = "0.3.7"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
878
+ dependencies = [
879
+ "plotters-backend",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "polyval"
884
+ version = "0.6.2"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
887
+ dependencies = [
888
+ "cfg-if",
889
+ "cpufeatures",
890
+ "opaque-debug",
891
+ "universal-hash",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "portable-atomic"
896
+ version = "1.11.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
899
+
900
+ [[package]]
901
+ name = "powerfmt"
902
+ version = "0.2.0"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
905
+
906
+ [[package]]
907
+ name = "ppv-lite86"
908
+ version = "0.2.21"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
911
+ dependencies = [
912
+ "zerocopy",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "predicates"
917
+ version = "3.1.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
920
+ dependencies = [
921
+ "anstyle",
922
+ "difflib",
923
+ "float-cmp",
924
+ "normalize-line-endings",
925
+ "predicates-core",
926
+ "regex",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "predicates-core"
931
+ version = "1.0.9"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
934
+
935
+ [[package]]
936
+ name = "predicates-tree"
937
+ version = "1.0.12"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
940
+ dependencies = [
941
+ "predicates-core",
942
+ "termtree",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "proc-macro2"
947
+ version = "1.0.103"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
950
+ dependencies = [
951
+ "unicode-ident",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "pyo3"
956
+ version = "0.22.6"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
959
+ dependencies = [
960
+ "cfg-if",
961
+ "indoc",
962
+ "libc",
963
+ "memoffset",
964
+ "once_cell",
965
+ "portable-atomic",
966
+ "pyo3-build-config",
967
+ "pyo3-ffi",
968
+ "pyo3-macros",
969
+ "unindent",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "pyo3-build-config"
974
+ version = "0.22.6"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
977
+ dependencies = [
978
+ "once_cell",
979
+ "target-lexicon",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "pyo3-ffi"
984
+ version = "0.22.6"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
987
+ dependencies = [
988
+ "libc",
989
+ "pyo3-build-config",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "pyo3-macros"
994
+ version = "0.22.6"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
997
+ dependencies = [
998
+ "proc-macro2",
999
+ "pyo3-macros-backend",
1000
+ "quote",
1001
+ "syn",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "pyo3-macros-backend"
1006
+ version = "0.22.6"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1009
+ dependencies = [
1010
+ "heck",
1011
+ "proc-macro2",
1012
+ "pyo3-build-config",
1013
+ "quote",
1014
+ "syn",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "quote"
1019
+ version = "1.0.41"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
1022
+ dependencies = [
1023
+ "proc-macro2",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "r-efi"
1028
+ version = "5.3.0"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1031
+
1032
+ [[package]]
1033
+ name = "rand"
1034
+ version = "0.8.5"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1037
+ dependencies = [
1038
+ "libc",
1039
+ "rand_chacha",
1040
+ "rand_core",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "rand_chacha"
1045
+ version = "0.3.1"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1048
+ dependencies = [
1049
+ "ppv-lite86",
1050
+ "rand_core",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "rand_core"
1055
+ version = "0.6.4"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1058
+ dependencies = [
1059
+ "getrandom 0.2.16",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "rayon"
1064
+ version = "1.11.0"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1067
+ dependencies = [
1068
+ "either",
1069
+ "rayon-core",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "rayon-core"
1074
+ version = "1.13.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1077
+ dependencies = [
1078
+ "crossbeam-deque",
1079
+ "crossbeam-utils",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "redox_users"
1084
+ version = "0.4.6"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1087
+ dependencies = [
1088
+ "getrandom 0.2.16",
1089
+ "libredox",
1090
+ "thiserror 1.0.69",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "regex"
1095
+ version = "1.12.2"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1098
+ dependencies = [
1099
+ "aho-corasick",
1100
+ "memchr",
1101
+ "regex-automata",
1102
+ "regex-syntax",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "regex-automata"
1107
+ version = "0.4.13"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1110
+ dependencies = [
1111
+ "aho-corasick",
1112
+ "memchr",
1113
+ "regex-syntax",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "regex-syntax"
1118
+ version = "0.8.8"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1121
+
1122
+ [[package]]
1123
+ name = "ring"
1124
+ version = "0.17.14"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1127
+ dependencies = [
1128
+ "cc",
1129
+ "cfg-if",
1130
+ "getrandom 0.2.16",
1131
+ "libc",
1132
+ "untrusted",
1133
+ "windows-sys 0.52.0",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "rustix"
1138
+ version = "1.1.2"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1141
+ dependencies = [
1142
+ "bitflags",
1143
+ "errno",
1144
+ "libc",
1145
+ "linux-raw-sys",
1146
+ "windows-sys 0.60.2",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rustversion"
1151
+ version = "1.0.22"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1154
+
1155
+ [[package]]
1156
+ name = "ryu"
1157
+ version = "1.0.20"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1160
+
1161
+ [[package]]
1162
+ name = "same-file"
1163
+ version = "1.0.6"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1166
+ dependencies = [
1167
+ "winapi-util",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "serde"
1172
+ version = "1.0.228"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1175
+ dependencies = [
1176
+ "serde_core",
1177
+ "serde_derive",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "serde_core"
1182
+ version = "1.0.228"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1185
+ dependencies = [
1186
+ "serde_derive",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "serde_derive"
1191
+ version = "1.0.228"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1194
+ dependencies = [
1195
+ "proc-macro2",
1196
+ "quote",
1197
+ "syn",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "serde_json"
1202
+ version = "1.0.145"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1205
+ dependencies = [
1206
+ "itoa",
1207
+ "memchr",
1208
+ "ryu",
1209
+ "serde",
1210
+ "serde_core",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "sha2"
1215
+ version = "0.10.9"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1218
+ dependencies = [
1219
+ "cfg-if",
1220
+ "cpufeatures",
1221
+ "digest",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "shlex"
1226
+ version = "1.3.0"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1229
+
1230
+ [[package]]
1231
+ name = "simple_asn1"
1232
+ version = "0.6.3"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
1235
+ dependencies = [
1236
+ "num-bigint",
1237
+ "num-traits",
1238
+ "thiserror 2.0.17",
1239
+ "time",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "strsim"
1244
+ version = "0.11.1"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1247
+
1248
+ [[package]]
1249
+ name = "subtle"
1250
+ version = "2.6.1"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1253
+
1254
+ [[package]]
1255
+ name = "syn"
1256
+ version = "2.0.108"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
1259
+ dependencies = [
1260
+ "proc-macro2",
1261
+ "quote",
1262
+ "unicode-ident",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "target-lexicon"
1267
+ version = "0.12.16"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1270
+
1271
+ [[package]]
1272
+ name = "tempfile"
1273
+ version = "3.23.0"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1276
+ dependencies = [
1277
+ "fastrand",
1278
+ "getrandom 0.3.4",
1279
+ "once_cell",
1280
+ "rustix",
1281
+ "windows-sys 0.60.2",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "termtree"
1286
+ version = "0.5.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1289
+
1290
+ [[package]]
1291
+ name = "thiserror"
1292
+ version = "1.0.69"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1295
+ dependencies = [
1296
+ "thiserror-impl 1.0.69",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "thiserror"
1301
+ version = "2.0.17"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1304
+ dependencies = [
1305
+ "thiserror-impl 2.0.17",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "thiserror-impl"
1310
+ version = "1.0.69"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1313
+ dependencies = [
1314
+ "proc-macro2",
1315
+ "quote",
1316
+ "syn",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "thiserror-impl"
1321
+ version = "2.0.17"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1324
+ dependencies = [
1325
+ "proc-macro2",
1326
+ "quote",
1327
+ "syn",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "time"
1332
+ version = "0.3.44"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
1335
+ dependencies = [
1336
+ "deranged",
1337
+ "itoa",
1338
+ "num-conv",
1339
+ "powerfmt",
1340
+ "serde",
1341
+ "time-core",
1342
+ "time-macros",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "time-core"
1347
+ version = "0.1.6"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
1350
+
1351
+ [[package]]
1352
+ name = "time-macros"
1353
+ version = "0.2.24"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
1356
+ dependencies = [
1357
+ "num-conv",
1358
+ "time-core",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "tinytemplate"
1363
+ version = "1.2.1"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1366
+ dependencies = [
1367
+ "serde",
1368
+ "serde_json",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "typenum"
1373
+ version = "1.19.0"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1376
+
1377
+ [[package]]
1378
+ name = "unicode-ident"
1379
+ version = "1.0.22"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1382
+
1383
+ [[package]]
1384
+ name = "unindent"
1385
+ version = "0.2.4"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1388
+
1389
+ [[package]]
1390
+ name = "universal-hash"
1391
+ version = "0.5.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
1394
+ dependencies = [
1395
+ "crypto-common",
1396
+ "subtle",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "untrusted"
1401
+ version = "0.9.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1404
+
1405
+ [[package]]
1406
+ name = "utf8parse"
1407
+ version = "0.2.2"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1410
+
1411
+ [[package]]
1412
+ name = "version_check"
1413
+ version = "0.9.5"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1416
+
1417
+ [[package]]
1418
+ name = "wait-timeout"
1419
+ version = "0.2.1"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1422
+ dependencies = [
1423
+ "libc",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "walkdir"
1428
+ version = "2.5.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1431
+ dependencies = [
1432
+ "same-file",
1433
+ "winapi-util",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "wasi"
1438
+ version = "0.11.1+wasi-snapshot-preview1"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1441
+
1442
+ [[package]]
1443
+ name = "wasip2"
1444
+ version = "1.0.1+wasi-0.2.4"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1447
+ dependencies = [
1448
+ "wit-bindgen",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "wasm-bindgen"
1453
+ version = "0.2.105"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
1456
+ dependencies = [
1457
+ "cfg-if",
1458
+ "once_cell",
1459
+ "rustversion",
1460
+ "wasm-bindgen-macro",
1461
+ "wasm-bindgen-shared",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "wasm-bindgen-macro"
1466
+ version = "0.2.105"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
1469
+ dependencies = [
1470
+ "quote",
1471
+ "wasm-bindgen-macro-support",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "wasm-bindgen-macro-support"
1476
+ version = "0.2.105"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
1479
+ dependencies = [
1480
+ "bumpalo",
1481
+ "proc-macro2",
1482
+ "quote",
1483
+ "syn",
1484
+ "wasm-bindgen-shared",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "wasm-bindgen-shared"
1489
+ version = "0.2.105"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
1492
+ dependencies = [
1493
+ "unicode-ident",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "web-sys"
1498
+ version = "0.3.82"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
1501
+ dependencies = [
1502
+ "js-sys",
1503
+ "wasm-bindgen",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "winapi-util"
1508
+ version = "0.1.11"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1511
+ dependencies = [
1512
+ "windows-sys 0.60.2",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "windows-link"
1517
+ version = "0.2.1"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1520
+
1521
+ [[package]]
1522
+ name = "windows-sys"
1523
+ version = "0.48.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1526
+ dependencies = [
1527
+ "windows-targets 0.48.5",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "windows-sys"
1532
+ version = "0.52.0"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1535
+ dependencies = [
1536
+ "windows-targets 0.52.6",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "windows-sys"
1541
+ version = "0.60.2"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1544
+ dependencies = [
1545
+ "windows-targets 0.53.5",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "windows-targets"
1550
+ version = "0.48.5"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1553
+ dependencies = [
1554
+ "windows_aarch64_gnullvm 0.48.5",
1555
+ "windows_aarch64_msvc 0.48.5",
1556
+ "windows_i686_gnu 0.48.5",
1557
+ "windows_i686_msvc 0.48.5",
1558
+ "windows_x86_64_gnu 0.48.5",
1559
+ "windows_x86_64_gnullvm 0.48.5",
1560
+ "windows_x86_64_msvc 0.48.5",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "windows-targets"
1565
+ version = "0.52.6"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1568
+ dependencies = [
1569
+ "windows_aarch64_gnullvm 0.52.6",
1570
+ "windows_aarch64_msvc 0.52.6",
1571
+ "windows_i686_gnu 0.52.6",
1572
+ "windows_i686_gnullvm 0.52.6",
1573
+ "windows_i686_msvc 0.52.6",
1574
+ "windows_x86_64_gnu 0.52.6",
1575
+ "windows_x86_64_gnullvm 0.52.6",
1576
+ "windows_x86_64_msvc 0.52.6",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "windows-targets"
1581
+ version = "0.53.5"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1584
+ dependencies = [
1585
+ "windows-link",
1586
+ "windows_aarch64_gnullvm 0.53.1",
1587
+ "windows_aarch64_msvc 0.53.1",
1588
+ "windows_i686_gnu 0.53.1",
1589
+ "windows_i686_gnullvm 0.53.1",
1590
+ "windows_i686_msvc 0.53.1",
1591
+ "windows_x86_64_gnu 0.53.1",
1592
+ "windows_x86_64_gnullvm 0.53.1",
1593
+ "windows_x86_64_msvc 0.53.1",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "windows_aarch64_gnullvm"
1598
+ version = "0.48.5"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1601
+
1602
+ [[package]]
1603
+ name = "windows_aarch64_gnullvm"
1604
+ version = "0.52.6"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1607
+
1608
+ [[package]]
1609
+ name = "windows_aarch64_gnullvm"
1610
+ version = "0.53.1"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1613
+
1614
+ [[package]]
1615
+ name = "windows_aarch64_msvc"
1616
+ version = "0.48.5"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1619
+
1620
+ [[package]]
1621
+ name = "windows_aarch64_msvc"
1622
+ version = "0.52.6"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1625
+
1626
+ [[package]]
1627
+ name = "windows_aarch64_msvc"
1628
+ version = "0.53.1"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1631
+
1632
+ [[package]]
1633
+ name = "windows_i686_gnu"
1634
+ version = "0.48.5"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1637
+
1638
+ [[package]]
1639
+ name = "windows_i686_gnu"
1640
+ version = "0.52.6"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1643
+
1644
+ [[package]]
1645
+ name = "windows_i686_gnu"
1646
+ version = "0.53.1"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1649
+
1650
+ [[package]]
1651
+ name = "windows_i686_gnullvm"
1652
+ version = "0.52.6"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1655
+
1656
+ [[package]]
1657
+ name = "windows_i686_gnullvm"
1658
+ version = "0.53.1"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1661
+
1662
+ [[package]]
1663
+ name = "windows_i686_msvc"
1664
+ version = "0.48.5"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1667
+
1668
+ [[package]]
1669
+ name = "windows_i686_msvc"
1670
+ version = "0.52.6"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1673
+
1674
+ [[package]]
1675
+ name = "windows_i686_msvc"
1676
+ version = "0.53.1"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1679
+
1680
+ [[package]]
1681
+ name = "windows_x86_64_gnu"
1682
+ version = "0.48.5"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1685
+
1686
+ [[package]]
1687
+ name = "windows_x86_64_gnu"
1688
+ version = "0.52.6"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1691
+
1692
+ [[package]]
1693
+ name = "windows_x86_64_gnu"
1694
+ version = "0.53.1"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1697
+
1698
+ [[package]]
1699
+ name = "windows_x86_64_gnullvm"
1700
+ version = "0.48.5"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1703
+
1704
+ [[package]]
1705
+ name = "windows_x86_64_gnullvm"
1706
+ version = "0.52.6"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1709
+
1710
+ [[package]]
1711
+ name = "windows_x86_64_gnullvm"
1712
+ version = "0.53.1"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1715
+
1716
+ [[package]]
1717
+ name = "windows_x86_64_msvc"
1718
+ version = "0.48.5"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1721
+
1722
+ [[package]]
1723
+ name = "windows_x86_64_msvc"
1724
+ version = "0.52.6"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1727
+
1728
+ [[package]]
1729
+ name = "windows_x86_64_msvc"
1730
+ version = "0.53.1"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1733
+
1734
+ [[package]]
1735
+ name = "wit-bindgen"
1736
+ version = "0.46.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1739
+
1740
+ [[package]]
1741
+ name = "zerocopy"
1742
+ version = "0.8.27"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1745
+ dependencies = [
1746
+ "zerocopy-derive",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "zerocopy-derive"
1751
+ version = "0.8.27"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1754
+ dependencies = [
1755
+ "proc-macro2",
1756
+ "quote",
1757
+ "syn",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "zeroize"
1762
+ version = "1.8.2"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"