rusaint 0.10.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 (146) hide show
  1. rusaint-0.10.0/Cargo.lock +3191 -0
  2. rusaint-0.10.0/Cargo.toml +23 -0
  3. rusaint-0.10.0/PKG-INFO +50 -0
  4. rusaint-0.10.0/README.md +34 -0
  5. rusaint-0.10.0/packages/rusaint/Cargo.toml +62 -0
  6. rusaint-0.10.0/packages/rusaint/README.md +159 -0
  7. rusaint-0.10.0/packages/rusaint/src/application/chapel/mod.rs +132 -0
  8. rusaint-0.10.0/packages/rusaint/src/application/chapel/model.rs +436 -0
  9. rusaint-0.10.0/packages/rusaint/src/application/course_grades/mod.rs +576 -0
  10. rusaint-0.10.0/packages/rusaint/src/application/course_grades/model.rs +411 -0
  11. rusaint-0.10.0/packages/rusaint/src/application/course_schedule/mod.rs +372 -0
  12. rusaint-0.10.0/packages/rusaint/src/application/course_schedule/model.rs +591 -0
  13. rusaint-0.10.0/packages/rusaint/src/application/course_schedule/utils.rs +191 -0
  14. rusaint-0.10.0/packages/rusaint/src/application/graduation_requirements/mod.rs +199 -0
  15. rusaint-0.10.0/packages/rusaint/src/application/graduation_requirements/model.rs +290 -0
  16. rusaint-0.10.0/packages/rusaint/src/application/lecture_assessment/mod.rs +189 -0
  17. rusaint-0.10.0/packages/rusaint/src/application/lecture_assessment/model.rs +125 -0
  18. rusaint-0.10.0/packages/rusaint/src/application/mod.rs +182 -0
  19. rusaint-0.10.0/packages/rusaint/src/application/personal_course_schedule/mod.rs +191 -0
  20. rusaint-0.10.0/packages/rusaint/src/application/personal_course_schedule/model.rs +85 -0
  21. rusaint-0.10.0/packages/rusaint/src/application/scholarships/mod.rs +36 -0
  22. rusaint-0.10.0/packages/rusaint/src/application/scholarships/model.rs +193 -0
  23. rusaint-0.10.0/packages/rusaint/src/application/student_information/mod.rs +105 -0
  24. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/academic_record.rs +135 -0
  25. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/bank_account.rs +79 -0
  26. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/family.rs +176 -0
  27. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/graduation.rs +141 -0
  28. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/mod.rs +333 -0
  29. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/qualification.rs +281 -0
  30. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/religion.rs +204 -0
  31. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/research_bank_account.rs +81 -0
  32. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/transfer.rs +131 -0
  33. rusaint-0.10.0/packages/rusaint/src/application/student_information/model/work.rs +154 -0
  34. rusaint-0.10.0/packages/rusaint/src/application/utils/de_with.rs +74 -0
  35. rusaint-0.10.0/packages/rusaint/src/application/utils/input_field.rs +37 -0
  36. rusaint-0.10.0/packages/rusaint/src/application/utils/mod.rs +4 -0
  37. rusaint-0.10.0/packages/rusaint/src/application/utils/sap_table.rs +55 -0
  38. rusaint-0.10.0/packages/rusaint/src/application/utils/semester.rs +48 -0
  39. rusaint-0.10.0/packages/rusaint/src/error/mod.rs +51 -0
  40. rusaint-0.10.0/packages/rusaint/src/lib.rs +123 -0
  41. rusaint-0.10.0/packages/rusaint/src/model/mod.rs +30 -0
  42. rusaint-0.10.0/packages/rusaint/src/session/mod.rs +229 -0
  43. rusaint-0.10.0/packages/rusaint/src/uniffi_support.rs +17 -0
  44. rusaint-0.10.0/packages/rusaint/src/utils/mod.rs +20 -0
  45. rusaint-0.10.0/packages/rusaint/src/webdynpro/client/body/mod.rs +305 -0
  46. rusaint-0.10.0/packages/rusaint/src/webdynpro/client/mod.rs +330 -0
  47. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/action.rs +25 -0
  48. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/complex.rs +106 -0
  49. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/layout.rs +47 -0
  50. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/mod.rs +17 -0
  51. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/selection.rs +248 -0
  52. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/system.rs +74 -0
  53. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/element/text.rs +34 -0
  54. rusaint-0.10.0/packages/rusaint/src/webdynpro/command/mod.rs +26 -0
  55. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/action/button.rs +128 -0
  56. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/action/link.rs +62 -0
  57. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/action/mod.rs +8 -0
  58. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/mod.rs +5 -0
  59. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/body.rs +181 -0
  60. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/cell/header_cell.rs +91 -0
  61. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/cell/hierarchical_cell.rs +73 -0
  62. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/cell/matrix_cell.rs +64 -0
  63. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/cell/mod.rs +208 -0
  64. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/cell/normal_cell.rs +71 -0
  65. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/cell/selection_cell.rs +68 -0
  66. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/from_sap_table.rs +149 -0
  67. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/header.rs +164 -0
  68. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/mod.rs +171 -0
  69. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/property.rs +375 -0
  70. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/complex/sap_table/row.rs +156 -0
  71. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/definition/mod.rs +53 -0
  72. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/graphic/image.rs +70 -0
  73. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/graphic/mod.rs +3 -0
  74. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/button_row.rs +48 -0
  75. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/form.rs +67 -0
  76. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/grid_layout/cell.rs +31 -0
  77. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/grid_layout/mod.rs +36 -0
  78. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/mod.rs +79 -0
  79. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/popup_window.rs +62 -0
  80. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/scroll_container.rs +41 -0
  81. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/scrollbar.rs +51 -0
  82. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/tab_strip/item.rs +45 -0
  83. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/tab_strip/mod.rs +104 -0
  84. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/layout/tray.rs +67 -0
  85. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/macros.rs +203 -0
  86. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/mod.rs +385 -0
  87. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/parser.rs +55 -0
  88. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/property/mod.rs +394 -0
  89. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/selection/check_box.rs +74 -0
  90. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/selection/combo_box.rs +131 -0
  91. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/selection/list_box/item/action_item.rs +58 -0
  92. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/selection/list_box/item/mod.rs +230 -0
  93. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/selection/list_box/mod.rs +351 -0
  94. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/selection/mod.rs +9 -0
  95. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/sub/definition.rs +48 -0
  96. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/sub/macros.rs +127 -0
  97. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/sub/mod.rs +36 -0
  98. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/system/client_inspector.rs +238 -0
  99. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/system/custom.rs +185 -0
  100. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/system/loading_placeholder.rs +45 -0
  101. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/system/mod.rs +9 -0
  102. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/text/caption.rs +73 -0
  103. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/text/input_field.rs +71 -0
  104. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/text/label.rs +49 -0
  105. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/text/mod.rs +9 -0
  106. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/text/text_view.rs +62 -0
  107. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/unknown.rs +129 -0
  108. rusaint-0.10.0/packages/rusaint/src/webdynpro/element/utils.rs +79 -0
  109. rusaint-0.10.0/packages/rusaint/src/webdynpro/error/mod.rs +141 -0
  110. rusaint-0.10.0/packages/rusaint/src/webdynpro/event/event_queue.rs +87 -0
  111. rusaint-0.10.0/packages/rusaint/src/webdynpro/event/mod.rs +151 -0
  112. rusaint-0.10.0/packages/rusaint/src/webdynpro/event/test.rs +23 -0
  113. rusaint-0.10.0/packages/rusaint/src/webdynpro/event/ucf_parameters.rs +233 -0
  114. rusaint-0.10.0/packages/rusaint/src/webdynpro/mod.rs +103 -0
  115. rusaint-0.10.0/packages/rusaint/tests/application/chapel.rs +56 -0
  116. rusaint-0.10.0/packages/rusaint/tests/application/course_grades.rs +96 -0
  117. rusaint-0.10.0/packages/rusaint/tests/application/course_schedule.rs +194 -0
  118. rusaint-0.10.0/packages/rusaint/tests/application/graduation_requirements.rs +48 -0
  119. rusaint-0.10.0/packages/rusaint/tests/application/lecture_assessment.rs +22 -0
  120. rusaint-0.10.0/packages/rusaint/tests/application/mod.rs +9 -0
  121. rusaint-0.10.0/packages/rusaint/tests/application/personal_course_schedule.rs +55 -0
  122. rusaint-0.10.0/packages/rusaint/tests/application/scholarships.rs +16 -0
  123. rusaint-0.10.0/packages/rusaint/tests/application/student_information.rs +125 -0
  124. rusaint-0.10.0/packages/rusaint/tests/tests.rs +46 -0
  125. rusaint-0.10.0/packages/rusaint/tests/webdynpro/element/button.rs +50 -0
  126. rusaint-0.10.0/packages/rusaint/tests/webdynpro/element/link.rs +47 -0
  127. rusaint-0.10.0/packages/rusaint/tests/webdynpro/element/mod.rs +70 -0
  128. rusaint-0.10.0/packages/rusaint/tests/webdynpro/event/mod.rs +28 -0
  129. rusaint-0.10.0/packages/rusaint/tests/webdynpro/mod.rs +2 -0
  130. rusaint-0.10.0/packages/rusaint/uniffi.toml +9 -0
  131. rusaint-0.10.0/packages/rusaint-ffi/Cargo.toml +26 -0
  132. rusaint-0.10.0/packages/rusaint-ffi/src/application/chapel.rs +62 -0
  133. rusaint-0.10.0/packages/rusaint-ffi/src/application/course_grades.rs +122 -0
  134. rusaint-0.10.0/packages/rusaint-ffi/src/application/course_schedule.rs +208 -0
  135. rusaint-0.10.0/packages/rusaint-ffi/src/application/graduation_requirements.rs +58 -0
  136. rusaint-0.10.0/packages/rusaint-ffi/src/application/lecture_assessment.rs +75 -0
  137. rusaint-0.10.0/packages/rusaint-ffi/src/application/mod.rs +26 -0
  138. rusaint-0.10.0/packages/rusaint-ffi/src/application/model.rs +13 -0
  139. rusaint-0.10.0/packages/rusaint-ffi/src/application/personal_course_schedule.rs +64 -0
  140. rusaint-0.10.0/packages/rusaint-ffi/src/application/scholarships.rs +51 -0
  141. rusaint-0.10.0/packages/rusaint-ffi/src/application/student_information.rs +101 -0
  142. rusaint-0.10.0/packages/rusaint-ffi/src/error.rs +7 -0
  143. rusaint-0.10.0/packages/rusaint-ffi/src/lib.rs +10 -0
  144. rusaint-0.10.0/packages/rusaint-ffi/src/session.rs +76 -0
  145. rusaint-0.10.0/packages/rusaint-ffi/uniffi.toml +9 -0
  146. rusaint-0.10.0/pyproject.toml +18 -0
@@ -0,0 +1,3191 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "aho-corasick"
22
+ version = "1.1.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25
+ dependencies = [
26
+ "memchr",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "alloc-no-stdlib"
31
+ version = "2.0.4"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
34
+
35
+ [[package]]
36
+ name = "alloc-stdlib"
37
+ version = "0.2.2"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
40
+ dependencies = [
41
+ "alloc-no-stdlib",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "allocator-api2"
46
+ version = "0.2.21"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
49
+
50
+ [[package]]
51
+ name = "anstream"
52
+ version = "0.6.19"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
55
+ dependencies = [
56
+ "anstyle",
57
+ "anstyle-parse",
58
+ "anstyle-query",
59
+ "anstyle-wincon",
60
+ "colorchoice",
61
+ "is_terminal_polyfill",
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle"
67
+ version = "1.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
70
+
71
+ [[package]]
72
+ name = "anstyle-parse"
73
+ version = "0.2.7"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
76
+ dependencies = [
77
+ "utf8parse",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-query"
82
+ version = "1.1.3"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
85
+ dependencies = [
86
+ "windows-sys 0.59.0",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anstyle-wincon"
91
+ version = "3.0.9"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
94
+ dependencies = [
95
+ "anstyle",
96
+ "once_cell_polyfill",
97
+ "windows-sys 0.59.0",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "anyhow"
102
+ version = "1.0.98"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
105
+
106
+ [[package]]
107
+ name = "askama"
108
+ version = "0.13.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7"
111
+ dependencies = [
112
+ "askama_derive",
113
+ "itoa",
114
+ "percent-encoding",
115
+ "serde",
116
+ "serde_json",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "askama_derive"
121
+ version = "0.13.1"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac"
124
+ dependencies = [
125
+ "askama_parser",
126
+ "basic-toml",
127
+ "memchr",
128
+ "proc-macro2",
129
+ "quote",
130
+ "rustc-hash",
131
+ "serde",
132
+ "serde_derive",
133
+ "syn",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "askama_parser"
138
+ version = "0.13.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "cf315ce6524c857bb129ff794935cf6d42c82a6cff60526fe2a63593de4d0d4f"
141
+ dependencies = [
142
+ "memchr",
143
+ "serde",
144
+ "serde_derive",
145
+ "winnow",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "async-compat"
150
+ version = "0.2.4"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "7bab94bde396a3f7b4962e396fdad640e241ed797d4d8d77fc8c237d14c58fc0"
153
+ dependencies = [
154
+ "futures-core",
155
+ "futures-io",
156
+ "once_cell",
157
+ "pin-project-lite",
158
+ "tokio",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "async-compression"
163
+ version = "0.4.23"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "b37fc50485c4f3f736a4fb14199f6d5f5ba008d7f28fe710306c92780f004c07"
166
+ dependencies = [
167
+ "brotli",
168
+ "flate2",
169
+ "futures-core",
170
+ "memchr",
171
+ "pin-project-lite",
172
+ "tokio",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "async-stream"
177
+ version = "0.3.6"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
180
+ dependencies = [
181
+ "async-stream-impl",
182
+ "futures-core",
183
+ "pin-project-lite",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "async-stream-impl"
188
+ version = "0.3.6"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
191
+ dependencies = [
192
+ "proc-macro2",
193
+ "quote",
194
+ "syn",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "atomic-waker"
199
+ version = "1.1.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
202
+
203
+ [[package]]
204
+ name = "autocfg"
205
+ version = "1.4.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
208
+
209
+ [[package]]
210
+ name = "backtrace"
211
+ version = "0.3.75"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
214
+ dependencies = [
215
+ "addr2line",
216
+ "cfg-if",
217
+ "libc",
218
+ "miniz_oxide",
219
+ "object",
220
+ "rustc-demangle",
221
+ "windows-targets",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "base64"
226
+ version = "0.22.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
229
+
230
+ [[package]]
231
+ name = "basic-toml"
232
+ version = "0.1.10"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
235
+ dependencies = [
236
+ "serde",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "bitflags"
241
+ version = "2.9.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
244
+
245
+ [[package]]
246
+ name = "brotli"
247
+ version = "8.0.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
250
+ dependencies = [
251
+ "alloc-no-stdlib",
252
+ "alloc-stdlib",
253
+ "brotli-decompressor",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "brotli-decompressor"
258
+ version = "5.0.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
261
+ dependencies = [
262
+ "alloc-no-stdlib",
263
+ "alloc-stdlib",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "bumpalo"
268
+ version = "3.18.1"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
271
+
272
+ [[package]]
273
+ name = "byteorder"
274
+ version = "1.5.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
277
+
278
+ [[package]]
279
+ name = "bytes"
280
+ version = "1.10.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
283
+
284
+ [[package]]
285
+ name = "camino"
286
+ version = "1.1.10"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
289
+ dependencies = [
290
+ "serde",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "cargo-platform"
295
+ version = "0.1.9"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
298
+ dependencies = [
299
+ "serde",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "cargo_metadata"
304
+ version = "0.19.2"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
307
+ dependencies = [
308
+ "camino",
309
+ "cargo-platform",
310
+ "semver",
311
+ "serde",
312
+ "serde_json",
313
+ "thiserror",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "cc"
318
+ version = "1.2.26"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "956a5e21988b87f372569b66183b78babf23ebc2e744b733e4350a752c4dafac"
321
+ dependencies = [
322
+ "shlex",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "cfg-if"
327
+ version = "1.0.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
330
+
331
+ [[package]]
332
+ name = "cfg_aliases"
333
+ version = "0.2.1"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
336
+
337
+ [[package]]
338
+ name = "clap"
339
+ version = "4.5.39"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f"
342
+ dependencies = [
343
+ "clap_builder",
344
+ "clap_derive",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "clap_builder"
349
+ version = "4.5.39"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51"
352
+ dependencies = [
353
+ "anstyle",
354
+ "clap_lex",
355
+ "strsim",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "clap_derive"
360
+ version = "4.5.32"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
363
+ dependencies = [
364
+ "heck",
365
+ "proc-macro2",
366
+ "quote",
367
+ "syn",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "clap_lex"
372
+ version = "0.7.4"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
375
+
376
+ [[package]]
377
+ name = "colorchoice"
378
+ version = "1.0.4"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
381
+
382
+ [[package]]
383
+ name = "cookie"
384
+ version = "0.18.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
387
+ dependencies = [
388
+ "percent-encoding",
389
+ "time",
390
+ "version_check",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "cookie_store"
395
+ version = "0.21.1"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9"
398
+ dependencies = [
399
+ "cookie",
400
+ "document-features",
401
+ "idna",
402
+ "log",
403
+ "publicsuffix",
404
+ "serde",
405
+ "serde_derive",
406
+ "serde_json",
407
+ "time",
408
+ "url",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "core-foundation"
413
+ version = "0.9.4"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
416
+ dependencies = [
417
+ "core-foundation-sys",
418
+ "libc",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "core-foundation-sys"
423
+ version = "0.8.7"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
426
+
427
+ [[package]]
428
+ name = "crc32fast"
429
+ version = "1.4.2"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
432
+ dependencies = [
433
+ "cfg-if",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "cssparser"
438
+ version = "0.34.0"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "b7c66d1cd8ed61bf80b38432613a7a2f09401ab8d0501110655f8b341484a3e3"
441
+ dependencies = [
442
+ "cssparser-macros",
443
+ "dtoa-short",
444
+ "itoa",
445
+ "phf",
446
+ "smallvec",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "cssparser"
451
+ version = "0.35.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "4e901edd733a1472f944a45116df3f846f54d37e67e68640ac8bb69689aca2aa"
454
+ dependencies = [
455
+ "cssparser-macros",
456
+ "dtoa-short",
457
+ "itoa",
458
+ "phf",
459
+ "smallvec",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "cssparser-macros"
464
+ version = "0.6.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
467
+ dependencies = [
468
+ "quote",
469
+ "syn",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "custom_debug_derive"
474
+ version = "0.6.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "a707ceda8652f6c7624f2be725652e9524c815bf3b9d55a0b2320be2303f9c11"
477
+ dependencies = [
478
+ "darling",
479
+ "proc-macro2",
480
+ "quote",
481
+ "syn",
482
+ "synstructure",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "darling"
487
+ version = "0.20.11"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
490
+ dependencies = [
491
+ "darling_core",
492
+ "darling_macro",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "darling_core"
497
+ version = "0.20.11"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
500
+ dependencies = [
501
+ "fnv",
502
+ "ident_case",
503
+ "proc-macro2",
504
+ "quote",
505
+ "strsim",
506
+ "syn",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "darling_macro"
511
+ version = "0.20.11"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
514
+ dependencies = [
515
+ "darling_core",
516
+ "quote",
517
+ "syn",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "deranged"
522
+ version = "0.4.0"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
525
+ dependencies = [
526
+ "powerfmt",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "derive_builder"
531
+ version = "0.20.2"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
534
+ dependencies = [
535
+ "derive_builder_macro",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "derive_builder_core"
540
+ version = "0.20.2"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
543
+ dependencies = [
544
+ "darling",
545
+ "proc-macro2",
546
+ "quote",
547
+ "syn",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "derive_builder_macro"
552
+ version = "0.20.2"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
555
+ dependencies = [
556
+ "derive_builder_core",
557
+ "syn",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "derive_more"
562
+ version = "0.99.20"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
565
+ dependencies = [
566
+ "proc-macro2",
567
+ "quote",
568
+ "syn",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "displaydoc"
573
+ version = "0.2.5"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
576
+ dependencies = [
577
+ "proc-macro2",
578
+ "quote",
579
+ "syn",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "document-features"
584
+ version = "0.2.11"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
587
+ dependencies = [
588
+ "litrs",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "dotenvy"
593
+ version = "0.15.7"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
596
+
597
+ [[package]]
598
+ name = "dtoa"
599
+ version = "1.0.10"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
602
+
603
+ [[package]]
604
+ name = "dtoa-short"
605
+ version = "0.3.5"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
608
+ dependencies = [
609
+ "dtoa",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "ego-tree"
614
+ version = "0.10.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8"
617
+
618
+ [[package]]
619
+ name = "encoding_rs"
620
+ version = "0.8.35"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
623
+ dependencies = [
624
+ "cfg-if",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "env_filter"
629
+ version = "0.1.3"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
632
+ dependencies = [
633
+ "log",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "env_logger"
638
+ version = "0.11.8"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
641
+ dependencies = [
642
+ "anstream",
643
+ "anstyle",
644
+ "env_filter",
645
+ "log",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "equivalent"
650
+ version = "1.0.2"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
653
+
654
+ [[package]]
655
+ name = "errno"
656
+ version = "0.3.12"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
659
+ dependencies = [
660
+ "libc",
661
+ "windows-sys 0.59.0",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "eyre"
666
+ version = "0.6.12"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
669
+ dependencies = [
670
+ "indenter",
671
+ "once_cell",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "fastrand"
676
+ version = "2.3.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
679
+
680
+ [[package]]
681
+ name = "flate2"
682
+ version = "1.1.2"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
685
+ dependencies = [
686
+ "crc32fast",
687
+ "miniz_oxide",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "fnv"
692
+ version = "1.0.7"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
695
+
696
+ [[package]]
697
+ name = "foldhash"
698
+ version = "0.1.5"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
701
+
702
+ [[package]]
703
+ name = "form_urlencoded"
704
+ version = "1.2.1"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
707
+ dependencies = [
708
+ "percent-encoding",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "fs-err"
713
+ version = "2.11.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
716
+ dependencies = [
717
+ "autocfg",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "futf"
722
+ version = "0.1.5"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
725
+ dependencies = [
726
+ "mac",
727
+ "new_debug_unreachable",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "futures"
732
+ version = "0.3.31"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
735
+ dependencies = [
736
+ "futures-channel",
737
+ "futures-core",
738
+ "futures-executor",
739
+ "futures-io",
740
+ "futures-sink",
741
+ "futures-task",
742
+ "futures-util",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "futures-channel"
747
+ version = "0.3.31"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
750
+ dependencies = [
751
+ "futures-core",
752
+ "futures-sink",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "futures-core"
757
+ version = "0.3.31"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
760
+
761
+ [[package]]
762
+ name = "futures-executor"
763
+ version = "0.3.31"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
766
+ dependencies = [
767
+ "futures-core",
768
+ "futures-task",
769
+ "futures-util",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "futures-io"
774
+ version = "0.3.31"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
777
+
778
+ [[package]]
779
+ name = "futures-macro"
780
+ version = "0.3.31"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
783
+ dependencies = [
784
+ "proc-macro2",
785
+ "quote",
786
+ "syn",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "futures-sink"
791
+ version = "0.3.31"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
794
+
795
+ [[package]]
796
+ name = "futures-task"
797
+ version = "0.3.31"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
800
+
801
+ [[package]]
802
+ name = "futures-util"
803
+ version = "0.3.31"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
806
+ dependencies = [
807
+ "futures-channel",
808
+ "futures-core",
809
+ "futures-io",
810
+ "futures-macro",
811
+ "futures-sink",
812
+ "futures-task",
813
+ "memchr",
814
+ "pin-project-lite",
815
+ "pin-utils",
816
+ "slab",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "fxhash"
821
+ version = "0.2.1"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
824
+ dependencies = [
825
+ "byteorder",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "getopts"
830
+ version = "0.2.21"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
833
+ dependencies = [
834
+ "unicode-width",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "getrandom"
839
+ version = "0.2.16"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
842
+ dependencies = [
843
+ "cfg-if",
844
+ "js-sys",
845
+ "libc",
846
+ "wasi 0.11.0+wasi-snapshot-preview1",
847
+ "wasm-bindgen",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "getrandom"
852
+ version = "0.3.3"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
855
+ dependencies = [
856
+ "cfg-if",
857
+ "js-sys",
858
+ "libc",
859
+ "r-efi",
860
+ "wasi 0.14.2+wasi-0.2.4",
861
+ "wasm-bindgen",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "gimli"
866
+ version = "0.31.1"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
869
+
870
+ [[package]]
871
+ name = "glob"
872
+ version = "0.3.2"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
875
+
876
+ [[package]]
877
+ name = "goblin"
878
+ version = "0.8.2"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
881
+ dependencies = [
882
+ "log",
883
+ "plain",
884
+ "scroll",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "h2"
889
+ version = "0.4.10"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
892
+ dependencies = [
893
+ "atomic-waker",
894
+ "bytes",
895
+ "fnv",
896
+ "futures-core",
897
+ "futures-sink",
898
+ "http",
899
+ "indexmap",
900
+ "slab",
901
+ "tokio",
902
+ "tokio-util",
903
+ "tracing",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "hashbrown"
908
+ version = "0.15.4"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
911
+ dependencies = [
912
+ "allocator-api2",
913
+ "equivalent",
914
+ "foldhash",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "heck"
919
+ version = "0.5.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
922
+
923
+ [[package]]
924
+ name = "html-escape"
925
+ version = "0.2.13"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
928
+ dependencies = [
929
+ "utf8-width",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "html5ever"
934
+ version = "0.29.1"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
937
+ dependencies = [
938
+ "log",
939
+ "mac",
940
+ "markup5ever",
941
+ "match_token",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "http"
946
+ version = "1.3.1"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
949
+ dependencies = [
950
+ "bytes",
951
+ "fnv",
952
+ "itoa",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "http-body"
957
+ version = "1.0.1"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
960
+ dependencies = [
961
+ "bytes",
962
+ "http",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "http-body-util"
967
+ version = "0.1.3"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
970
+ dependencies = [
971
+ "bytes",
972
+ "futures-core",
973
+ "http",
974
+ "http-body",
975
+ "pin-project-lite",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "httparse"
980
+ version = "1.10.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
983
+
984
+ [[package]]
985
+ name = "hyper"
986
+ version = "1.6.0"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
989
+ dependencies = [
990
+ "bytes",
991
+ "futures-channel",
992
+ "futures-util",
993
+ "h2",
994
+ "http",
995
+ "http-body",
996
+ "httparse",
997
+ "itoa",
998
+ "pin-project-lite",
999
+ "smallvec",
1000
+ "tokio",
1001
+ "want",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "hyper-rustls"
1006
+ version = "0.27.7"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1009
+ dependencies = [
1010
+ "http",
1011
+ "hyper",
1012
+ "hyper-util",
1013
+ "rustls",
1014
+ "rustls-pki-types",
1015
+ "tokio",
1016
+ "tokio-rustls",
1017
+ "tower-service",
1018
+ "webpki-roots",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "hyper-util"
1023
+ version = "0.1.14"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
1026
+ dependencies = [
1027
+ "base64",
1028
+ "bytes",
1029
+ "futures-channel",
1030
+ "futures-core",
1031
+ "futures-util",
1032
+ "http",
1033
+ "http-body",
1034
+ "hyper",
1035
+ "ipnet",
1036
+ "libc",
1037
+ "percent-encoding",
1038
+ "pin-project-lite",
1039
+ "socket2",
1040
+ "system-configuration",
1041
+ "tokio",
1042
+ "tower-service",
1043
+ "tracing",
1044
+ "windows-registry",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "icu_collections"
1049
+ version = "2.0.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1052
+ dependencies = [
1053
+ "displaydoc",
1054
+ "potential_utf",
1055
+ "yoke",
1056
+ "zerofrom",
1057
+ "zerovec",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "icu_locale_core"
1062
+ version = "2.0.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1065
+ dependencies = [
1066
+ "displaydoc",
1067
+ "litemap",
1068
+ "tinystr",
1069
+ "writeable",
1070
+ "zerovec",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "icu_normalizer"
1075
+ version = "2.0.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1078
+ dependencies = [
1079
+ "displaydoc",
1080
+ "icu_collections",
1081
+ "icu_normalizer_data",
1082
+ "icu_properties",
1083
+ "icu_provider",
1084
+ "smallvec",
1085
+ "zerovec",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "icu_normalizer_data"
1090
+ version = "2.0.0"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1093
+
1094
+ [[package]]
1095
+ name = "icu_properties"
1096
+ version = "2.0.1"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1099
+ dependencies = [
1100
+ "displaydoc",
1101
+ "icu_collections",
1102
+ "icu_locale_core",
1103
+ "icu_properties_data",
1104
+ "icu_provider",
1105
+ "potential_utf",
1106
+ "zerotrie",
1107
+ "zerovec",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "icu_properties_data"
1112
+ version = "2.0.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1115
+
1116
+ [[package]]
1117
+ name = "icu_provider"
1118
+ version = "2.0.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1121
+ dependencies = [
1122
+ "displaydoc",
1123
+ "icu_locale_core",
1124
+ "stable_deref_trait",
1125
+ "tinystr",
1126
+ "writeable",
1127
+ "yoke",
1128
+ "zerofrom",
1129
+ "zerotrie",
1130
+ "zerovec",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "ident_case"
1135
+ version = "1.0.1"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1138
+
1139
+ [[package]]
1140
+ name = "idna"
1141
+ version = "1.0.3"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1144
+ dependencies = [
1145
+ "idna_adapter",
1146
+ "smallvec",
1147
+ "utf8_iter",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "idna_adapter"
1152
+ version = "1.2.1"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1155
+ dependencies = [
1156
+ "icu_normalizer",
1157
+ "icu_properties",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "indenter"
1162
+ version = "0.3.3"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
1165
+
1166
+ [[package]]
1167
+ name = "indexmap"
1168
+ version = "2.9.0"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1171
+ dependencies = [
1172
+ "equivalent",
1173
+ "hashbrown",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "ipnet"
1178
+ version = "2.11.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1181
+
1182
+ [[package]]
1183
+ name = "iri-string"
1184
+ version = "0.7.8"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1187
+ dependencies = [
1188
+ "memchr",
1189
+ "serde",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "is_terminal_polyfill"
1194
+ version = "1.70.1"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1197
+
1198
+ [[package]]
1199
+ name = "itoa"
1200
+ version = "1.0.15"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1203
+
1204
+ [[package]]
1205
+ name = "js-sys"
1206
+ version = "0.3.77"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1209
+ dependencies = [
1210
+ "once_cell",
1211
+ "wasm-bindgen",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "lazy_static"
1216
+ version = "1.5.0"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1219
+
1220
+ [[package]]
1221
+ name = "libc"
1222
+ version = "0.2.172"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1225
+
1226
+ [[package]]
1227
+ name = "linux-raw-sys"
1228
+ version = "0.9.4"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1231
+
1232
+ [[package]]
1233
+ name = "litemap"
1234
+ version = "0.8.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1237
+
1238
+ [[package]]
1239
+ name = "litrs"
1240
+ version = "0.4.1"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
1243
+
1244
+ [[package]]
1245
+ name = "lock_api"
1246
+ version = "0.4.13"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1249
+ dependencies = [
1250
+ "autocfg",
1251
+ "scopeguard",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "log"
1256
+ version = "0.4.27"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1259
+
1260
+ [[package]]
1261
+ name = "lol_html"
1262
+ version = "2.4.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "26a24302899fc10d7a785ea5d810ba3c41faa37d0f77847d9f0b16195d3c7a6c"
1265
+ dependencies = [
1266
+ "bitflags",
1267
+ "cfg-if",
1268
+ "cssparser 0.35.0",
1269
+ "encoding_rs",
1270
+ "hashbrown",
1271
+ "memchr",
1272
+ "mime",
1273
+ "precomputed-hash",
1274
+ "selectors 0.27.0",
1275
+ "thiserror",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "lru-slab"
1280
+ version = "0.1.2"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1283
+
1284
+ [[package]]
1285
+ name = "mac"
1286
+ version = "0.1.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1289
+
1290
+ [[package]]
1291
+ name = "markup5ever"
1292
+ version = "0.14.1"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
1295
+ dependencies = [
1296
+ "log",
1297
+ "phf",
1298
+ "phf_codegen",
1299
+ "string_cache",
1300
+ "string_cache_codegen",
1301
+ "tendril",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "match_token"
1306
+ version = "0.1.0"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
1309
+ dependencies = [
1310
+ "proc-macro2",
1311
+ "quote",
1312
+ "syn",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "matchers"
1317
+ version = "0.1.0"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1320
+ dependencies = [
1321
+ "regex-automata 0.1.10",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "memchr"
1326
+ version = "2.7.4"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1329
+
1330
+ [[package]]
1331
+ name = "mime"
1332
+ version = "0.3.17"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1335
+
1336
+ [[package]]
1337
+ name = "minimal-lexical"
1338
+ version = "0.2.1"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1341
+
1342
+ [[package]]
1343
+ name = "miniz_oxide"
1344
+ version = "0.8.8"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1347
+ dependencies = [
1348
+ "adler2",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "mio"
1353
+ version = "1.0.4"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1356
+ dependencies = [
1357
+ "libc",
1358
+ "wasi 0.11.0+wasi-snapshot-preview1",
1359
+ "windows-sys 0.59.0",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "new_debug_unreachable"
1364
+ version = "1.0.6"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1367
+
1368
+ [[package]]
1369
+ name = "nom"
1370
+ version = "7.1.3"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1373
+ dependencies = [
1374
+ "memchr",
1375
+ "minimal-lexical",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "nu-ansi-term"
1380
+ version = "0.46.0"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1383
+ dependencies = [
1384
+ "overload",
1385
+ "winapi",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "num-conv"
1390
+ version = "0.1.0"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1393
+
1394
+ [[package]]
1395
+ name = "object"
1396
+ version = "0.36.7"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1399
+ dependencies = [
1400
+ "memchr",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "once_cell"
1405
+ version = "1.21.3"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1408
+
1409
+ [[package]]
1410
+ name = "once_cell_polyfill"
1411
+ version = "1.70.1"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1414
+
1415
+ [[package]]
1416
+ name = "overload"
1417
+ version = "0.1.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1420
+
1421
+ [[package]]
1422
+ name = "parking_lot"
1423
+ version = "0.12.4"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1426
+ dependencies = [
1427
+ "lock_api",
1428
+ "parking_lot_core",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "parking_lot_core"
1433
+ version = "0.9.11"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1436
+ dependencies = [
1437
+ "cfg-if",
1438
+ "libc",
1439
+ "redox_syscall",
1440
+ "smallvec",
1441
+ "windows-targets",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "percent-encoding"
1446
+ version = "2.3.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1449
+
1450
+ [[package]]
1451
+ name = "phf"
1452
+ version = "0.11.3"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1455
+ dependencies = [
1456
+ "phf_macros",
1457
+ "phf_shared",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "phf_codegen"
1462
+ version = "0.11.3"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1465
+ dependencies = [
1466
+ "phf_generator",
1467
+ "phf_shared",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "phf_generator"
1472
+ version = "0.11.3"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1475
+ dependencies = [
1476
+ "phf_shared",
1477
+ "rand 0.8.5",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "phf_macros"
1482
+ version = "0.11.3"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1485
+ dependencies = [
1486
+ "phf_generator",
1487
+ "phf_shared",
1488
+ "proc-macro2",
1489
+ "quote",
1490
+ "syn",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "phf_shared"
1495
+ version = "0.11.3"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1498
+ dependencies = [
1499
+ "siphasher 1.0.1",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "pin-project-lite"
1504
+ version = "0.2.16"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1507
+
1508
+ [[package]]
1509
+ name = "pin-utils"
1510
+ version = "0.1.0"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1513
+
1514
+ [[package]]
1515
+ name = "plain"
1516
+ version = "0.2.3"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1519
+
1520
+ [[package]]
1521
+ name = "potential_utf"
1522
+ version = "0.1.2"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1525
+ dependencies = [
1526
+ "zerovec",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "powerfmt"
1531
+ version = "0.2.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1534
+
1535
+ [[package]]
1536
+ name = "ppv-lite86"
1537
+ version = "0.2.21"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1540
+ dependencies = [
1541
+ "zerocopy",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "precomputed-hash"
1546
+ version = "0.1.1"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1549
+
1550
+ [[package]]
1551
+ name = "proc-macro2"
1552
+ version = "1.0.95"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1555
+ dependencies = [
1556
+ "unicode-ident",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "psl-types"
1561
+ version = "2.0.11"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
1564
+
1565
+ [[package]]
1566
+ name = "publicsuffix"
1567
+ version = "2.3.0"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
1570
+ dependencies = [
1571
+ "idna",
1572
+ "psl-types",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "quinn"
1577
+ version = "0.11.8"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
1580
+ dependencies = [
1581
+ "bytes",
1582
+ "cfg_aliases",
1583
+ "pin-project-lite",
1584
+ "quinn-proto",
1585
+ "quinn-udp",
1586
+ "rustc-hash",
1587
+ "rustls",
1588
+ "socket2",
1589
+ "thiserror",
1590
+ "tokio",
1591
+ "tracing",
1592
+ "web-time",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "quinn-proto"
1597
+ version = "0.11.12"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
1600
+ dependencies = [
1601
+ "bytes",
1602
+ "getrandom 0.3.3",
1603
+ "lru-slab",
1604
+ "rand 0.9.1",
1605
+ "ring",
1606
+ "rustc-hash",
1607
+ "rustls",
1608
+ "rustls-pki-types",
1609
+ "slab",
1610
+ "thiserror",
1611
+ "tinyvec",
1612
+ "tracing",
1613
+ "web-time",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "quinn-udp"
1618
+ version = "0.5.12"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
1621
+ dependencies = [
1622
+ "cfg_aliases",
1623
+ "libc",
1624
+ "once_cell",
1625
+ "socket2",
1626
+ "tracing",
1627
+ "windows-sys 0.59.0",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "quote"
1632
+ version = "1.0.40"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1635
+ dependencies = [
1636
+ "proc-macro2",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "r-efi"
1641
+ version = "5.2.0"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1644
+
1645
+ [[package]]
1646
+ name = "rand"
1647
+ version = "0.8.5"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1650
+ dependencies = [
1651
+ "rand_core 0.6.4",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "rand"
1656
+ version = "0.9.1"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
1659
+ dependencies = [
1660
+ "rand_chacha",
1661
+ "rand_core 0.9.3",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "rand_chacha"
1666
+ version = "0.9.0"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1669
+ dependencies = [
1670
+ "ppv-lite86",
1671
+ "rand_core 0.9.3",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "rand_core"
1676
+ version = "0.6.4"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1679
+
1680
+ [[package]]
1681
+ name = "rand_core"
1682
+ version = "0.9.3"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1685
+ dependencies = [
1686
+ "getrandom 0.3.3",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "redox_syscall"
1691
+ version = "0.5.12"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
1694
+ dependencies = [
1695
+ "bitflags",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "regex"
1700
+ version = "1.11.1"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1703
+ dependencies = [
1704
+ "aho-corasick",
1705
+ "memchr",
1706
+ "regex-automata 0.4.9",
1707
+ "regex-syntax 0.8.5",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "regex-automata"
1712
+ version = "0.1.10"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1715
+ dependencies = [
1716
+ "regex-syntax 0.6.29",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "regex-automata"
1721
+ version = "0.4.9"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1724
+ dependencies = [
1725
+ "aho-corasick",
1726
+ "memchr",
1727
+ "regex-syntax 0.8.5",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "regex-lite"
1732
+ version = "0.1.6"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
1735
+
1736
+ [[package]]
1737
+ name = "regex-syntax"
1738
+ version = "0.6.29"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1741
+
1742
+ [[package]]
1743
+ name = "regex-syntax"
1744
+ version = "0.8.5"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1747
+
1748
+ [[package]]
1749
+ name = "reqwest"
1750
+ version = "0.12.19"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "a2f8e5513d63f2e5b386eb5106dc67eaf3f84e95258e210489136b8b92ad6119"
1753
+ dependencies = [
1754
+ "async-compression",
1755
+ "base64",
1756
+ "bytes",
1757
+ "cookie",
1758
+ "cookie_store",
1759
+ "encoding_rs",
1760
+ "futures-core",
1761
+ "futures-util",
1762
+ "h2",
1763
+ "http",
1764
+ "http-body",
1765
+ "http-body-util",
1766
+ "hyper",
1767
+ "hyper-rustls",
1768
+ "hyper-util",
1769
+ "ipnet",
1770
+ "js-sys",
1771
+ "log",
1772
+ "mime",
1773
+ "once_cell",
1774
+ "percent-encoding",
1775
+ "pin-project-lite",
1776
+ "quinn",
1777
+ "rustls",
1778
+ "rustls-pki-types",
1779
+ "serde",
1780
+ "serde_json",
1781
+ "serde_urlencoded",
1782
+ "sync_wrapper",
1783
+ "tokio",
1784
+ "tokio-rustls",
1785
+ "tokio-util",
1786
+ "tower",
1787
+ "tower-http",
1788
+ "tower-service",
1789
+ "url",
1790
+ "wasm-bindgen",
1791
+ "wasm-bindgen-futures",
1792
+ "web-sys",
1793
+ "webpki-roots",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "reqwest_cookie_store"
1798
+ version = "0.8.0"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "a0b36498c7452f11b1833900f31fbb01fc46be20992a50269c88cf59d79f54e9"
1801
+ dependencies = [
1802
+ "bytes",
1803
+ "cookie_store",
1804
+ "reqwest",
1805
+ "serde",
1806
+ "serde_derive",
1807
+ "url",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "ring"
1812
+ version = "0.17.14"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1815
+ dependencies = [
1816
+ "cc",
1817
+ "cfg-if",
1818
+ "getrandom 0.2.16",
1819
+ "libc",
1820
+ "untrusted",
1821
+ "windows-sys 0.52.0",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "roxmltree"
1826
+ version = "0.20.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
1829
+
1830
+ [[package]]
1831
+ name = "rusaint"
1832
+ version = "0.10.0"
1833
+ dependencies = [
1834
+ "anyhow",
1835
+ "cookie_store",
1836
+ "custom_debug_derive",
1837
+ "derive_builder",
1838
+ "dotenvy",
1839
+ "futures",
1840
+ "html-escape",
1841
+ "lazy_static",
1842
+ "log",
1843
+ "lol_html",
1844
+ "regex-lite",
1845
+ "reqwest",
1846
+ "reqwest_cookie_store",
1847
+ "roxmltree",
1848
+ "scraper",
1849
+ "serde",
1850
+ "serde_json",
1851
+ "test-log",
1852
+ "thiserror",
1853
+ "tokio",
1854
+ "tokio-test",
1855
+ "uniffi",
1856
+ "url",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "rusaint-ffi"
1861
+ version = "0.10.0"
1862
+ dependencies = [
1863
+ "rusaint",
1864
+ "thiserror",
1865
+ "tokio",
1866
+ "uniffi",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "rusaint-session-helper"
1871
+ version = "0.1.0"
1872
+ dependencies = [
1873
+ "dotenvy",
1874
+ "eyre",
1875
+ "rusaint",
1876
+ "serde",
1877
+ "serde_json",
1878
+ "tokio",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "rustc-demangle"
1883
+ version = "0.1.24"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1886
+
1887
+ [[package]]
1888
+ name = "rustc-hash"
1889
+ version = "2.1.1"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1892
+
1893
+ [[package]]
1894
+ name = "rustix"
1895
+ version = "1.0.7"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1898
+ dependencies = [
1899
+ "bitflags",
1900
+ "errno",
1901
+ "libc",
1902
+ "linux-raw-sys",
1903
+ "windows-sys 0.59.0",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "rustls"
1908
+ version = "0.23.27"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
1911
+ dependencies = [
1912
+ "once_cell",
1913
+ "ring",
1914
+ "rustls-pki-types",
1915
+ "rustls-webpki",
1916
+ "subtle",
1917
+ "zeroize",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "rustls-pki-types"
1922
+ version = "1.12.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1925
+ dependencies = [
1926
+ "web-time",
1927
+ "zeroize",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "rustls-webpki"
1932
+ version = "0.103.3"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
1935
+ dependencies = [
1936
+ "ring",
1937
+ "rustls-pki-types",
1938
+ "untrusted",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "rustversion"
1943
+ version = "1.0.21"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1946
+
1947
+ [[package]]
1948
+ name = "ryu"
1949
+ version = "1.0.20"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1952
+
1953
+ [[package]]
1954
+ name = "scopeguard"
1955
+ version = "1.2.0"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1958
+
1959
+ [[package]]
1960
+ name = "scraper"
1961
+ version = "0.23.1"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "527e65d9d888567588db4c12da1087598d0f6f8b346cc2c5abc91f05fc2dffe2"
1964
+ dependencies = [
1965
+ "cssparser 0.34.0",
1966
+ "ego-tree",
1967
+ "getopts",
1968
+ "html5ever",
1969
+ "precomputed-hash",
1970
+ "selectors 0.26.0",
1971
+ "tendril",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "scroll"
1976
+ version = "0.12.0"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
1979
+ dependencies = [
1980
+ "scroll_derive",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "scroll_derive"
1985
+ version = "0.12.1"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
1988
+ dependencies = [
1989
+ "proc-macro2",
1990
+ "quote",
1991
+ "syn",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "selectors"
1996
+ version = "0.26.0"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "fd568a4c9bb598e291a08244a5c1f5a8a6650bee243b5b0f8dbb3d9cc1d87fe8"
1999
+ dependencies = [
2000
+ "bitflags",
2001
+ "cssparser 0.34.0",
2002
+ "derive_more",
2003
+ "fxhash",
2004
+ "log",
2005
+ "new_debug_unreachable",
2006
+ "phf",
2007
+ "phf_codegen",
2008
+ "precomputed-hash",
2009
+ "servo_arc",
2010
+ "smallvec",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "selectors"
2015
+ version = "0.27.0"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "5b75e048a93e14929e68e37b82e207db957cbb368375a80ed3ca28ac75080856"
2018
+ dependencies = [
2019
+ "bitflags",
2020
+ "cssparser 0.35.0",
2021
+ "derive_more",
2022
+ "fxhash",
2023
+ "log",
2024
+ "new_debug_unreachable",
2025
+ "phf",
2026
+ "phf_codegen",
2027
+ "precomputed-hash",
2028
+ "servo_arc",
2029
+ "smallvec",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "semver"
2034
+ version = "1.0.26"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2037
+ dependencies = [
2038
+ "serde",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "serde"
2043
+ version = "1.0.219"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2046
+ dependencies = [
2047
+ "serde_derive",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "serde_derive"
2052
+ version = "1.0.219"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2055
+ dependencies = [
2056
+ "proc-macro2",
2057
+ "quote",
2058
+ "syn",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "serde_json"
2063
+ version = "1.0.140"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2066
+ dependencies = [
2067
+ "itoa",
2068
+ "memchr",
2069
+ "ryu",
2070
+ "serde",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "serde_urlencoded"
2075
+ version = "0.7.1"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2078
+ dependencies = [
2079
+ "form_urlencoded",
2080
+ "itoa",
2081
+ "ryu",
2082
+ "serde",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "servo_arc"
2087
+ version = "0.4.0"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "ae65c4249478a2647db249fb43e23cec56a2c8974a427e7bd8cb5a1d0964921a"
2090
+ dependencies = [
2091
+ "stable_deref_trait",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "sharded-slab"
2096
+ version = "0.1.7"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2099
+ dependencies = [
2100
+ "lazy_static",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "shlex"
2105
+ version = "1.3.0"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2108
+
2109
+ [[package]]
2110
+ name = "signal-hook-registry"
2111
+ version = "1.4.5"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2114
+ dependencies = [
2115
+ "libc",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "siphasher"
2120
+ version = "0.3.11"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2123
+
2124
+ [[package]]
2125
+ name = "siphasher"
2126
+ version = "1.0.1"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2129
+
2130
+ [[package]]
2131
+ name = "slab"
2132
+ version = "0.4.9"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2135
+ dependencies = [
2136
+ "autocfg",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "smallvec"
2141
+ version = "1.15.1"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2144
+
2145
+ [[package]]
2146
+ name = "smawk"
2147
+ version = "0.3.2"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
2150
+
2151
+ [[package]]
2152
+ name = "socket2"
2153
+ version = "0.5.10"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2156
+ dependencies = [
2157
+ "libc",
2158
+ "windows-sys 0.52.0",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "stable_deref_trait"
2163
+ version = "1.2.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2166
+
2167
+ [[package]]
2168
+ name = "static_assertions"
2169
+ version = "1.1.0"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2172
+
2173
+ [[package]]
2174
+ name = "string_cache"
2175
+ version = "0.8.9"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
2178
+ dependencies = [
2179
+ "new_debug_unreachable",
2180
+ "parking_lot",
2181
+ "phf_shared",
2182
+ "precomputed-hash",
2183
+ "serde",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "string_cache_codegen"
2188
+ version = "0.5.4"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
2191
+ dependencies = [
2192
+ "phf_generator",
2193
+ "phf_shared",
2194
+ "proc-macro2",
2195
+ "quote",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "strsim"
2200
+ version = "0.11.1"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2203
+
2204
+ [[package]]
2205
+ name = "subtle"
2206
+ version = "2.6.1"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2209
+
2210
+ [[package]]
2211
+ name = "syn"
2212
+ version = "2.0.101"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2215
+ dependencies = [
2216
+ "proc-macro2",
2217
+ "quote",
2218
+ "unicode-ident",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "sync_wrapper"
2223
+ version = "1.0.2"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2226
+ dependencies = [
2227
+ "futures-core",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "synstructure"
2232
+ version = "0.13.2"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2235
+ dependencies = [
2236
+ "proc-macro2",
2237
+ "quote",
2238
+ "syn",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "system-configuration"
2243
+ version = "0.6.1"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2246
+ dependencies = [
2247
+ "bitflags",
2248
+ "core-foundation",
2249
+ "system-configuration-sys",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "system-configuration-sys"
2254
+ version = "0.6.0"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2257
+ dependencies = [
2258
+ "core-foundation-sys",
2259
+ "libc",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "tempfile"
2264
+ version = "3.20.0"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2267
+ dependencies = [
2268
+ "fastrand",
2269
+ "getrandom 0.3.3",
2270
+ "once_cell",
2271
+ "rustix",
2272
+ "windows-sys 0.59.0",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "tendril"
2277
+ version = "0.4.3"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2280
+ dependencies = [
2281
+ "futf",
2282
+ "mac",
2283
+ "utf-8",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "test-log"
2288
+ version = "0.2.17"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "e7f46083d221181166e5b6f6b1e5f1d499f3a76888826e6cb1d057554157cd0f"
2291
+ dependencies = [
2292
+ "env_logger",
2293
+ "test-log-macros",
2294
+ "tracing-subscriber",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "test-log-macros"
2299
+ version = "0.2.17"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "888d0c3c6db53c0fdab160d2ed5e12ba745383d3e85813f2ea0f2b1475ab553f"
2302
+ dependencies = [
2303
+ "proc-macro2",
2304
+ "quote",
2305
+ "syn",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "textwrap"
2310
+ version = "0.16.2"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
2313
+ dependencies = [
2314
+ "smawk",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "thiserror"
2319
+ version = "2.0.12"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2322
+ dependencies = [
2323
+ "thiserror-impl",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "thiserror-impl"
2328
+ version = "2.0.12"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2331
+ dependencies = [
2332
+ "proc-macro2",
2333
+ "quote",
2334
+ "syn",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "thread_local"
2339
+ version = "1.1.8"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2342
+ dependencies = [
2343
+ "cfg-if",
2344
+ "once_cell",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "time"
2349
+ version = "0.3.41"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2352
+ dependencies = [
2353
+ "deranged",
2354
+ "itoa",
2355
+ "num-conv",
2356
+ "powerfmt",
2357
+ "serde",
2358
+ "time-core",
2359
+ "time-macros",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "time-core"
2364
+ version = "0.1.4"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2367
+
2368
+ [[package]]
2369
+ name = "time-macros"
2370
+ version = "0.2.22"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2373
+ dependencies = [
2374
+ "num-conv",
2375
+ "time-core",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "tinystr"
2380
+ version = "0.8.1"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2383
+ dependencies = [
2384
+ "displaydoc",
2385
+ "zerovec",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "tinyvec"
2390
+ version = "1.9.0"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2393
+ dependencies = [
2394
+ "tinyvec_macros",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "tinyvec_macros"
2399
+ version = "0.1.1"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2402
+
2403
+ [[package]]
2404
+ name = "tokio"
2405
+ version = "1.45.1"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
2408
+ dependencies = [
2409
+ "backtrace",
2410
+ "bytes",
2411
+ "libc",
2412
+ "mio",
2413
+ "parking_lot",
2414
+ "pin-project-lite",
2415
+ "signal-hook-registry",
2416
+ "socket2",
2417
+ "tokio-macros",
2418
+ "windows-sys 0.52.0",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "tokio-macros"
2423
+ version = "2.5.0"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2426
+ dependencies = [
2427
+ "proc-macro2",
2428
+ "quote",
2429
+ "syn",
2430
+ ]
2431
+
2432
+ [[package]]
2433
+ name = "tokio-rustls"
2434
+ version = "0.26.2"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2437
+ dependencies = [
2438
+ "rustls",
2439
+ "tokio",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "tokio-stream"
2444
+ version = "0.1.17"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2447
+ dependencies = [
2448
+ "futures-core",
2449
+ "pin-project-lite",
2450
+ "tokio",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "tokio-test"
2455
+ version = "0.4.4"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "2468baabc3311435b55dd935f702f42cd1b8abb7e754fb7dfb16bd36aa88f9f7"
2458
+ dependencies = [
2459
+ "async-stream",
2460
+ "bytes",
2461
+ "futures-core",
2462
+ "tokio",
2463
+ "tokio-stream",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "tokio-util"
2468
+ version = "0.7.15"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2471
+ dependencies = [
2472
+ "bytes",
2473
+ "futures-core",
2474
+ "futures-sink",
2475
+ "pin-project-lite",
2476
+ "tokio",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "toml"
2481
+ version = "0.5.11"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2484
+ dependencies = [
2485
+ "serde",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "tower"
2490
+ version = "0.5.2"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2493
+ dependencies = [
2494
+ "futures-core",
2495
+ "futures-util",
2496
+ "pin-project-lite",
2497
+ "sync_wrapper",
2498
+ "tokio",
2499
+ "tower-layer",
2500
+ "tower-service",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "tower-http"
2505
+ version = "0.6.6"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
2508
+ dependencies = [
2509
+ "bitflags",
2510
+ "bytes",
2511
+ "futures-util",
2512
+ "http",
2513
+ "http-body",
2514
+ "iri-string",
2515
+ "pin-project-lite",
2516
+ "tower",
2517
+ "tower-layer",
2518
+ "tower-service",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "tower-layer"
2523
+ version = "0.3.3"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2526
+
2527
+ [[package]]
2528
+ name = "tower-service"
2529
+ version = "0.3.3"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2532
+
2533
+ [[package]]
2534
+ name = "tracing"
2535
+ version = "0.1.41"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2538
+ dependencies = [
2539
+ "pin-project-lite",
2540
+ "tracing-core",
2541
+ ]
2542
+
2543
+ [[package]]
2544
+ name = "tracing-core"
2545
+ version = "0.1.34"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2548
+ dependencies = [
2549
+ "once_cell",
2550
+ "valuable",
2551
+ ]
2552
+
2553
+ [[package]]
2554
+ name = "tracing-log"
2555
+ version = "0.2.0"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2558
+ dependencies = [
2559
+ "log",
2560
+ "once_cell",
2561
+ "tracing-core",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "tracing-subscriber"
2566
+ version = "0.3.19"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2569
+ dependencies = [
2570
+ "matchers",
2571
+ "nu-ansi-term",
2572
+ "once_cell",
2573
+ "regex",
2574
+ "sharded-slab",
2575
+ "thread_local",
2576
+ "tracing",
2577
+ "tracing-core",
2578
+ "tracing-log",
2579
+ ]
2580
+
2581
+ [[package]]
2582
+ name = "try-lock"
2583
+ version = "0.2.5"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2586
+
2587
+ [[package]]
2588
+ name = "unicode-ident"
2589
+ version = "1.0.18"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2592
+
2593
+ [[package]]
2594
+ name = "unicode-width"
2595
+ version = "0.1.14"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2598
+
2599
+ [[package]]
2600
+ name = "uniffi"
2601
+ version = "0.29.3"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "b334fd69b3cf198b63616c096aabf9820ab21ed9b2aa1367ddd4b411068bf520"
2604
+ dependencies = [
2605
+ "anyhow",
2606
+ "camino",
2607
+ "cargo_metadata",
2608
+ "clap",
2609
+ "uniffi_bindgen",
2610
+ "uniffi_build",
2611
+ "uniffi_core",
2612
+ "uniffi_macros",
2613
+ "uniffi_pipeline",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "uniffi-bindgen"
2618
+ version = "0.1.0"
2619
+ dependencies = [
2620
+ "uniffi",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "uniffi_bindgen"
2625
+ version = "0.29.3"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "2ff0132b533483cf19abb30bba5c72c24d9f3e4d9a2ff71cb3e22e73899fd46e"
2628
+ dependencies = [
2629
+ "anyhow",
2630
+ "askama",
2631
+ "camino",
2632
+ "cargo_metadata",
2633
+ "fs-err",
2634
+ "glob",
2635
+ "goblin",
2636
+ "heck",
2637
+ "indexmap",
2638
+ "once_cell",
2639
+ "serde",
2640
+ "tempfile",
2641
+ "textwrap",
2642
+ "toml",
2643
+ "uniffi_internal_macros",
2644
+ "uniffi_meta",
2645
+ "uniffi_pipeline",
2646
+ "uniffi_udl",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "uniffi_build"
2651
+ version = "0.29.3"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "0d84d607076008df3c32dd2100ee4e727269f11d3faa35691af70d144598f666"
2654
+ dependencies = [
2655
+ "anyhow",
2656
+ "camino",
2657
+ "uniffi_bindgen",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "uniffi_core"
2662
+ version = "0.29.3"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "53e3b997192dc15ef1778c842001811ec7f241a093a693ac864e1fc938e64fa9"
2665
+ dependencies = [
2666
+ "anyhow",
2667
+ "async-compat",
2668
+ "bytes",
2669
+ "once_cell",
2670
+ "static_assertions",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "uniffi_internal_macros"
2675
+ version = "0.29.3"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "f64bec2f3a33f2f08df8150e67fa45ba59a2ca740bf20c1beb010d4d791f9a1b"
2678
+ dependencies = [
2679
+ "anyhow",
2680
+ "indexmap",
2681
+ "proc-macro2",
2682
+ "quote",
2683
+ "syn",
2684
+ ]
2685
+
2686
+ [[package]]
2687
+ name = "uniffi_macros"
2688
+ version = "0.29.3"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "5d8708716d2582e4f3d7e9f320290b5966eb951ca421d7630571183615453efc"
2691
+ dependencies = [
2692
+ "camino",
2693
+ "fs-err",
2694
+ "once_cell",
2695
+ "proc-macro2",
2696
+ "quote",
2697
+ "serde",
2698
+ "syn",
2699
+ "toml",
2700
+ "uniffi_meta",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "uniffi_meta"
2705
+ version = "0.29.3"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "3d226fc167754ce548c5ece9828c8a06f03bf1eea525d2659ba6bd648bd8e2f3"
2708
+ dependencies = [
2709
+ "anyhow",
2710
+ "siphasher 0.3.11",
2711
+ "uniffi_internal_macros",
2712
+ "uniffi_pipeline",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "uniffi_pipeline"
2717
+ version = "0.29.3"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "b925b6421df15cf4bedee27714022cd9626fb4d7eee0923522a608b274ba4371"
2720
+ dependencies = [
2721
+ "anyhow",
2722
+ "heck",
2723
+ "indexmap",
2724
+ "tempfile",
2725
+ "uniffi_internal_macros",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "uniffi_udl"
2730
+ version = "0.29.3"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "9c42649b721df759d9d4692a376b82b62ce3028ec9fc466f4780fb8cdf728996"
2733
+ dependencies = [
2734
+ "anyhow",
2735
+ "textwrap",
2736
+ "uniffi_meta",
2737
+ "weedle2",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "untrusted"
2742
+ version = "0.9.0"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2745
+
2746
+ [[package]]
2747
+ name = "url"
2748
+ version = "2.5.4"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2751
+ dependencies = [
2752
+ "form_urlencoded",
2753
+ "idna",
2754
+ "percent-encoding",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "utf-8"
2759
+ version = "0.7.6"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2762
+
2763
+ [[package]]
2764
+ name = "utf8-width"
2765
+ version = "0.1.7"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
2768
+
2769
+ [[package]]
2770
+ name = "utf8_iter"
2771
+ version = "1.0.4"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2774
+
2775
+ [[package]]
2776
+ name = "utf8parse"
2777
+ version = "0.2.2"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2780
+
2781
+ [[package]]
2782
+ name = "valuable"
2783
+ version = "0.1.1"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2786
+
2787
+ [[package]]
2788
+ name = "version_check"
2789
+ version = "0.9.5"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2792
+
2793
+ [[package]]
2794
+ name = "want"
2795
+ version = "0.3.1"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2798
+ dependencies = [
2799
+ "try-lock",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "wasi"
2804
+ version = "0.11.0+wasi-snapshot-preview1"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2807
+
2808
+ [[package]]
2809
+ name = "wasi"
2810
+ version = "0.14.2+wasi-0.2.4"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2813
+ dependencies = [
2814
+ "wit-bindgen-rt",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "wasm-bindgen"
2819
+ version = "0.2.100"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2822
+ dependencies = [
2823
+ "cfg-if",
2824
+ "once_cell",
2825
+ "rustversion",
2826
+ "wasm-bindgen-macro",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "wasm-bindgen-backend"
2831
+ version = "0.2.100"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2834
+ dependencies = [
2835
+ "bumpalo",
2836
+ "log",
2837
+ "proc-macro2",
2838
+ "quote",
2839
+ "syn",
2840
+ "wasm-bindgen-shared",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "wasm-bindgen-futures"
2845
+ version = "0.4.50"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
2848
+ dependencies = [
2849
+ "cfg-if",
2850
+ "js-sys",
2851
+ "once_cell",
2852
+ "wasm-bindgen",
2853
+ "web-sys",
2854
+ ]
2855
+
2856
+ [[package]]
2857
+ name = "wasm-bindgen-macro"
2858
+ version = "0.2.100"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2861
+ dependencies = [
2862
+ "quote",
2863
+ "wasm-bindgen-macro-support",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "wasm-bindgen-macro-support"
2868
+ version = "0.2.100"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2871
+ dependencies = [
2872
+ "proc-macro2",
2873
+ "quote",
2874
+ "syn",
2875
+ "wasm-bindgen-backend",
2876
+ "wasm-bindgen-shared",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "wasm-bindgen-shared"
2881
+ version = "0.2.100"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2884
+ dependencies = [
2885
+ "unicode-ident",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "web-sys"
2890
+ version = "0.3.77"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2893
+ dependencies = [
2894
+ "js-sys",
2895
+ "wasm-bindgen",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "web-time"
2900
+ version = "1.1.0"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2903
+ dependencies = [
2904
+ "js-sys",
2905
+ "wasm-bindgen",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "webpki-roots"
2910
+ version = "1.0.0"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
2913
+ dependencies = [
2914
+ "rustls-pki-types",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "weedle2"
2919
+ version = "5.0.0"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
2922
+ dependencies = [
2923
+ "nom",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "winapi"
2928
+ version = "0.3.9"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2931
+ dependencies = [
2932
+ "winapi-i686-pc-windows-gnu",
2933
+ "winapi-x86_64-pc-windows-gnu",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "winapi-i686-pc-windows-gnu"
2938
+ version = "0.4.0"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2941
+
2942
+ [[package]]
2943
+ name = "winapi-x86_64-pc-windows-gnu"
2944
+ version = "0.4.0"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2947
+
2948
+ [[package]]
2949
+ name = "windows-link"
2950
+ version = "0.1.1"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
2953
+
2954
+ [[package]]
2955
+ name = "windows-registry"
2956
+ version = "0.5.2"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "b3bab093bdd303a1240bb99b8aba8ea8a69ee19d34c9e2ef9594e708a4878820"
2959
+ dependencies = [
2960
+ "windows-link",
2961
+ "windows-result",
2962
+ "windows-strings",
2963
+ ]
2964
+
2965
+ [[package]]
2966
+ name = "windows-result"
2967
+ version = "0.3.4"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2970
+ dependencies = [
2971
+ "windows-link",
2972
+ ]
2973
+
2974
+ [[package]]
2975
+ name = "windows-strings"
2976
+ version = "0.4.2"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2979
+ dependencies = [
2980
+ "windows-link",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "windows-sys"
2985
+ version = "0.52.0"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2988
+ dependencies = [
2989
+ "windows-targets",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "windows-sys"
2994
+ version = "0.59.0"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2997
+ dependencies = [
2998
+ "windows-targets",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "windows-targets"
3003
+ version = "0.52.6"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3006
+ dependencies = [
3007
+ "windows_aarch64_gnullvm",
3008
+ "windows_aarch64_msvc",
3009
+ "windows_i686_gnu",
3010
+ "windows_i686_gnullvm",
3011
+ "windows_i686_msvc",
3012
+ "windows_x86_64_gnu",
3013
+ "windows_x86_64_gnullvm",
3014
+ "windows_x86_64_msvc",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "windows_aarch64_gnullvm"
3019
+ version = "0.52.6"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3022
+
3023
+ [[package]]
3024
+ name = "windows_aarch64_msvc"
3025
+ version = "0.52.6"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3028
+
3029
+ [[package]]
3030
+ name = "windows_i686_gnu"
3031
+ version = "0.52.6"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3034
+
3035
+ [[package]]
3036
+ name = "windows_i686_gnullvm"
3037
+ version = "0.52.6"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3040
+
3041
+ [[package]]
3042
+ name = "windows_i686_msvc"
3043
+ version = "0.52.6"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3046
+
3047
+ [[package]]
3048
+ name = "windows_x86_64_gnu"
3049
+ version = "0.52.6"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3052
+
3053
+ [[package]]
3054
+ name = "windows_x86_64_gnullvm"
3055
+ version = "0.52.6"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3058
+
3059
+ [[package]]
3060
+ name = "windows_x86_64_msvc"
3061
+ version = "0.52.6"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3064
+
3065
+ [[package]]
3066
+ name = "winnow"
3067
+ version = "0.7.10"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
3070
+ dependencies = [
3071
+ "memchr",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "wit-bindgen-rt"
3076
+ version = "0.39.0"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3079
+ dependencies = [
3080
+ "bitflags",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "writeable"
3085
+ version = "0.6.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3088
+
3089
+ [[package]]
3090
+ name = "yoke"
3091
+ version = "0.8.0"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3094
+ dependencies = [
3095
+ "serde",
3096
+ "stable_deref_trait",
3097
+ "yoke-derive",
3098
+ "zerofrom",
3099
+ ]
3100
+
3101
+ [[package]]
3102
+ name = "yoke-derive"
3103
+ version = "0.8.0"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3106
+ dependencies = [
3107
+ "proc-macro2",
3108
+ "quote",
3109
+ "syn",
3110
+ "synstructure",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "zerocopy"
3115
+ version = "0.8.25"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3118
+ dependencies = [
3119
+ "zerocopy-derive",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "zerocopy-derive"
3124
+ version = "0.8.25"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3127
+ dependencies = [
3128
+ "proc-macro2",
3129
+ "quote",
3130
+ "syn",
3131
+ ]
3132
+
3133
+ [[package]]
3134
+ name = "zerofrom"
3135
+ version = "0.1.6"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3138
+ dependencies = [
3139
+ "zerofrom-derive",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "zerofrom-derive"
3144
+ version = "0.1.6"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3147
+ dependencies = [
3148
+ "proc-macro2",
3149
+ "quote",
3150
+ "syn",
3151
+ "synstructure",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "zeroize"
3156
+ version = "1.8.1"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3159
+
3160
+ [[package]]
3161
+ name = "zerotrie"
3162
+ version = "0.2.2"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
3165
+ dependencies = [
3166
+ "displaydoc",
3167
+ "yoke",
3168
+ "zerofrom",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "zerovec"
3173
+ version = "0.11.2"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
3176
+ dependencies = [
3177
+ "yoke",
3178
+ "zerofrom",
3179
+ "zerovec-derive",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "zerovec-derive"
3184
+ version = "0.11.1"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3187
+ dependencies = [
3188
+ "proc-macro2",
3189
+ "quote",
3190
+ "syn",
3191
+ ]