pyagentbrowser 0.27.1rc0__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 (145) hide show
  1. pyagentbrowser-0.27.1rc0/Cargo.lock +3156 -0
  2. pyagentbrowser-0.27.1rc0/Cargo.toml +84 -0
  3. pyagentbrowser-0.27.1rc0/LICENSE +15 -0
  4. pyagentbrowser-0.27.1rc0/PKG-INFO +191 -0
  5. pyagentbrowser-0.27.1rc0/README.md +153 -0
  6. pyagentbrowser-0.27.1rc0/crates/agent-browser-adapter/Cargo.toml +50 -0
  7. pyagentbrowser-0.27.1rc0/crates/agent-browser-adapter/build.rs +1187 -0
  8. pyagentbrowser-0.27.1rc0/crates/agent-browser-adapter/src/lib.rs +5 -0
  9. pyagentbrowser-0.27.1rc0/crates/agent-browser-adapter/tests/smoke.rs +281 -0
  10. pyagentbrowser-0.27.1rc0/crates/pyagentbrowser/Cargo.toml +26 -0
  11. pyagentbrowser-0.27.1rc0/crates/pyagentbrowser/build.rs +68 -0
  12. pyagentbrowser-0.27.1rc0/crates/pyagentbrowser/src/lib.rs +837 -0
  13. pyagentbrowser-0.27.1rc0/docs/adr/0001-native-safety-patches.md +48 -0
  14. pyagentbrowser-0.27.1rc0/docs/adr/0002-python-sdk-tool-boundary.md +29 -0
  15. pyagentbrowser-0.27.1rc0/docs/adr/native-safety-patches.json +27 -0
  16. pyagentbrowser-0.27.1rc0/docs/api-reference.md +398 -0
  17. pyagentbrowser-0.27.1rc0/docs/choosing-a-tool.md +29 -0
  18. pyagentbrowser-0.27.1rc0/docs/concepts.md +110 -0
  19. pyagentbrowser-0.27.1rc0/docs/development.md +52 -0
  20. pyagentbrowser-0.27.1rc0/docs/index.md +42 -0
  21. pyagentbrowser-0.27.1rc0/docs/install.md +53 -0
  22. pyagentbrowser-0.27.1rc0/docs/internals/upstream.md +89 -0
  23. pyagentbrowser-0.27.1rc0/docs/quickstart.md +119 -0
  24. pyagentbrowser-0.27.1rc0/docs/testing.md +68 -0
  25. pyagentbrowser-0.27.1rc0/docs/version-policy.md +65 -0
  26. pyagentbrowser-0.27.1rc0/examples/async_usage.py +13 -0
  27. pyagentbrowser-0.27.1rc0/examples/basic_navigation.py +6 -0
  28. pyagentbrowser-0.27.1rc0/examples/cdp_frame_eval.py +9 -0
  29. pyagentbrowser-0.27.1rc0/examples/confirmation_policy.py +10 -0
  30. pyagentbrowser-0.27.1rc0/examples/default_session.py +10 -0
  31. pyagentbrowser-0.27.1rc0/examples/local_snapshot_evidence.py +26 -0
  32. pyagentbrowser-0.27.1rc0/examples/screenshot_capture.py +8 -0
  33. pyagentbrowser-0.27.1rc0/examples/snapshot_evidence.py +12 -0
  34. pyagentbrowser-0.27.1rc0/examples/xpath_queries.py +11 -0
  35. pyagentbrowser-0.27.1rc0/pyproject.toml +196 -0
  36. pyagentbrowser-0.27.1rc0/rust-toolchain.toml +4 -0
  37. pyagentbrowser-0.27.1rc0/rustfmt.toml +0 -0
  38. pyagentbrowser-0.27.1rc0/src/agentbrowser/__init__.py +179 -0
  39. pyagentbrowser-0.27.1rc0/src/agentbrowser/_allowlist.py +424 -0
  40. pyagentbrowser-0.27.1rc0/src/agentbrowser/_browser_common.py +109 -0
  41. pyagentbrowser-0.27.1rc0/src/agentbrowser/_native.pyi +7 -0
  42. pyagentbrowser-0.27.1rc0/src/agentbrowser/_version.py +7 -0
  43. pyagentbrowser-0.27.1rc0/src/agentbrowser/agent.py +434 -0
  44. pyagentbrowser-0.27.1rc0/src/agentbrowser/agent_async.py +412 -0
  45. pyagentbrowser-0.27.1rc0/src/agentbrowser/browser.py +701 -0
  46. pyagentbrowser-0.27.1rc0/src/agentbrowser/browser_async.py +707 -0
  47. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/__init__.py +69 -0
  48. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/_protocol.py +66 -0
  49. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/_resolution.py +201 -0
  50. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/client.py +242 -0
  51. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/controller.py +295 -0
  52. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/errors.py +66 -0
  53. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/models.py +172 -0
  54. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/page.py +544 -0
  55. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/target.py +163 -0
  56. pyagentbrowser-0.27.1rc0/src/agentbrowser/cdp/transport.py +56 -0
  57. pyagentbrowser-0.27.1rc0/src/agentbrowser/command_params.py +332 -0
  58. pyagentbrowser-0.27.1rc0/src/agentbrowser/default_session.py +227 -0
  59. pyagentbrowser-0.27.1rc0/src/agentbrowser/domains.py +1167 -0
  60. pyagentbrowser-0.27.1rc0/src/agentbrowser/domains_async.py +1197 -0
  61. pyagentbrowser-0.27.1rc0/src/agentbrowser/launch.py +121 -0
  62. pyagentbrowser-0.27.1rc0/src/agentbrowser/models.py +781 -0
  63. pyagentbrowser-0.27.1rc0/src/agentbrowser/py.typed +1 -0
  64. pyagentbrowser-0.27.1rc0/src/agentbrowser/session.py +336 -0
  65. pyagentbrowser-0.27.1rc0/src/agentbrowser/session_async.py +221 -0
  66. pyagentbrowser-0.27.1rc0/src/agentbrowser/skills.py +344 -0
  67. pyagentbrowser-0.27.1rc0/third_party/agent-browser/LICENSE +201 -0
  68. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/Cargo.toml +61 -0
  69. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/cdp-protocol/browser_protocol.json +31262 -0
  70. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/cdp-protocol/js_protocol.json +3810 -0
  71. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/color.rs +173 -0
  72. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/commands.rs +5124 -0
  73. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/connection.rs +1103 -0
  74. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/flags.rs +1584 -0
  75. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/install.rs +962 -0
  76. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/actions.rs +9248 -0
  77. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/auth.rs +556 -0
  78. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/browser.rs +2202 -0
  79. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cdp/chrome.rs +1994 -0
  80. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cdp/client.rs +361 -0
  81. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cdp/discovery.rs +387 -0
  82. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cdp/lightpanda.rs +495 -0
  83. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cdp/mod.rs +5 -0
  84. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cdp/types.rs +586 -0
  85. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/cookies.rs +100 -0
  86. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/diff.rs +274 -0
  87. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/element.rs +1119 -0
  88. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/inspect_server.rs +362 -0
  89. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/interaction.rs +1183 -0
  90. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/network.rs +672 -0
  91. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/policy.rs +217 -0
  92. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/providers.rs +816 -0
  93. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/react/installHook.js +28 -0
  94. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/react/mod.rs +29 -0
  95. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/react/renders.rs +169 -0
  96. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/react/scripts.rs +745 -0
  97. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/react/suspense.rs +633 -0
  98. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/react/tree.rs +67 -0
  99. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/recording.rs +323 -0
  100. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/screenshot.rs +691 -0
  101. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/snapshot.rs +1586 -0
  102. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/state.rs +894 -0
  103. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/storage.rs +94 -0
  104. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/cdp_loop.rs +325 -0
  105. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/chat.rs +970 -0
  106. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/dashboard.rs +960 -0
  107. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/discovery.rs +118 -0
  108. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/http.rs +715 -0
  109. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/mod.rs +486 -0
  110. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/stream/websocket.rs +338 -0
  111. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/test_fixtures/drag_probe.html +135 -0
  112. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/test_fixtures/html5_drag_probe.html +91 -0
  113. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/test_fixtures/pointer_capture_probe.html +113 -0
  114. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/test_fixtures/upload_probe.html +18 -0
  115. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/tracing.rs +373 -0
  116. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/appium.rs +240 -0
  117. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/backend.rs +142 -0
  118. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/client.rs +318 -0
  119. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/ios.rs +235 -0
  120. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/mod.rs +6 -0
  121. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/safari.rs +80 -0
  122. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/native/webdriver/types.rs +97 -0
  123. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/test_utils.rs +49 -0
  124. pyagentbrowser-0.27.1rc0/third_party/agent-browser/cli/src/validation.rs +15 -0
  125. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/agentcore/SKILL.md +115 -0
  126. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/SKILL.md +478 -0
  127. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/authentication.md +303 -0
  128. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/commands.md +398 -0
  129. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/profiling.md +120 -0
  130. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/proxy-support.md +194 -0
  131. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/session-management.md +193 -0
  132. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/snapshot-refs.md +219 -0
  133. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/trust-boundaries.md +89 -0
  134. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/references/video-recording.md +175 -0
  135. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/templates/authenticated-session.sh +105 -0
  136. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/templates/capture-workflow.sh +69 -0
  137. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/core/templates/form-automation.sh +62 -0
  138. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/dogfood/SKILL.md +220 -0
  139. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/dogfood/references/issue-taxonomy.md +109 -0
  140. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/dogfood/templates/dogfood-report-template.md +53 -0
  141. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/electron/SKILL.md +236 -0
  142. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/slack/SKILL.md +285 -0
  143. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/slack/references/slack-tasks.md +348 -0
  144. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/slack/templates/slack-report-template.md +163 -0
  145. pyagentbrowser-0.27.1rc0/third_party/agent-browser/skill-data/vercel-sandbox/SKILL.md +280 -0
@@ -0,0 +1,3156 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "agent-browser"
48
+ version = "0.27.1"
49
+ dependencies = [
50
+ "aes-gcm",
51
+ "async-trait",
52
+ "base64",
53
+ "chrono",
54
+ "dirs",
55
+ "futures-util",
56
+ "getrandom 0.2.17",
57
+ "hex",
58
+ "hmac",
59
+ "image",
60
+ "libc",
61
+ "reqwest",
62
+ "serde",
63
+ "serde_json",
64
+ "sha2",
65
+ "similar",
66
+ "socket2",
67
+ "time",
68
+ "tokio",
69
+ "tokio-tungstenite",
70
+ "url",
71
+ "urlencoding",
72
+ "uuid",
73
+ "windows-sys 0.52.0",
74
+ "zip",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "aligned"
79
+ version = "0.4.3"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
82
+ dependencies = [
83
+ "as-slice",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "aligned-vec"
88
+ version = "0.6.4"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
91
+ dependencies = [
92
+ "equator",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "android_system_properties"
97
+ version = "0.1.5"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
100
+ dependencies = [
101
+ "libc",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "anyhow"
106
+ version = "1.0.102"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
109
+
110
+ [[package]]
111
+ name = "arbitrary"
112
+ version = "1.4.2"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
115
+
116
+ [[package]]
117
+ name = "arg_enum_proc_macro"
118
+ version = "0.3.4"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
121
+ dependencies = [
122
+ "proc-macro2",
123
+ "quote",
124
+ "syn",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "arrayvec"
129
+ version = "0.7.6"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
132
+
133
+ [[package]]
134
+ name = "as-slice"
135
+ version = "0.2.1"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
138
+ dependencies = [
139
+ "stable_deref_trait",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "async-trait"
144
+ version = "0.1.89"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
147
+ dependencies = [
148
+ "proc-macro2",
149
+ "quote",
150
+ "syn",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "atomic-waker"
155
+ version = "1.1.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
158
+
159
+ [[package]]
160
+ name = "autocfg"
161
+ version = "1.5.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
164
+
165
+ [[package]]
166
+ name = "av-scenechange"
167
+ version = "0.14.1"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
170
+ dependencies = [
171
+ "aligned",
172
+ "anyhow",
173
+ "arg_enum_proc_macro",
174
+ "arrayvec",
175
+ "log",
176
+ "num-rational",
177
+ "num-traits",
178
+ "pastey",
179
+ "rayon",
180
+ "thiserror 2.0.18",
181
+ "v_frame",
182
+ "y4m",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "av1-grain"
187
+ version = "0.2.5"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
190
+ dependencies = [
191
+ "anyhow",
192
+ "arrayvec",
193
+ "log",
194
+ "nom",
195
+ "num-rational",
196
+ "v_frame",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "avif-serialize"
201
+ version = "0.8.9"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
204
+ dependencies = [
205
+ "arrayvec",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "base64"
210
+ version = "0.22.1"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
213
+
214
+ [[package]]
215
+ name = "bit_field"
216
+ version = "0.10.3"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
219
+
220
+ [[package]]
221
+ name = "bitflags"
222
+ version = "2.11.1"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
225
+
226
+ [[package]]
227
+ name = "bitstream-io"
228
+ version = "4.10.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
231
+ dependencies = [
232
+ "no_std_io2",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "block-buffer"
237
+ version = "0.10.4"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
240
+ dependencies = [
241
+ "generic-array",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "built"
246
+ version = "0.8.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
249
+
250
+ [[package]]
251
+ name = "bumpalo"
252
+ version = "3.20.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
255
+
256
+ [[package]]
257
+ name = "bytemuck"
258
+ version = "1.25.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
261
+
262
+ [[package]]
263
+ name = "byteorder"
264
+ version = "1.5.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
267
+
268
+ [[package]]
269
+ name = "byteorder-lite"
270
+ version = "0.1.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
273
+
274
+ [[package]]
275
+ name = "bytes"
276
+ version = "1.11.1"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
279
+
280
+ [[package]]
281
+ name = "cc"
282
+ version = "1.2.62"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
285
+ dependencies = [
286
+ "find-msvc-tools",
287
+ "jobserver",
288
+ "libc",
289
+ "shlex",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "cfg-if"
294
+ version = "1.0.4"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
297
+
298
+ [[package]]
299
+ name = "cfg_aliases"
300
+ version = "0.2.1"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
303
+
304
+ [[package]]
305
+ name = "chrono"
306
+ version = "0.4.44"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
309
+ dependencies = [
310
+ "iana-time-zone",
311
+ "js-sys",
312
+ "num-traits",
313
+ "wasm-bindgen",
314
+ "windows-link",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "cipher"
319
+ version = "0.4.4"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
322
+ dependencies = [
323
+ "crypto-common",
324
+ "inout",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "color_quant"
329
+ version = "1.1.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
332
+
333
+ [[package]]
334
+ name = "core-foundation-sys"
335
+ version = "0.8.7"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
338
+
339
+ [[package]]
340
+ name = "cpufeatures"
341
+ version = "0.2.17"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
344
+ dependencies = [
345
+ "libc",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "crc32fast"
350
+ version = "1.5.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
353
+ dependencies = [
354
+ "cfg-if",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "crossbeam-deque"
359
+ version = "0.8.6"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
362
+ dependencies = [
363
+ "crossbeam-epoch",
364
+ "crossbeam-utils",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "crossbeam-epoch"
369
+ version = "0.9.18"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
372
+ dependencies = [
373
+ "crossbeam-utils",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "crossbeam-utils"
378
+ version = "0.8.21"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
381
+
382
+ [[package]]
383
+ name = "crunchy"
384
+ version = "0.2.4"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
387
+
388
+ [[package]]
389
+ name = "crypto-common"
390
+ version = "0.1.7"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
393
+ dependencies = [
394
+ "generic-array",
395
+ "rand_core 0.6.4",
396
+ "typenum",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "ctr"
401
+ version = "0.9.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
404
+ dependencies = [
405
+ "cipher",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "data-encoding"
410
+ version = "2.11.0"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
413
+
414
+ [[package]]
415
+ name = "deranged"
416
+ version = "0.5.8"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
419
+ dependencies = [
420
+ "powerfmt",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "digest"
425
+ version = "0.10.7"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
428
+ dependencies = [
429
+ "block-buffer",
430
+ "crypto-common",
431
+ "subtle",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "dirs"
436
+ version = "5.0.1"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
439
+ dependencies = [
440
+ "dirs-sys",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "dirs-sys"
445
+ version = "0.4.1"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
448
+ dependencies = [
449
+ "libc",
450
+ "option-ext",
451
+ "redox_users",
452
+ "windows-sys 0.48.0",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "displaydoc"
457
+ version = "0.2.5"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
460
+ dependencies = [
461
+ "proc-macro2",
462
+ "quote",
463
+ "syn",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "either"
468
+ version = "1.15.0"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
471
+
472
+ [[package]]
473
+ name = "equator"
474
+ version = "0.4.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
477
+ dependencies = [
478
+ "equator-macro",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "equator-macro"
483
+ version = "0.4.2"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
486
+ dependencies = [
487
+ "proc-macro2",
488
+ "quote",
489
+ "syn",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "equivalent"
494
+ version = "1.0.2"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
497
+
498
+ [[package]]
499
+ name = "errno"
500
+ version = "0.3.14"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
503
+ dependencies = [
504
+ "libc",
505
+ "windows-sys 0.61.2",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "exr"
510
+ version = "1.74.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
513
+ dependencies = [
514
+ "bit_field",
515
+ "half",
516
+ "lebe",
517
+ "miniz_oxide",
518
+ "rayon-core",
519
+ "smallvec",
520
+ "zune-inflate",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "fax"
525
+ version = "0.2.7"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
528
+
529
+ [[package]]
530
+ name = "fdeflate"
531
+ version = "0.3.7"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
534
+ dependencies = [
535
+ "simd-adler32",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "find-msvc-tools"
540
+ version = "0.1.9"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
543
+
544
+ [[package]]
545
+ name = "flate2"
546
+ version = "1.1.9"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
549
+ dependencies = [
550
+ "crc32fast",
551
+ "miniz_oxide",
552
+ "zlib-rs",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "foldhash"
557
+ version = "0.1.5"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
560
+
561
+ [[package]]
562
+ name = "form_urlencoded"
563
+ version = "1.2.2"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
566
+ dependencies = [
567
+ "percent-encoding",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "futures-channel"
572
+ version = "0.3.32"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
575
+ dependencies = [
576
+ "futures-core",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "futures-core"
581
+ version = "0.3.32"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
584
+
585
+ [[package]]
586
+ name = "futures-io"
587
+ version = "0.3.32"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
590
+
591
+ [[package]]
592
+ name = "futures-macro"
593
+ version = "0.3.32"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
596
+ dependencies = [
597
+ "proc-macro2",
598
+ "quote",
599
+ "syn",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "futures-sink"
604
+ version = "0.3.32"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
607
+
608
+ [[package]]
609
+ name = "futures-task"
610
+ version = "0.3.32"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
613
+
614
+ [[package]]
615
+ name = "futures-util"
616
+ version = "0.3.32"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
619
+ dependencies = [
620
+ "futures-core",
621
+ "futures-io",
622
+ "futures-macro",
623
+ "futures-sink",
624
+ "futures-task",
625
+ "memchr",
626
+ "pin-project-lite",
627
+ "slab",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "generic-array"
632
+ version = "0.14.7"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
635
+ dependencies = [
636
+ "typenum",
637
+ "version_check",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "getrandom"
642
+ version = "0.2.17"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
645
+ dependencies = [
646
+ "cfg-if",
647
+ "js-sys",
648
+ "libc",
649
+ "wasi",
650
+ "wasm-bindgen",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "getrandom"
655
+ version = "0.3.4"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
658
+ dependencies = [
659
+ "cfg-if",
660
+ "js-sys",
661
+ "libc",
662
+ "r-efi 5.3.0",
663
+ "wasip2",
664
+ "wasm-bindgen",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "getrandom"
669
+ version = "0.4.2"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
672
+ dependencies = [
673
+ "cfg-if",
674
+ "libc",
675
+ "r-efi 6.0.0",
676
+ "wasip2",
677
+ "wasip3",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "ghash"
682
+ version = "0.5.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
685
+ dependencies = [
686
+ "opaque-debug",
687
+ "polyval",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "gif"
692
+ version = "0.14.2"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
695
+ dependencies = [
696
+ "color_quant",
697
+ "weezl",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "half"
702
+ version = "2.7.1"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
705
+ dependencies = [
706
+ "cfg-if",
707
+ "crunchy",
708
+ "zerocopy",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "hashbrown"
713
+ version = "0.15.5"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
716
+ dependencies = [
717
+ "foldhash",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "hashbrown"
722
+ version = "0.17.1"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
725
+
726
+ [[package]]
727
+ name = "heck"
728
+ version = "0.5.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
731
+
732
+ [[package]]
733
+ name = "hex"
734
+ version = "0.4.3"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
737
+
738
+ [[package]]
739
+ name = "hmac"
740
+ version = "0.12.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
743
+ dependencies = [
744
+ "digest",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "http"
749
+ version = "1.4.0"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
752
+ dependencies = [
753
+ "bytes",
754
+ "itoa",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "http-body"
759
+ version = "1.0.1"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
762
+ dependencies = [
763
+ "bytes",
764
+ "http",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "http-body-util"
769
+ version = "0.1.3"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
772
+ dependencies = [
773
+ "bytes",
774
+ "futures-core",
775
+ "http",
776
+ "http-body",
777
+ "pin-project-lite",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "httparse"
782
+ version = "1.10.1"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
785
+
786
+ [[package]]
787
+ name = "hyper"
788
+ version = "1.9.0"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
791
+ dependencies = [
792
+ "atomic-waker",
793
+ "bytes",
794
+ "futures-channel",
795
+ "futures-core",
796
+ "http",
797
+ "http-body",
798
+ "httparse",
799
+ "itoa",
800
+ "pin-project-lite",
801
+ "smallvec",
802
+ "tokio",
803
+ "want",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "hyper-rustls"
808
+ version = "0.27.9"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
811
+ dependencies = [
812
+ "http",
813
+ "hyper",
814
+ "hyper-util",
815
+ "rustls",
816
+ "tokio",
817
+ "tokio-rustls",
818
+ "tower-service",
819
+ "webpki-roots 1.0.7",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "hyper-util"
824
+ version = "0.1.20"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
827
+ dependencies = [
828
+ "base64",
829
+ "bytes",
830
+ "futures-channel",
831
+ "futures-util",
832
+ "http",
833
+ "http-body",
834
+ "hyper",
835
+ "ipnet",
836
+ "libc",
837
+ "percent-encoding",
838
+ "pin-project-lite",
839
+ "socket2",
840
+ "tokio",
841
+ "tower-service",
842
+ "tracing",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "iana-time-zone"
847
+ version = "0.1.65"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
850
+ dependencies = [
851
+ "android_system_properties",
852
+ "core-foundation-sys",
853
+ "iana-time-zone-haiku",
854
+ "js-sys",
855
+ "log",
856
+ "wasm-bindgen",
857
+ "windows-core",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "iana-time-zone-haiku"
862
+ version = "0.1.2"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
865
+ dependencies = [
866
+ "cc",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "icu_collections"
871
+ version = "2.2.0"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
874
+ dependencies = [
875
+ "displaydoc",
876
+ "potential_utf",
877
+ "utf8_iter",
878
+ "yoke",
879
+ "zerofrom",
880
+ "zerovec",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "icu_locale_core"
885
+ version = "2.2.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
888
+ dependencies = [
889
+ "displaydoc",
890
+ "litemap",
891
+ "tinystr",
892
+ "writeable",
893
+ "zerovec",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "icu_normalizer"
898
+ version = "2.2.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
901
+ dependencies = [
902
+ "icu_collections",
903
+ "icu_normalizer_data",
904
+ "icu_properties",
905
+ "icu_provider",
906
+ "smallvec",
907
+ "zerovec",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "icu_normalizer_data"
912
+ version = "2.2.0"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
915
+
916
+ [[package]]
917
+ name = "icu_properties"
918
+ version = "2.2.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
921
+ dependencies = [
922
+ "icu_collections",
923
+ "icu_locale_core",
924
+ "icu_properties_data",
925
+ "icu_provider",
926
+ "zerotrie",
927
+ "zerovec",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "icu_properties_data"
932
+ version = "2.2.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
935
+
936
+ [[package]]
937
+ name = "icu_provider"
938
+ version = "2.2.0"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
941
+ dependencies = [
942
+ "displaydoc",
943
+ "icu_locale_core",
944
+ "writeable",
945
+ "yoke",
946
+ "zerofrom",
947
+ "zerotrie",
948
+ "zerovec",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "id-arena"
953
+ version = "2.3.0"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
956
+
957
+ [[package]]
958
+ name = "idna"
959
+ version = "1.1.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
962
+ dependencies = [
963
+ "idna_adapter",
964
+ "smallvec",
965
+ "utf8_iter",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "idna_adapter"
970
+ version = "1.2.2"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
973
+ dependencies = [
974
+ "icu_normalizer",
975
+ "icu_properties",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "image"
980
+ version = "0.25.10"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
983
+ dependencies = [
984
+ "bytemuck",
985
+ "byteorder-lite",
986
+ "color_quant",
987
+ "exr",
988
+ "gif",
989
+ "image-webp",
990
+ "moxcms",
991
+ "num-traits",
992
+ "png",
993
+ "qoi",
994
+ "ravif",
995
+ "rayon",
996
+ "rgb",
997
+ "tiff",
998
+ "zune-core",
999
+ "zune-jpeg",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "image-webp"
1004
+ version = "0.2.4"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1007
+ dependencies = [
1008
+ "byteorder-lite",
1009
+ "quick-error",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "imgref"
1014
+ version = "1.12.1"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "40fac9d56ed6437b198fddba683305e8e2d651aa42647f00f5ae542e7f5c94a2"
1017
+
1018
+ [[package]]
1019
+ name = "indexmap"
1020
+ version = "2.14.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1023
+ dependencies = [
1024
+ "equivalent",
1025
+ "hashbrown 0.17.1",
1026
+ "serde",
1027
+ "serde_core",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "indoc"
1032
+ version = "2.0.7"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1035
+ dependencies = [
1036
+ "rustversion",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "inout"
1041
+ version = "0.1.4"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1044
+ dependencies = [
1045
+ "generic-array",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "interpolate_name"
1050
+ version = "0.2.4"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
1053
+ dependencies = [
1054
+ "proc-macro2",
1055
+ "quote",
1056
+ "syn",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "ipnet"
1061
+ version = "2.12.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1064
+
1065
+ [[package]]
1066
+ name = "itertools"
1067
+ version = "0.14.0"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1070
+ dependencies = [
1071
+ "either",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "itoa"
1076
+ version = "1.0.18"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1079
+
1080
+ [[package]]
1081
+ name = "jobserver"
1082
+ version = "0.1.34"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1085
+ dependencies = [
1086
+ "getrandom 0.3.4",
1087
+ "libc",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "js-sys"
1092
+ version = "0.3.98"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
1095
+ dependencies = [
1096
+ "cfg-if",
1097
+ "futures-util",
1098
+ "once_cell",
1099
+ "wasm-bindgen",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "leb128fmt"
1104
+ version = "0.1.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1107
+
1108
+ [[package]]
1109
+ name = "lebe"
1110
+ version = "0.5.3"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1113
+
1114
+ [[package]]
1115
+ name = "libc"
1116
+ version = "0.2.186"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1119
+
1120
+ [[package]]
1121
+ name = "libfuzzer-sys"
1122
+ version = "0.4.12"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
1125
+ dependencies = [
1126
+ "arbitrary",
1127
+ "cc",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "libredox"
1132
+ version = "0.1.16"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
1135
+ dependencies = [
1136
+ "libc",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "litemap"
1141
+ version = "0.8.2"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1144
+
1145
+ [[package]]
1146
+ name = "log"
1147
+ version = "0.4.29"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1150
+
1151
+ [[package]]
1152
+ name = "loop9"
1153
+ version = "0.1.5"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1156
+ dependencies = [
1157
+ "imgref",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "lru-slab"
1162
+ version = "0.1.2"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1165
+
1166
+ [[package]]
1167
+ name = "maybe-rayon"
1168
+ version = "0.1.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1171
+ dependencies = [
1172
+ "cfg-if",
1173
+ "rayon",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "memchr"
1178
+ version = "2.8.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1181
+
1182
+ [[package]]
1183
+ name = "memoffset"
1184
+ version = "0.9.1"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1187
+ dependencies = [
1188
+ "autocfg",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "miniz_oxide"
1193
+ version = "0.8.9"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1196
+ dependencies = [
1197
+ "adler2",
1198
+ "simd-adler32",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "mio"
1203
+ version = "1.2.0"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1206
+ dependencies = [
1207
+ "libc",
1208
+ "wasi",
1209
+ "windows-sys 0.61.2",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "moxcms"
1214
+ version = "0.8.1"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1217
+ dependencies = [
1218
+ "num-traits",
1219
+ "pxfm",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "new_debug_unreachable"
1224
+ version = "1.0.6"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1227
+
1228
+ [[package]]
1229
+ name = "no_std_io2"
1230
+ version = "0.9.4"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
1233
+ dependencies = [
1234
+ "memchr",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "nom"
1239
+ version = "8.0.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1242
+ dependencies = [
1243
+ "memchr",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "noop_proc_macro"
1248
+ version = "0.3.0"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
1251
+
1252
+ [[package]]
1253
+ name = "num-bigint"
1254
+ version = "0.4.6"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1257
+ dependencies = [
1258
+ "num-integer",
1259
+ "num-traits",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "num-conv"
1264
+ version = "0.2.1"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1267
+
1268
+ [[package]]
1269
+ name = "num-derive"
1270
+ version = "0.4.2"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1273
+ dependencies = [
1274
+ "proc-macro2",
1275
+ "quote",
1276
+ "syn",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "num-integer"
1281
+ version = "0.1.46"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1284
+ dependencies = [
1285
+ "num-traits",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "num-rational"
1290
+ version = "0.4.2"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1293
+ dependencies = [
1294
+ "num-bigint",
1295
+ "num-integer",
1296
+ "num-traits",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "num-traits"
1301
+ version = "0.2.19"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1304
+ dependencies = [
1305
+ "autocfg",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "once_cell"
1310
+ version = "1.21.4"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1313
+
1314
+ [[package]]
1315
+ name = "opaque-debug"
1316
+ version = "0.3.1"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1319
+
1320
+ [[package]]
1321
+ name = "option-ext"
1322
+ version = "0.2.0"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1325
+
1326
+ [[package]]
1327
+ name = "paste"
1328
+ version = "1.0.15"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1331
+
1332
+ [[package]]
1333
+ name = "pastey"
1334
+ version = "0.1.1"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
1337
+
1338
+ [[package]]
1339
+ name = "percent-encoding"
1340
+ version = "2.3.2"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1343
+
1344
+ [[package]]
1345
+ name = "pin-project-lite"
1346
+ version = "0.2.17"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1349
+
1350
+ [[package]]
1351
+ name = "png"
1352
+ version = "0.18.1"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1355
+ dependencies = [
1356
+ "bitflags",
1357
+ "crc32fast",
1358
+ "fdeflate",
1359
+ "flate2",
1360
+ "miniz_oxide",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "polyval"
1365
+ version = "0.6.2"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1368
+ dependencies = [
1369
+ "cfg-if",
1370
+ "cpufeatures",
1371
+ "opaque-debug",
1372
+ "universal-hash",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "portable-atomic"
1377
+ version = "1.13.1"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1380
+
1381
+ [[package]]
1382
+ name = "potential_utf"
1383
+ version = "0.1.5"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1386
+ dependencies = [
1387
+ "zerovec",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "powerfmt"
1392
+ version = "0.2.0"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1395
+
1396
+ [[package]]
1397
+ name = "ppv-lite86"
1398
+ version = "0.2.21"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1401
+ dependencies = [
1402
+ "zerocopy",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "prettyplease"
1407
+ version = "0.2.37"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1410
+ dependencies = [
1411
+ "proc-macro2",
1412
+ "syn",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "proc-macro2"
1417
+ version = "1.0.106"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1420
+ dependencies = [
1421
+ "unicode-ident",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "profiling"
1426
+ version = "1.0.18"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
1429
+ dependencies = [
1430
+ "profiling-procmacros",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "profiling-procmacros"
1435
+ version = "1.0.18"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
1438
+ dependencies = [
1439
+ "quote",
1440
+ "syn",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "pxfm"
1445
+ version = "0.1.29"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
1448
+
1449
+ [[package]]
1450
+ name = "pyagentbrowser"
1451
+ version = "0.27.1-rc.0"
1452
+ dependencies = [
1453
+ "agent-browser",
1454
+ "pyo3",
1455
+ "serde",
1456
+ "serde_json",
1457
+ "tokio",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "pyo3"
1462
+ version = "0.27.2"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1465
+ dependencies = [
1466
+ "indoc",
1467
+ "libc",
1468
+ "memoffset",
1469
+ "once_cell",
1470
+ "portable-atomic",
1471
+ "pyo3-build-config",
1472
+ "pyo3-ffi",
1473
+ "pyo3-macros",
1474
+ "unindent",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "pyo3-build-config"
1479
+ version = "0.27.2"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1482
+ dependencies = [
1483
+ "target-lexicon",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "pyo3-ffi"
1488
+ version = "0.27.2"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1491
+ dependencies = [
1492
+ "libc",
1493
+ "pyo3-build-config",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "pyo3-macros"
1498
+ version = "0.27.2"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1501
+ dependencies = [
1502
+ "proc-macro2",
1503
+ "pyo3-macros-backend",
1504
+ "quote",
1505
+ "syn",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "pyo3-macros-backend"
1510
+ version = "0.27.2"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1513
+ dependencies = [
1514
+ "heck",
1515
+ "proc-macro2",
1516
+ "pyo3-build-config",
1517
+ "quote",
1518
+ "syn",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "qoi"
1523
+ version = "0.4.1"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
1526
+ dependencies = [
1527
+ "bytemuck",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "quick-error"
1532
+ version = "2.0.1"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1535
+
1536
+ [[package]]
1537
+ name = "quinn"
1538
+ version = "0.11.9"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1541
+ dependencies = [
1542
+ "bytes",
1543
+ "cfg_aliases",
1544
+ "pin-project-lite",
1545
+ "quinn-proto",
1546
+ "quinn-udp",
1547
+ "rustc-hash",
1548
+ "rustls",
1549
+ "socket2",
1550
+ "thiserror 2.0.18",
1551
+ "tokio",
1552
+ "tracing",
1553
+ "web-time",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "quinn-proto"
1558
+ version = "0.11.14"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1561
+ dependencies = [
1562
+ "bytes",
1563
+ "getrandom 0.3.4",
1564
+ "lru-slab",
1565
+ "rand 0.9.4",
1566
+ "ring",
1567
+ "rustc-hash",
1568
+ "rustls",
1569
+ "rustls-pki-types",
1570
+ "slab",
1571
+ "thiserror 2.0.18",
1572
+ "tinyvec",
1573
+ "tracing",
1574
+ "web-time",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "quinn-udp"
1579
+ version = "0.5.14"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1582
+ dependencies = [
1583
+ "cfg_aliases",
1584
+ "libc",
1585
+ "once_cell",
1586
+ "socket2",
1587
+ "tracing",
1588
+ "windows-sys 0.60.2",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "quote"
1593
+ version = "1.0.45"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1596
+ dependencies = [
1597
+ "proc-macro2",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "r-efi"
1602
+ version = "5.3.0"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1605
+
1606
+ [[package]]
1607
+ name = "r-efi"
1608
+ version = "6.0.0"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1611
+
1612
+ [[package]]
1613
+ name = "rand"
1614
+ version = "0.8.6"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1617
+ dependencies = [
1618
+ "libc",
1619
+ "rand_chacha 0.3.1",
1620
+ "rand_core 0.6.4",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "rand"
1625
+ version = "0.9.4"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1628
+ dependencies = [
1629
+ "rand_chacha 0.9.0",
1630
+ "rand_core 0.9.5",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "rand_chacha"
1635
+ version = "0.3.1"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1638
+ dependencies = [
1639
+ "ppv-lite86",
1640
+ "rand_core 0.6.4",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "rand_chacha"
1645
+ version = "0.9.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1648
+ dependencies = [
1649
+ "ppv-lite86",
1650
+ "rand_core 0.9.5",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "rand_core"
1655
+ version = "0.6.4"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1658
+ dependencies = [
1659
+ "getrandom 0.2.17",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "rand_core"
1664
+ version = "0.9.5"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1667
+ dependencies = [
1668
+ "getrandom 0.3.4",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "rav1e"
1673
+ version = "0.8.1"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
1676
+ dependencies = [
1677
+ "aligned-vec",
1678
+ "arbitrary",
1679
+ "arg_enum_proc_macro",
1680
+ "arrayvec",
1681
+ "av-scenechange",
1682
+ "av1-grain",
1683
+ "bitstream-io",
1684
+ "built",
1685
+ "cfg-if",
1686
+ "interpolate_name",
1687
+ "itertools",
1688
+ "libc",
1689
+ "libfuzzer-sys",
1690
+ "log",
1691
+ "maybe-rayon",
1692
+ "new_debug_unreachable",
1693
+ "noop_proc_macro",
1694
+ "num-derive",
1695
+ "num-traits",
1696
+ "paste",
1697
+ "profiling",
1698
+ "rand 0.9.4",
1699
+ "rand_chacha 0.9.0",
1700
+ "simd_helpers",
1701
+ "thiserror 2.0.18",
1702
+ "v_frame",
1703
+ "wasm-bindgen",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "ravif"
1708
+ version = "0.13.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
1711
+ dependencies = [
1712
+ "avif-serialize",
1713
+ "imgref",
1714
+ "loop9",
1715
+ "quick-error",
1716
+ "rav1e",
1717
+ "rayon",
1718
+ "rgb",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "rayon"
1723
+ version = "1.12.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1726
+ dependencies = [
1727
+ "either",
1728
+ "rayon-core",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "rayon-core"
1733
+ version = "1.13.0"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1736
+ dependencies = [
1737
+ "crossbeam-deque",
1738
+ "crossbeam-utils",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "redox_users"
1743
+ version = "0.4.6"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1746
+ dependencies = [
1747
+ "getrandom 0.2.17",
1748
+ "libredox",
1749
+ "thiserror 1.0.69",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "reqwest"
1754
+ version = "0.12.28"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1757
+ dependencies = [
1758
+ "base64",
1759
+ "bytes",
1760
+ "futures-core",
1761
+ "futures-util",
1762
+ "http",
1763
+ "http-body",
1764
+ "http-body-util",
1765
+ "hyper",
1766
+ "hyper-rustls",
1767
+ "hyper-util",
1768
+ "js-sys",
1769
+ "log",
1770
+ "percent-encoding",
1771
+ "pin-project-lite",
1772
+ "quinn",
1773
+ "rustls",
1774
+ "rustls-pki-types",
1775
+ "serde",
1776
+ "serde_json",
1777
+ "serde_urlencoded",
1778
+ "sync_wrapper",
1779
+ "tokio",
1780
+ "tokio-rustls",
1781
+ "tokio-util",
1782
+ "tower",
1783
+ "tower-http",
1784
+ "tower-service",
1785
+ "url",
1786
+ "wasm-bindgen",
1787
+ "wasm-bindgen-futures",
1788
+ "wasm-streams",
1789
+ "web-sys",
1790
+ "webpki-roots 1.0.7",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "rgb"
1795
+ version = "0.8.53"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
1798
+
1799
+ [[package]]
1800
+ name = "ring"
1801
+ version = "0.17.14"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1804
+ dependencies = [
1805
+ "cc",
1806
+ "cfg-if",
1807
+ "getrandom 0.2.17",
1808
+ "libc",
1809
+ "untrusted",
1810
+ "windows-sys 0.52.0",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "rustc-hash"
1815
+ version = "2.1.2"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1818
+
1819
+ [[package]]
1820
+ name = "rustls"
1821
+ version = "0.23.40"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1824
+ dependencies = [
1825
+ "once_cell",
1826
+ "ring",
1827
+ "rustls-pki-types",
1828
+ "rustls-webpki",
1829
+ "subtle",
1830
+ "zeroize",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "rustls-pki-types"
1835
+ version = "1.14.1"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1838
+ dependencies = [
1839
+ "web-time",
1840
+ "zeroize",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "rustls-webpki"
1845
+ version = "0.103.13"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1848
+ dependencies = [
1849
+ "ring",
1850
+ "rustls-pki-types",
1851
+ "untrusted",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "rustversion"
1856
+ version = "1.0.22"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1859
+
1860
+ [[package]]
1861
+ name = "ryu"
1862
+ version = "1.0.23"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1865
+
1866
+ [[package]]
1867
+ name = "semver"
1868
+ version = "1.0.28"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1871
+
1872
+ [[package]]
1873
+ name = "serde"
1874
+ version = "1.0.228"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1877
+ dependencies = [
1878
+ "serde_core",
1879
+ "serde_derive",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "serde_core"
1884
+ version = "1.0.228"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1887
+ dependencies = [
1888
+ "serde_derive",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "serde_derive"
1893
+ version = "1.0.228"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1896
+ dependencies = [
1897
+ "proc-macro2",
1898
+ "quote",
1899
+ "syn",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "serde_json"
1904
+ version = "1.0.149"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1907
+ dependencies = [
1908
+ "itoa",
1909
+ "memchr",
1910
+ "serde",
1911
+ "serde_core",
1912
+ "zmij",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "serde_urlencoded"
1917
+ version = "0.7.1"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1920
+ dependencies = [
1921
+ "form_urlencoded",
1922
+ "itoa",
1923
+ "ryu",
1924
+ "serde",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "sha1"
1929
+ version = "0.10.6"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1932
+ dependencies = [
1933
+ "cfg-if",
1934
+ "cpufeatures",
1935
+ "digest",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "sha2"
1940
+ version = "0.10.9"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1943
+ dependencies = [
1944
+ "cfg-if",
1945
+ "cpufeatures",
1946
+ "digest",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "shlex"
1951
+ version = "1.3.0"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1954
+
1955
+ [[package]]
1956
+ name = "signal-hook-registry"
1957
+ version = "1.4.8"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1960
+ dependencies = [
1961
+ "errno",
1962
+ "libc",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "simd-adler32"
1967
+ version = "0.3.9"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1970
+
1971
+ [[package]]
1972
+ name = "simd_helpers"
1973
+ version = "0.1.0"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
1976
+ dependencies = [
1977
+ "quote",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "similar"
1982
+ version = "2.7.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1985
+
1986
+ [[package]]
1987
+ name = "slab"
1988
+ version = "0.4.12"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1991
+
1992
+ [[package]]
1993
+ name = "smallvec"
1994
+ version = "1.15.1"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1997
+
1998
+ [[package]]
1999
+ name = "socket2"
2000
+ version = "0.6.3"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2003
+ dependencies = [
2004
+ "libc",
2005
+ "windows-sys 0.61.2",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "stable_deref_trait"
2010
+ version = "1.2.1"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2013
+
2014
+ [[package]]
2015
+ name = "subtle"
2016
+ version = "2.6.1"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2019
+
2020
+ [[package]]
2021
+ name = "syn"
2022
+ version = "2.0.117"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2025
+ dependencies = [
2026
+ "proc-macro2",
2027
+ "quote",
2028
+ "unicode-ident",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "sync_wrapper"
2033
+ version = "1.0.2"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2036
+ dependencies = [
2037
+ "futures-core",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "synstructure"
2042
+ version = "0.13.2"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2045
+ dependencies = [
2046
+ "proc-macro2",
2047
+ "quote",
2048
+ "syn",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "target-lexicon"
2053
+ version = "0.13.5"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2056
+
2057
+ [[package]]
2058
+ name = "thiserror"
2059
+ version = "1.0.69"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2062
+ dependencies = [
2063
+ "thiserror-impl 1.0.69",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "thiserror"
2068
+ version = "2.0.18"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2071
+ dependencies = [
2072
+ "thiserror-impl 2.0.18",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "thiserror-impl"
2077
+ version = "1.0.69"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2080
+ dependencies = [
2081
+ "proc-macro2",
2082
+ "quote",
2083
+ "syn",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "thiserror-impl"
2088
+ version = "2.0.18"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2091
+ dependencies = [
2092
+ "proc-macro2",
2093
+ "quote",
2094
+ "syn",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "tiff"
2099
+ version = "0.11.3"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
2102
+ dependencies = [
2103
+ "fax",
2104
+ "flate2",
2105
+ "half",
2106
+ "quick-error",
2107
+ "weezl",
2108
+ "zune-jpeg",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "time"
2113
+ version = "0.3.47"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2116
+ dependencies = [
2117
+ "deranged",
2118
+ "itoa",
2119
+ "num-conv",
2120
+ "powerfmt",
2121
+ "serde_core",
2122
+ "time-core",
2123
+ "time-macros",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "time-core"
2128
+ version = "0.1.8"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2131
+
2132
+ [[package]]
2133
+ name = "time-macros"
2134
+ version = "0.2.27"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2137
+ dependencies = [
2138
+ "num-conv",
2139
+ "time-core",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "tinystr"
2144
+ version = "0.8.3"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2147
+ dependencies = [
2148
+ "displaydoc",
2149
+ "zerovec",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "tinyvec"
2154
+ version = "1.11.0"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2157
+ dependencies = [
2158
+ "tinyvec_macros",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "tinyvec_macros"
2163
+ version = "0.1.1"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2166
+
2167
+ [[package]]
2168
+ name = "tokio"
2169
+ version = "1.52.3"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2172
+ dependencies = [
2173
+ "bytes",
2174
+ "libc",
2175
+ "mio",
2176
+ "pin-project-lite",
2177
+ "signal-hook-registry",
2178
+ "socket2",
2179
+ "tokio-macros",
2180
+ "windows-sys 0.61.2",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "tokio-macros"
2185
+ version = "2.7.0"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2188
+ dependencies = [
2189
+ "proc-macro2",
2190
+ "quote",
2191
+ "syn",
2192
+ ]
2193
+
2194
+ [[package]]
2195
+ name = "tokio-rustls"
2196
+ version = "0.26.4"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2199
+ dependencies = [
2200
+ "rustls",
2201
+ "tokio",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "tokio-tungstenite"
2206
+ version = "0.24.0"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
2209
+ dependencies = [
2210
+ "futures-util",
2211
+ "log",
2212
+ "rustls",
2213
+ "rustls-pki-types",
2214
+ "tokio",
2215
+ "tokio-rustls",
2216
+ "tungstenite",
2217
+ "webpki-roots 0.26.11",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "tokio-util"
2222
+ version = "0.7.18"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2225
+ dependencies = [
2226
+ "bytes",
2227
+ "futures-core",
2228
+ "futures-sink",
2229
+ "pin-project-lite",
2230
+ "tokio",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "tower"
2235
+ version = "0.5.3"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2238
+ dependencies = [
2239
+ "futures-core",
2240
+ "futures-util",
2241
+ "pin-project-lite",
2242
+ "sync_wrapper",
2243
+ "tokio",
2244
+ "tower-layer",
2245
+ "tower-service",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "tower-http"
2250
+ version = "0.6.10"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
2253
+ dependencies = [
2254
+ "bitflags",
2255
+ "bytes",
2256
+ "futures-util",
2257
+ "http",
2258
+ "http-body",
2259
+ "pin-project-lite",
2260
+ "tower",
2261
+ "tower-layer",
2262
+ "tower-service",
2263
+ "url",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "tower-layer"
2268
+ version = "0.3.3"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2271
+
2272
+ [[package]]
2273
+ name = "tower-service"
2274
+ version = "0.3.3"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2277
+
2278
+ [[package]]
2279
+ name = "tracing"
2280
+ version = "0.1.44"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2283
+ dependencies = [
2284
+ "pin-project-lite",
2285
+ "tracing-core",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "tracing-core"
2290
+ version = "0.1.36"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2293
+ dependencies = [
2294
+ "once_cell",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "try-lock"
2299
+ version = "0.2.5"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2302
+
2303
+ [[package]]
2304
+ name = "tungstenite"
2305
+ version = "0.24.0"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
2308
+ dependencies = [
2309
+ "byteorder",
2310
+ "bytes",
2311
+ "data-encoding",
2312
+ "http",
2313
+ "httparse",
2314
+ "log",
2315
+ "rand 0.8.6",
2316
+ "rustls",
2317
+ "rustls-pki-types",
2318
+ "sha1",
2319
+ "thiserror 1.0.69",
2320
+ "utf-8",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "typed-path"
2325
+ version = "0.12.3"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
2328
+
2329
+ [[package]]
2330
+ name = "typenum"
2331
+ version = "1.20.0"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2334
+
2335
+ [[package]]
2336
+ name = "unicode-ident"
2337
+ version = "1.0.24"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2340
+
2341
+ [[package]]
2342
+ name = "unicode-xid"
2343
+ version = "0.2.6"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2346
+
2347
+ [[package]]
2348
+ name = "unindent"
2349
+ version = "0.2.4"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2352
+
2353
+ [[package]]
2354
+ name = "universal-hash"
2355
+ version = "0.5.1"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2358
+ dependencies = [
2359
+ "crypto-common",
2360
+ "subtle",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "untrusted"
2365
+ version = "0.9.0"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2368
+
2369
+ [[package]]
2370
+ name = "url"
2371
+ version = "2.5.8"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2374
+ dependencies = [
2375
+ "form_urlencoded",
2376
+ "idna",
2377
+ "percent-encoding",
2378
+ "serde",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "urlencoding"
2383
+ version = "2.1.3"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2386
+
2387
+ [[package]]
2388
+ name = "utf-8"
2389
+ version = "0.7.6"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2392
+
2393
+ [[package]]
2394
+ name = "utf8_iter"
2395
+ version = "1.0.4"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2398
+
2399
+ [[package]]
2400
+ name = "uuid"
2401
+ version = "1.23.1"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
2404
+ dependencies = [
2405
+ "getrandom 0.4.2",
2406
+ "js-sys",
2407
+ "wasm-bindgen",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "v_frame"
2412
+ version = "0.3.9"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
2415
+ dependencies = [
2416
+ "aligned-vec",
2417
+ "num-traits",
2418
+ "wasm-bindgen",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "version_check"
2423
+ version = "0.9.5"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2426
+
2427
+ [[package]]
2428
+ name = "want"
2429
+ version = "0.3.1"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2432
+ dependencies = [
2433
+ "try-lock",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "wasi"
2438
+ version = "0.11.1+wasi-snapshot-preview1"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2441
+
2442
+ [[package]]
2443
+ name = "wasip2"
2444
+ version = "1.0.3+wasi-0.2.9"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2447
+ dependencies = [
2448
+ "wit-bindgen 0.57.1",
2449
+ ]
2450
+
2451
+ [[package]]
2452
+ name = "wasip3"
2453
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2456
+ dependencies = [
2457
+ "wit-bindgen 0.51.0",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "wasm-bindgen"
2462
+ version = "0.2.121"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
2465
+ dependencies = [
2466
+ "cfg-if",
2467
+ "once_cell",
2468
+ "rustversion",
2469
+ "wasm-bindgen-macro",
2470
+ "wasm-bindgen-shared",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "wasm-bindgen-futures"
2475
+ version = "0.4.71"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
2478
+ dependencies = [
2479
+ "js-sys",
2480
+ "wasm-bindgen",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "wasm-bindgen-macro"
2485
+ version = "0.2.121"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
2488
+ dependencies = [
2489
+ "quote",
2490
+ "wasm-bindgen-macro-support",
2491
+ ]
2492
+
2493
+ [[package]]
2494
+ name = "wasm-bindgen-macro-support"
2495
+ version = "0.2.121"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
2498
+ dependencies = [
2499
+ "bumpalo",
2500
+ "proc-macro2",
2501
+ "quote",
2502
+ "syn",
2503
+ "wasm-bindgen-shared",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "wasm-bindgen-shared"
2508
+ version = "0.2.121"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
2511
+ dependencies = [
2512
+ "unicode-ident",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "wasm-encoder"
2517
+ version = "0.244.0"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2520
+ dependencies = [
2521
+ "leb128fmt",
2522
+ "wasmparser",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "wasm-metadata"
2527
+ version = "0.244.0"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2530
+ dependencies = [
2531
+ "anyhow",
2532
+ "indexmap",
2533
+ "wasm-encoder",
2534
+ "wasmparser",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "wasm-streams"
2539
+ version = "0.4.2"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2542
+ dependencies = [
2543
+ "futures-util",
2544
+ "js-sys",
2545
+ "wasm-bindgen",
2546
+ "wasm-bindgen-futures",
2547
+ "web-sys",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "wasmparser"
2552
+ version = "0.244.0"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2555
+ dependencies = [
2556
+ "bitflags",
2557
+ "hashbrown 0.15.5",
2558
+ "indexmap",
2559
+ "semver",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "web-sys"
2564
+ version = "0.3.98"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
2567
+ dependencies = [
2568
+ "js-sys",
2569
+ "wasm-bindgen",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "web-time"
2574
+ version = "1.1.0"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2577
+ dependencies = [
2578
+ "js-sys",
2579
+ "wasm-bindgen",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "webpki-roots"
2584
+ version = "0.26.11"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
2587
+ dependencies = [
2588
+ "webpki-roots 1.0.7",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "webpki-roots"
2593
+ version = "1.0.7"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
2596
+ dependencies = [
2597
+ "rustls-pki-types",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "weezl"
2602
+ version = "0.1.12"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
2605
+
2606
+ [[package]]
2607
+ name = "windows-core"
2608
+ version = "0.62.2"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2611
+ dependencies = [
2612
+ "windows-implement",
2613
+ "windows-interface",
2614
+ "windows-link",
2615
+ "windows-result",
2616
+ "windows-strings",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "windows-implement"
2621
+ version = "0.60.2"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2624
+ dependencies = [
2625
+ "proc-macro2",
2626
+ "quote",
2627
+ "syn",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "windows-interface"
2632
+ version = "0.59.3"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2635
+ dependencies = [
2636
+ "proc-macro2",
2637
+ "quote",
2638
+ "syn",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "windows-link"
2643
+ version = "0.2.1"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2646
+
2647
+ [[package]]
2648
+ name = "windows-result"
2649
+ version = "0.4.1"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2652
+ dependencies = [
2653
+ "windows-link",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "windows-strings"
2658
+ version = "0.5.1"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2661
+ dependencies = [
2662
+ "windows-link",
2663
+ ]
2664
+
2665
+ [[package]]
2666
+ name = "windows-sys"
2667
+ version = "0.48.0"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2670
+ dependencies = [
2671
+ "windows-targets 0.48.5",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "windows-sys"
2676
+ version = "0.52.0"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2679
+ dependencies = [
2680
+ "windows-targets 0.52.6",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "windows-sys"
2685
+ version = "0.60.2"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2688
+ dependencies = [
2689
+ "windows-targets 0.53.5",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "windows-sys"
2694
+ version = "0.61.2"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2697
+ dependencies = [
2698
+ "windows-link",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "windows-targets"
2703
+ version = "0.48.5"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2706
+ dependencies = [
2707
+ "windows_aarch64_gnullvm 0.48.5",
2708
+ "windows_aarch64_msvc 0.48.5",
2709
+ "windows_i686_gnu 0.48.5",
2710
+ "windows_i686_msvc 0.48.5",
2711
+ "windows_x86_64_gnu 0.48.5",
2712
+ "windows_x86_64_gnullvm 0.48.5",
2713
+ "windows_x86_64_msvc 0.48.5",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "windows-targets"
2718
+ version = "0.52.6"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2721
+ dependencies = [
2722
+ "windows_aarch64_gnullvm 0.52.6",
2723
+ "windows_aarch64_msvc 0.52.6",
2724
+ "windows_i686_gnu 0.52.6",
2725
+ "windows_i686_gnullvm 0.52.6",
2726
+ "windows_i686_msvc 0.52.6",
2727
+ "windows_x86_64_gnu 0.52.6",
2728
+ "windows_x86_64_gnullvm 0.52.6",
2729
+ "windows_x86_64_msvc 0.52.6",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "windows-targets"
2734
+ version = "0.53.5"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2737
+ dependencies = [
2738
+ "windows-link",
2739
+ "windows_aarch64_gnullvm 0.53.1",
2740
+ "windows_aarch64_msvc 0.53.1",
2741
+ "windows_i686_gnu 0.53.1",
2742
+ "windows_i686_gnullvm 0.53.1",
2743
+ "windows_i686_msvc 0.53.1",
2744
+ "windows_x86_64_gnu 0.53.1",
2745
+ "windows_x86_64_gnullvm 0.53.1",
2746
+ "windows_x86_64_msvc 0.53.1",
2747
+ ]
2748
+
2749
+ [[package]]
2750
+ name = "windows_aarch64_gnullvm"
2751
+ version = "0.48.5"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2754
+
2755
+ [[package]]
2756
+ name = "windows_aarch64_gnullvm"
2757
+ version = "0.52.6"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2760
+
2761
+ [[package]]
2762
+ name = "windows_aarch64_gnullvm"
2763
+ version = "0.53.1"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2766
+
2767
+ [[package]]
2768
+ name = "windows_aarch64_msvc"
2769
+ version = "0.48.5"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2772
+
2773
+ [[package]]
2774
+ name = "windows_aarch64_msvc"
2775
+ version = "0.52.6"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2778
+
2779
+ [[package]]
2780
+ name = "windows_aarch64_msvc"
2781
+ version = "0.53.1"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2784
+
2785
+ [[package]]
2786
+ name = "windows_i686_gnu"
2787
+ version = "0.48.5"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2790
+
2791
+ [[package]]
2792
+ name = "windows_i686_gnu"
2793
+ version = "0.52.6"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2796
+
2797
+ [[package]]
2798
+ name = "windows_i686_gnu"
2799
+ version = "0.53.1"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2802
+
2803
+ [[package]]
2804
+ name = "windows_i686_gnullvm"
2805
+ version = "0.52.6"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2808
+
2809
+ [[package]]
2810
+ name = "windows_i686_gnullvm"
2811
+ version = "0.53.1"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2814
+
2815
+ [[package]]
2816
+ name = "windows_i686_msvc"
2817
+ version = "0.48.5"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2820
+
2821
+ [[package]]
2822
+ name = "windows_i686_msvc"
2823
+ version = "0.52.6"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2826
+
2827
+ [[package]]
2828
+ name = "windows_i686_msvc"
2829
+ version = "0.53.1"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2832
+
2833
+ [[package]]
2834
+ name = "windows_x86_64_gnu"
2835
+ version = "0.48.5"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2838
+
2839
+ [[package]]
2840
+ name = "windows_x86_64_gnu"
2841
+ version = "0.52.6"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2844
+
2845
+ [[package]]
2846
+ name = "windows_x86_64_gnu"
2847
+ version = "0.53.1"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2850
+
2851
+ [[package]]
2852
+ name = "windows_x86_64_gnullvm"
2853
+ version = "0.48.5"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2856
+
2857
+ [[package]]
2858
+ name = "windows_x86_64_gnullvm"
2859
+ version = "0.52.6"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2862
+
2863
+ [[package]]
2864
+ name = "windows_x86_64_gnullvm"
2865
+ version = "0.53.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2868
+
2869
+ [[package]]
2870
+ name = "windows_x86_64_msvc"
2871
+ version = "0.48.5"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2874
+
2875
+ [[package]]
2876
+ name = "windows_x86_64_msvc"
2877
+ version = "0.52.6"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2880
+
2881
+ [[package]]
2882
+ name = "windows_x86_64_msvc"
2883
+ version = "0.53.1"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2886
+
2887
+ [[package]]
2888
+ name = "wit-bindgen"
2889
+ version = "0.51.0"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2892
+ dependencies = [
2893
+ "wit-bindgen-rust-macro",
2894
+ ]
2895
+
2896
+ [[package]]
2897
+ name = "wit-bindgen"
2898
+ version = "0.57.1"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2901
+
2902
+ [[package]]
2903
+ name = "wit-bindgen-core"
2904
+ version = "0.51.0"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2907
+ dependencies = [
2908
+ "anyhow",
2909
+ "heck",
2910
+ "wit-parser",
2911
+ ]
2912
+
2913
+ [[package]]
2914
+ name = "wit-bindgen-rust"
2915
+ version = "0.51.0"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2918
+ dependencies = [
2919
+ "anyhow",
2920
+ "heck",
2921
+ "indexmap",
2922
+ "prettyplease",
2923
+ "syn",
2924
+ "wasm-metadata",
2925
+ "wit-bindgen-core",
2926
+ "wit-component",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "wit-bindgen-rust-macro"
2931
+ version = "0.51.0"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2934
+ dependencies = [
2935
+ "anyhow",
2936
+ "prettyplease",
2937
+ "proc-macro2",
2938
+ "quote",
2939
+ "syn",
2940
+ "wit-bindgen-core",
2941
+ "wit-bindgen-rust",
2942
+ ]
2943
+
2944
+ [[package]]
2945
+ name = "wit-component"
2946
+ version = "0.244.0"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2949
+ dependencies = [
2950
+ "anyhow",
2951
+ "bitflags",
2952
+ "indexmap",
2953
+ "log",
2954
+ "serde",
2955
+ "serde_derive",
2956
+ "serde_json",
2957
+ "wasm-encoder",
2958
+ "wasm-metadata",
2959
+ "wasmparser",
2960
+ "wit-parser",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "wit-parser"
2965
+ version = "0.244.0"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2968
+ dependencies = [
2969
+ "anyhow",
2970
+ "id-arena",
2971
+ "indexmap",
2972
+ "log",
2973
+ "semver",
2974
+ "serde",
2975
+ "serde_derive",
2976
+ "serde_json",
2977
+ "unicode-xid",
2978
+ "wasmparser",
2979
+ ]
2980
+
2981
+ [[package]]
2982
+ name = "writeable"
2983
+ version = "0.6.3"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2986
+
2987
+ [[package]]
2988
+ name = "y4m"
2989
+ version = "0.8.0"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
2992
+
2993
+ [[package]]
2994
+ name = "yoke"
2995
+ version = "0.8.2"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2998
+ dependencies = [
2999
+ "stable_deref_trait",
3000
+ "yoke-derive",
3001
+ "zerofrom",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "yoke-derive"
3006
+ version = "0.8.2"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3009
+ dependencies = [
3010
+ "proc-macro2",
3011
+ "quote",
3012
+ "syn",
3013
+ "synstructure",
3014
+ ]
3015
+
3016
+ [[package]]
3017
+ name = "zerocopy"
3018
+ version = "0.8.48"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3021
+ dependencies = [
3022
+ "zerocopy-derive",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "zerocopy-derive"
3027
+ version = "0.8.48"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3030
+ dependencies = [
3031
+ "proc-macro2",
3032
+ "quote",
3033
+ "syn",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "zerofrom"
3038
+ version = "0.1.7"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
3041
+ dependencies = [
3042
+ "zerofrom-derive",
3043
+ ]
3044
+
3045
+ [[package]]
3046
+ name = "zerofrom-derive"
3047
+ version = "0.1.7"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3050
+ dependencies = [
3051
+ "proc-macro2",
3052
+ "quote",
3053
+ "syn",
3054
+ "synstructure",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "zeroize"
3059
+ version = "1.8.2"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3062
+
3063
+ [[package]]
3064
+ name = "zerotrie"
3065
+ version = "0.2.4"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3068
+ dependencies = [
3069
+ "displaydoc",
3070
+ "yoke",
3071
+ "zerofrom",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "zerovec"
3076
+ version = "0.11.6"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3079
+ dependencies = [
3080
+ "yoke",
3081
+ "zerofrom",
3082
+ "zerovec-derive",
3083
+ ]
3084
+
3085
+ [[package]]
3086
+ name = "zerovec-derive"
3087
+ version = "0.11.3"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3090
+ dependencies = [
3091
+ "proc-macro2",
3092
+ "quote",
3093
+ "syn",
3094
+ ]
3095
+
3096
+ [[package]]
3097
+ name = "zip"
3098
+ version = "8.6.0"
3099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3100
+ checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
3101
+ dependencies = [
3102
+ "crc32fast",
3103
+ "flate2",
3104
+ "indexmap",
3105
+ "memchr",
3106
+ "typed-path",
3107
+ "zopfli",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "zlib-rs"
3112
+ version = "0.6.3"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
3115
+
3116
+ [[package]]
3117
+ name = "zmij"
3118
+ version = "1.0.21"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3121
+
3122
+ [[package]]
3123
+ name = "zopfli"
3124
+ version = "0.8.3"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
3127
+ dependencies = [
3128
+ "bumpalo",
3129
+ "crc32fast",
3130
+ "log",
3131
+ "simd-adler32",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "zune-core"
3136
+ version = "0.5.1"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
3139
+
3140
+ [[package]]
3141
+ name = "zune-inflate"
3142
+ version = "0.2.54"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
3145
+ dependencies = [
3146
+ "simd-adler32",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "zune-jpeg"
3151
+ version = "0.5.15"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
3154
+ dependencies = [
3155
+ "zune-core",
3156
+ ]