pyfluss 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. pyfluss-0.1.0/Cargo.lock +4594 -0
  2. pyfluss-0.1.0/Cargo.toml +42 -0
  3. pyfluss-0.1.0/PKG-INFO +57 -0
  4. pyfluss-0.1.0/PYPI_README.md +28 -0
  5. pyfluss-0.1.0/bindings/python/Cargo.toml +41 -0
  6. pyfluss-0.1.0/bindings/python/DEPENDENCIES.rust.tsv +310 -0
  7. pyfluss-0.1.0/bindings/python/DEVELOPMENT.md +95 -0
  8. pyfluss-0.1.0/bindings/python/PYPI_README.md +28 -0
  9. pyfluss-0.1.0/bindings/python/README.md +21 -0
  10. pyfluss-0.1.0/bindings/python/example/example.py +943 -0
  11. pyfluss-0.1.0/bindings/python/src/admin.rs +633 -0
  12. pyfluss-0.1.0/bindings/python/src/config.rs +492 -0
  13. pyfluss-0.1.0/bindings/python/src/connection.rs +110 -0
  14. pyfluss-0.1.0/bindings/python/src/error.rs +276 -0
  15. pyfluss-0.1.0/bindings/python/src/lib.rs +142 -0
  16. pyfluss-0.1.0/bindings/python/src/lookup.rs +112 -0
  17. pyfluss-0.1.0/bindings/python/src/metadata.rs +767 -0
  18. pyfluss-0.1.0/bindings/python/src/table.rs +2457 -0
  19. pyfluss-0.1.0/bindings/python/src/upsert.rs +132 -0
  20. pyfluss-0.1.0/bindings/python/src/utils.rs +229 -0
  21. pyfluss-0.1.0/bindings/python/src/write_handle.rs +78 -0
  22. pyfluss-0.1.0/bindings/python/test/conftest.py +284 -0
  23. pyfluss-0.1.0/bindings/python/test/test_admin.py +319 -0
  24. pyfluss-0.1.0/bindings/python/test/test_kv_table.py +430 -0
  25. pyfluss-0.1.0/bindings/python/test/test_log_table.py +757 -0
  26. pyfluss-0.1.0/bindings/python/test/test_sasl_auth.py +108 -0
  27. pyfluss-0.1.0/bindings/python/test/test_schema.py +37 -0
  28. pyfluss-0.1.0/crates/fluss/Cargo.toml +87 -0
  29. pyfluss-0.1.0/crates/fluss/DEPENDENCIES.rust.tsv +297 -0
  30. pyfluss-0.1.0/crates/fluss/README.md +105 -0
  31. pyfluss-0.1.0/crates/fluss/build.rs +28 -0
  32. pyfluss-0.1.0/crates/fluss/src/bucketing/mod.rs +265 -0
  33. pyfluss-0.1.0/crates/fluss/src/client/admin.rs +464 -0
  34. pyfluss-0.1.0/crates/fluss/src/client/connection.rs +147 -0
  35. pyfluss-0.1.0/crates/fluss/src/client/credentials.rs +437 -0
  36. pyfluss-0.1.0/crates/fluss/src/client/metadata.rs +323 -0
  37. pyfluss-0.1.0/crates/fluss/src/client/mod.rs +30 -0
  38. pyfluss-0.1.0/crates/fluss/src/client/table/append.rs +152 -0
  39. pyfluss-0.1.0/crates/fluss/src/client/table/log_fetch_buffer.rs +940 -0
  40. pyfluss-0.1.0/crates/fluss/src/client/table/lookup.rs +416 -0
  41. pyfluss-0.1.0/crates/fluss/src/client/table/mod.rs +149 -0
  42. pyfluss-0.1.0/crates/fluss/src/client/table/partition_getter.rs +199 -0
  43. pyfluss-0.1.0/crates/fluss/src/client/table/remote_log.rs +1308 -0
  44. pyfluss-0.1.0/crates/fluss/src/client/table/scanner.rs +2036 -0
  45. pyfluss-0.1.0/crates/fluss/src/client/table/upsert.rs +560 -0
  46. pyfluss-0.1.0/crates/fluss/src/client/write/accumulator.rs +1540 -0
  47. pyfluss-0.1.0/crates/fluss/src/client/write/batch.rs +590 -0
  48. pyfluss-0.1.0/crates/fluss/src/client/write/broadcast.rs +133 -0
  49. pyfluss-0.1.0/crates/fluss/src/client/write/bucket_assigner.rs +259 -0
  50. pyfluss-0.1.0/crates/fluss/src/client/write/idempotence.rs +767 -0
  51. pyfluss-0.1.0/crates/fluss/src/client/write/mod.rs +264 -0
  52. pyfluss-0.1.0/crates/fluss/src/client/write/sender.rs +1398 -0
  53. pyfluss-0.1.0/crates/fluss/src/client/write/write_format.rs +66 -0
  54. pyfluss-0.1.0/crates/fluss/src/client/write/writer_client.rs +245 -0
  55. pyfluss-0.1.0/crates/fluss/src/cluster/cluster.rs +541 -0
  56. pyfluss-0.1.0/crates/fluss/src/cluster/mod.rs +126 -0
  57. pyfluss-0.1.0/crates/fluss/src/compression/arrow_compression.rs +264 -0
  58. pyfluss-0.1.0/crates/fluss/src/compression/mod.rs +20 -0
  59. pyfluss-0.1.0/crates/fluss/src/config.rs +497 -0
  60. pyfluss-0.1.0/crates/fluss/src/error.rs +238 -0
  61. pyfluss-0.1.0/crates/fluss/src/io/file_io.rs +157 -0
  62. pyfluss-0.1.0/crates/fluss/src/io/mod.rs +44 -0
  63. pyfluss-0.1.0/crates/fluss/src/io/storage.rs +108 -0
  64. pyfluss-0.1.0/crates/fluss/src/io/storage_fs.rs +30 -0
  65. pyfluss-0.1.0/crates/fluss/src/io/storage_memory.rs +24 -0
  66. pyfluss-0.1.0/crates/fluss/src/io/storage_oss.rs +45 -0
  67. pyfluss-0.1.0/crates/fluss/src/io/storage_s3.rs +48 -0
  68. pyfluss-0.1.0/crates/fluss/src/lib.rs +150 -0
  69. pyfluss-0.1.0/crates/fluss/src/metadata/data_lake_format.rs +64 -0
  70. pyfluss-0.1.0/crates/fluss/src/metadata/database.rs +239 -0
  71. pyfluss-0.1.0/crates/fluss/src/metadata/datatype.rs +1697 -0
  72. pyfluss-0.1.0/crates/fluss/src/metadata/json_serde.rs +788 -0
  73. pyfluss-0.1.0/crates/fluss/src/metadata/mod.rs +30 -0
  74. pyfluss-0.1.0/crates/fluss/src/metadata/partition.rs +475 -0
  75. pyfluss-0.1.0/crates/fluss/src/metadata/table.rs +1429 -0
  76. pyfluss-0.1.0/crates/fluss/src/proto/fluss_api.proto +429 -0
  77. pyfluss-0.1.0/crates/fluss/src/record/arrow.rs +1952 -0
  78. pyfluss-0.1.0/crates/fluss/src/record/error.rs +27 -0
  79. pyfluss-0.1.0/crates/fluss/src/record/kv/kv_record.rs +351 -0
  80. pyfluss-0.1.0/crates/fluss/src/record/kv/kv_record_batch.rs +456 -0
  81. pyfluss-0.1.0/crates/fluss/src/record/kv/kv_record_batch_builder.rs +578 -0
  82. pyfluss-0.1.0/crates/fluss/src/record/kv/kv_record_read_context.rs +165 -0
  83. pyfluss-0.1.0/crates/fluss/src/record/kv/mod.rs +42 -0
  84. pyfluss-0.1.0/crates/fluss/src/record/kv/read_context.rs +45 -0
  85. pyfluss-0.1.0/crates/fluss/src/record/kv/test_util.rs +50 -0
  86. pyfluss-0.1.0/crates/fluss/src/record/mod.rs +323 -0
  87. pyfluss-0.1.0/crates/fluss/src/row/binary/binary_writer.rs +248 -0
  88. pyfluss-0.1.0/crates/fluss/src/row/binary/mod.rs +28 -0
  89. pyfluss-0.1.0/crates/fluss/src/row/column.rs +536 -0
  90. pyfluss-0.1.0/crates/fluss/src/row/column_writer.rs +771 -0
  91. pyfluss-0.1.0/crates/fluss/src/row/compacted/compacted_key_writer.rs +110 -0
  92. pyfluss-0.1.0/crates/fluss/src/row/compacted/compacted_row.rs +330 -0
  93. pyfluss-0.1.0/crates/fluss/src/row/compacted/compacted_row_reader.rs +288 -0
  94. pyfluss-0.1.0/crates/fluss/src/row/compacted/compacted_row_writer.rs +267 -0
  95. pyfluss-0.1.0/crates/fluss/src/row/compacted/mod.rs +30 -0
  96. pyfluss-0.1.0/crates/fluss/src/row/datum.rs +1073 -0
  97. pyfluss-0.1.0/crates/fluss/src/row/decimal.rs +472 -0
  98. pyfluss-0.1.0/crates/fluss/src/row/encode/compacted_key_encoder.rs +358 -0
  99. pyfluss-0.1.0/crates/fluss/src/row/encode/compacted_row_encoder.rs +77 -0
  100. pyfluss-0.1.0/crates/fluss/src/row/encode/mod.rs +127 -0
  101. pyfluss-0.1.0/crates/fluss/src/row/field_getter.rs +204 -0
  102. pyfluss-0.1.0/crates/fluss/src/row/mod.rs +379 -0
  103. pyfluss-0.1.0/crates/fluss/src/row/row_decoder.rs +137 -0
  104. pyfluss-0.1.0/crates/fluss/src/rpc/api_key.rs +154 -0
  105. pyfluss-0.1.0/crates/fluss/src/rpc/api_version.rs +79 -0
  106. pyfluss-0.1.0/crates/fluss/src/rpc/convert.rs +91 -0
  107. pyfluss-0.1.0/crates/fluss/src/rpc/error.rs +54 -0
  108. pyfluss-0.1.0/crates/fluss/src/rpc/fluss_api_error.rs +483 -0
  109. pyfluss-0.1.0/crates/fluss/src/rpc/frame.rs +110 -0
  110. pyfluss-0.1.0/crates/fluss/src/rpc/message/authenticate.rs +86 -0
  111. pyfluss-0.1.0/crates/fluss/src/rpc/message/create_database.rs +68 -0
  112. pyfluss-0.1.0/crates/fluss/src/rpc/message/create_partition.rs +59 -0
  113. pyfluss-0.1.0/crates/fluss/src/rpc/message/create_table.rs +63 -0
  114. pyfluss-0.1.0/crates/fluss/src/rpc/message/database_exists.rs +51 -0
  115. pyfluss-0.1.0/crates/fluss/src/rpc/message/drop_database.rs +53 -0
  116. pyfluss-0.1.0/crates/fluss/src/rpc/message/drop_partition.rs +59 -0
  117. pyfluss-0.1.0/crates/fluss/src/rpc/message/drop_table.rs +58 -0
  118. pyfluss-0.1.0/crates/fluss/src/rpc/message/fetch.rs +58 -0
  119. pyfluss-0.1.0/crates/fluss/src/rpc/message/get_database_info.rs +51 -0
  120. pyfluss-0.1.0/crates/fluss/src/rpc/message/get_latest_lake_snapshot.rs +57 -0
  121. pyfluss-0.1.0/crates/fluss/src/rpc/message/get_security_token.rs +53 -0
  122. pyfluss-0.1.0/crates/fluss/src/rpc/message/get_table.rs +56 -0
  123. pyfluss-0.1.0/crates/fluss/src/rpc/message/header.rs +83 -0
  124. pyfluss-0.1.0/crates/fluss/src/rpc/message/init_writer.rs +50 -0
  125. pyfluss-0.1.0/crates/fluss/src/rpc/message/list_databases.rs +49 -0
  126. pyfluss-0.1.0/crates/fluss/src/rpc/message/list_offsets.rs +157 -0
  127. pyfluss-0.1.0/crates/fluss/src/rpc/message/list_partition_infos.rs +63 -0
  128. pyfluss-0.1.0/crates/fluss/src/rpc/message/list_tables.rs +55 -0
  129. pyfluss-0.1.0/crates/fluss/src/rpc/message/lookup.rs +67 -0
  130. pyfluss-0.1.0/crates/fluss/src/rpc/message/mod.rs +134 -0
  131. pyfluss-0.1.0/crates/fluss/src/rpc/message/produce_log.rs +71 -0
  132. pyfluss-0.1.0/crates/fluss/src/rpc/message/put_kv.rs +73 -0
  133. pyfluss-0.1.0/crates/fluss/src/rpc/message/table_exists.rs +56 -0
  134. pyfluss-0.1.0/crates/fluss/src/rpc/message/update_metadata.rs +74 -0
  135. pyfluss-0.1.0/crates/fluss/src/rpc/mod.rs +31 -0
  136. pyfluss-0.1.0/crates/fluss/src/rpc/server_connection.rs +563 -0
  137. pyfluss-0.1.0/crates/fluss/src/rpc/transport.rs +83 -0
  138. pyfluss-0.1.0/crates/fluss/src/test_utils.rs +89 -0
  139. pyfluss-0.1.0/crates/fluss/src/util/mod.rs +239 -0
  140. pyfluss-0.1.0/crates/fluss/src/util/murmur_hash.rs +222 -0
  141. pyfluss-0.1.0/crates/fluss/src/util/partition.rs +532 -0
  142. pyfluss-0.1.0/crates/fluss/src/util/varint.rs +498 -0
  143. pyfluss-0.1.0/crates/fluss/tests/integration/admin.rs +566 -0
  144. pyfluss-0.1.0/crates/fluss/tests/integration/fluss_cluster.rs +467 -0
  145. pyfluss-0.1.0/crates/fluss/tests/integration/kv_table.rs +889 -0
  146. pyfluss-0.1.0/crates/fluss/tests/integration/log_table.rs +1376 -0
  147. pyfluss-0.1.0/crates/fluss/tests/integration/sasl_auth.rs +147 -0
  148. pyfluss-0.1.0/crates/fluss/tests/integration/table_remote_scan.rs +124 -0
  149. pyfluss-0.1.0/crates/fluss/tests/integration/utils.rs +154 -0
  150. pyfluss-0.1.0/crates/fluss/tests/test_fluss.rs +32 -0
  151. pyfluss-0.1.0/fluss/__init__.py +20 -0
  152. pyfluss-0.1.0/fluss/__init__.pyi +1012 -0
  153. pyfluss-0.1.0/fluss/py.typed +0 -0
  154. pyfluss-0.1.0/pyproject.toml +104 -0
@@ -0,0 +1,4594 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "const-random",
13
+ "getrandom 0.3.4",
14
+ "once_cell",
15
+ "version_check",
16
+ "zerocopy",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "aho-corasick"
21
+ version = "1.1.4"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
24
+ dependencies = [
25
+ "memchr",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "android_system_properties"
30
+ version = "0.1.5"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
33
+ dependencies = [
34
+ "libc",
35
+ ]
36
+
37
+ [[package]]
38
+ name = "anstream"
39
+ version = "1.0.0"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
42
+ dependencies = [
43
+ "anstyle",
44
+ "anstyle-parse",
45
+ "anstyle-query",
46
+ "anstyle-wincon",
47
+ "colorchoice",
48
+ "is_terminal_polyfill",
49
+ "utf8parse",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "anstyle"
54
+ version = "1.0.14"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
57
+
58
+ [[package]]
59
+ name = "anstyle-parse"
60
+ version = "1.0.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
63
+ dependencies = [
64
+ "utf8parse",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "anstyle-query"
69
+ version = "1.1.5"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
72
+ dependencies = [
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anstyle-wincon"
78
+ version = "3.0.11"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
81
+ dependencies = [
82
+ "anstyle",
83
+ "once_cell_polyfill",
84
+ "windows-sys 0.61.2",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anyhow"
89
+ version = "1.0.102"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
92
+
93
+ [[package]]
94
+ name = "arrow"
95
+ version = "57.3.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "e4754a624e5ae42081f464514be454b39711daae0458906dacde5f4c632f33a8"
98
+ dependencies = [
99
+ "arrow-arith",
100
+ "arrow-array",
101
+ "arrow-buffer",
102
+ "arrow-cast",
103
+ "arrow-csv",
104
+ "arrow-data",
105
+ "arrow-ipc",
106
+ "arrow-json",
107
+ "arrow-ord",
108
+ "arrow-row",
109
+ "arrow-schema",
110
+ "arrow-select",
111
+ "arrow-string",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "arrow-arith"
116
+ version = "57.3.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "f7b3141e0ec5145a22d8694ea8b6d6f69305971c4fa1c1a13ef0195aef2d678b"
119
+ dependencies = [
120
+ "arrow-array",
121
+ "arrow-buffer",
122
+ "arrow-data",
123
+ "arrow-schema",
124
+ "chrono",
125
+ "num-traits",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "arrow-array"
130
+ version = "57.3.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "4c8955af33b25f3b175ee10af580577280b4bd01f7e823d94c7cdef7cf8c9aef"
133
+ dependencies = [
134
+ "ahash",
135
+ "arrow-buffer",
136
+ "arrow-data",
137
+ "arrow-schema",
138
+ "chrono",
139
+ "half",
140
+ "hashbrown 0.16.1",
141
+ "num-complex",
142
+ "num-integer",
143
+ "num-traits",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "arrow-buffer"
148
+ version = "57.3.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "c697ddca96183182f35b3a18e50b9110b11e916d7b7799cbfd4d34662f2c56c2"
151
+ dependencies = [
152
+ "bytes",
153
+ "half",
154
+ "num-bigint",
155
+ "num-traits",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "arrow-cast"
160
+ version = "57.3.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "646bbb821e86fd57189c10b4fcdaa941deaf4181924917b0daa92735baa6ada5"
163
+ dependencies = [
164
+ "arrow-array",
165
+ "arrow-buffer",
166
+ "arrow-data",
167
+ "arrow-ord",
168
+ "arrow-schema",
169
+ "arrow-select",
170
+ "atoi",
171
+ "base64 0.22.1",
172
+ "chrono",
173
+ "half",
174
+ "lexical-core",
175
+ "num-traits",
176
+ "ryu",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "arrow-csv"
181
+ version = "57.3.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "8da746f4180004e3ce7b83c977daf6394d768332349d3d913998b10a120b790a"
184
+ dependencies = [
185
+ "arrow-array",
186
+ "arrow-cast",
187
+ "arrow-schema",
188
+ "chrono",
189
+ "csv",
190
+ "csv-core",
191
+ "regex",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "arrow-data"
196
+ version = "57.3.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "1fdd994a9d28e6365aa78e15da3f3950c0fdcea6b963a12fa1c391afb637b304"
199
+ dependencies = [
200
+ "arrow-buffer",
201
+ "arrow-schema",
202
+ "half",
203
+ "num-integer",
204
+ "num-traits",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "arrow-ipc"
209
+ version = "57.3.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "abf7df950701ab528bf7c0cf7eeadc0445d03ef5d6ffc151eaae6b38a58feff1"
212
+ dependencies = [
213
+ "arrow-array",
214
+ "arrow-buffer",
215
+ "arrow-data",
216
+ "arrow-schema",
217
+ "arrow-select",
218
+ "flatbuffers",
219
+ "lz4_flex",
220
+ "zstd",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "arrow-json"
225
+ version = "57.3.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "0ff8357658bedc49792b13e2e862b80df908171275f8e6e075c460da5ee4bf86"
228
+ dependencies = [
229
+ "arrow-array",
230
+ "arrow-buffer",
231
+ "arrow-cast",
232
+ "arrow-data",
233
+ "arrow-schema",
234
+ "chrono",
235
+ "half",
236
+ "indexmap 2.13.1",
237
+ "itoa",
238
+ "lexical-core",
239
+ "memchr",
240
+ "num-traits",
241
+ "ryu",
242
+ "serde_core",
243
+ "serde_json",
244
+ "simdutf8",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "arrow-ord"
249
+ version = "57.3.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "f7d8f1870e03d4cbed632959498bcc84083b5a24bded52905ae1695bd29da45b"
252
+ dependencies = [
253
+ "arrow-array",
254
+ "arrow-buffer",
255
+ "arrow-data",
256
+ "arrow-schema",
257
+ "arrow-select",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "arrow-pyarrow"
262
+ version = "57.3.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "d18c442b4c266aaf3d7f7dd40fd7ae058cef7f113b00ff0cd8256e1e218ec544"
265
+ dependencies = [
266
+ "arrow-array",
267
+ "arrow-data",
268
+ "arrow-schema",
269
+ "pyo3",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "arrow-row"
274
+ version = "57.3.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "18228633bad92bff92a95746bbeb16e5fc318e8382b75619dec26db79e4de4c0"
277
+ dependencies = [
278
+ "arrow-array",
279
+ "arrow-buffer",
280
+ "arrow-data",
281
+ "arrow-schema",
282
+ "half",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "arrow-schema"
287
+ version = "57.3.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "8c872d36b7bf2a6a6a2b40de9156265f0242910791db366a2c17476ba8330d68"
290
+ dependencies = [
291
+ "bitflags",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "arrow-select"
296
+ version = "57.3.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "68bf3e3efbd1278f770d67e5dc410257300b161b93baedb3aae836144edcaf4b"
299
+ dependencies = [
300
+ "ahash",
301
+ "arrow-array",
302
+ "arrow-buffer",
303
+ "arrow-data",
304
+ "arrow-schema",
305
+ "num-traits",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "arrow-string"
310
+ version = "57.3.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "85e968097061b3c0e9fe3079cf2e703e487890700546b5b0647f60fca1b5a8d8"
313
+ dependencies = [
314
+ "arrow-array",
315
+ "arrow-buffer",
316
+ "arrow-data",
317
+ "arrow-schema",
318
+ "arrow-select",
319
+ "memchr",
320
+ "num-traits",
321
+ "regex",
322
+ "regex-syntax",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "astral-tokio-tar"
327
+ version = "0.5.6"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5"
330
+ dependencies = [
331
+ "filetime",
332
+ "futures-core",
333
+ "libc",
334
+ "portable-atomic",
335
+ "rustc-hash",
336
+ "tokio",
337
+ "tokio-stream",
338
+ "xattr",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "async-stream"
343
+ version = "0.3.6"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
346
+ dependencies = [
347
+ "async-stream-impl",
348
+ "futures-core",
349
+ "pin-project-lite",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "async-stream-impl"
354
+ version = "0.3.6"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
357
+ dependencies = [
358
+ "proc-macro2",
359
+ "quote",
360
+ "syn 2.0.117",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "async-trait"
365
+ version = "0.1.89"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
368
+ dependencies = [
369
+ "proc-macro2",
370
+ "quote",
371
+ "syn 2.0.117",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "atoi"
376
+ version = "2.0.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
379
+ dependencies = [
380
+ "num-traits",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "atomic-waker"
385
+ version = "1.1.2"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
388
+
389
+ [[package]]
390
+ name = "autocfg"
391
+ version = "1.5.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
394
+
395
+ [[package]]
396
+ name = "axum"
397
+ version = "0.8.8"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
400
+ dependencies = [
401
+ "axum-core",
402
+ "bytes",
403
+ "futures-util",
404
+ "http",
405
+ "http-body",
406
+ "http-body-util",
407
+ "itoa",
408
+ "matchit",
409
+ "memchr",
410
+ "mime",
411
+ "percent-encoding",
412
+ "pin-project-lite",
413
+ "serde_core",
414
+ "sync_wrapper",
415
+ "tower",
416
+ "tower-layer",
417
+ "tower-service",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "axum-core"
422
+ version = "0.5.6"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
425
+ dependencies = [
426
+ "bytes",
427
+ "futures-core",
428
+ "http",
429
+ "http-body",
430
+ "http-body-util",
431
+ "mime",
432
+ "pin-project-lite",
433
+ "sync_wrapper",
434
+ "tower-layer",
435
+ "tower-service",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "backon"
440
+ version = "1.6.0"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
443
+ dependencies = [
444
+ "fastrand",
445
+ "gloo-timers",
446
+ "tokio",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "base64"
451
+ version = "0.21.7"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
454
+
455
+ [[package]]
456
+ name = "base64"
457
+ version = "0.22.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
460
+
461
+ [[package]]
462
+ name = "bigdecimal"
463
+ version = "0.4.10"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
466
+ dependencies = [
467
+ "autocfg",
468
+ "libm",
469
+ "num-bigint",
470
+ "num-integer",
471
+ "num-traits",
472
+ "serde",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "bitflags"
477
+ version = "2.11.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
480
+
481
+ [[package]]
482
+ name = "bitvec"
483
+ version = "1.0.1"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
486
+ dependencies = [
487
+ "funty",
488
+ "radium",
489
+ "tap",
490
+ "wyz",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "block-buffer"
495
+ version = "0.10.4"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
498
+ dependencies = [
499
+ "generic-array",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "bollard"
504
+ version = "0.19.4"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "87a52479c9237eb04047ddb94788c41ca0d26eaff8b697ecfbb4c32f7fdc3b1b"
507
+ dependencies = [
508
+ "async-stream",
509
+ "base64 0.22.1",
510
+ "bitflags",
511
+ "bollard-buildkit-proto",
512
+ "bollard-stubs",
513
+ "bytes",
514
+ "chrono",
515
+ "futures-core",
516
+ "futures-util",
517
+ "hex",
518
+ "home",
519
+ "http",
520
+ "http-body-util",
521
+ "hyper",
522
+ "hyper-named-pipe",
523
+ "hyper-rustls",
524
+ "hyper-util",
525
+ "hyperlocal",
526
+ "log",
527
+ "num",
528
+ "pin-project-lite",
529
+ "rand 0.9.2",
530
+ "rustls",
531
+ "rustls-native-certs",
532
+ "rustls-pemfile",
533
+ "rustls-pki-types",
534
+ "serde",
535
+ "serde_derive",
536
+ "serde_json",
537
+ "serde_repr",
538
+ "serde_urlencoded",
539
+ "thiserror 2.0.18",
540
+ "tokio",
541
+ "tokio-stream",
542
+ "tokio-util",
543
+ "tonic",
544
+ "tower-service",
545
+ "url",
546
+ "winapi",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "bollard-buildkit-proto"
551
+ version = "0.7.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "85a885520bf6249ab931a764ffdb87b0ceef48e6e7d807cfdb21b751e086e1ad"
554
+ dependencies = [
555
+ "prost",
556
+ "prost-types",
557
+ "tonic",
558
+ "tonic-prost",
559
+ "ureq",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "bollard-stubs"
564
+ version = "1.49.1-rc.28.4.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "5731fe885755e92beff1950774068e0cae67ea6ec7587381536fca84f1779623"
567
+ dependencies = [
568
+ "base64 0.22.1",
569
+ "bollard-buildkit-proto",
570
+ "bytes",
571
+ "chrono",
572
+ "prost",
573
+ "serde",
574
+ "serde_json",
575
+ "serde_repr",
576
+ "serde_with",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "bumpalo"
581
+ version = "3.20.2"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
584
+
585
+ [[package]]
586
+ name = "byteorder"
587
+ version = "1.5.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
590
+
591
+ [[package]]
592
+ name = "bytes"
593
+ version = "1.11.1"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
596
+
597
+ [[package]]
598
+ name = "cc"
599
+ version = "1.2.58"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
602
+ dependencies = [
603
+ "find-msvc-tools",
604
+ "jobserver",
605
+ "libc",
606
+ "shlex",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "cfg-if"
611
+ version = "1.0.4"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
614
+
615
+ [[package]]
616
+ name = "cfg_aliases"
617
+ version = "0.2.1"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
620
+
621
+ [[package]]
622
+ name = "chrono"
623
+ version = "0.4.44"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
626
+ dependencies = [
627
+ "iana-time-zone",
628
+ "js-sys",
629
+ "num-traits",
630
+ "serde",
631
+ "wasm-bindgen",
632
+ "windows-link",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "clap"
637
+ version = "4.6.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
640
+ dependencies = [
641
+ "clap_builder",
642
+ "clap_derive",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "clap_builder"
647
+ version = "4.6.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
650
+ dependencies = [
651
+ "anstream",
652
+ "anstyle",
653
+ "clap_lex",
654
+ "strsim",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "clap_derive"
659
+ version = "4.6.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
662
+ dependencies = [
663
+ "heck",
664
+ "proc-macro2",
665
+ "quote",
666
+ "syn 2.0.117",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "clap_lex"
671
+ version = "1.1.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
674
+
675
+ [[package]]
676
+ name = "codespan-reporting"
677
+ version = "0.13.1"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
680
+ dependencies = [
681
+ "serde",
682
+ "termcolor",
683
+ "unicode-width",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "colorchoice"
688
+ version = "1.0.5"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
691
+
692
+ [[package]]
693
+ name = "const-oid"
694
+ version = "0.9.6"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
697
+
698
+ [[package]]
699
+ name = "const-random"
700
+ version = "0.1.18"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
703
+ dependencies = [
704
+ "const-random-macro",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "const-random-macro"
709
+ version = "0.1.16"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
712
+ dependencies = [
713
+ "getrandom 0.2.17",
714
+ "once_cell",
715
+ "tiny-keccak",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "core-foundation"
720
+ version = "0.10.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
723
+ dependencies = [
724
+ "core-foundation-sys",
725
+ "libc",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "core-foundation-sys"
730
+ version = "0.8.7"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
733
+
734
+ [[package]]
735
+ name = "cpufeatures"
736
+ version = "0.2.17"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
739
+ dependencies = [
740
+ "libc",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "crc32c"
745
+ version = "0.6.8"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
748
+ dependencies = [
749
+ "rustc_version",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "crossbeam-utils"
754
+ version = "0.8.21"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
757
+
758
+ [[package]]
759
+ name = "crunchy"
760
+ version = "0.2.4"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
763
+
764
+ [[package]]
765
+ name = "crypto-common"
766
+ version = "0.1.7"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
769
+ dependencies = [
770
+ "generic-array",
771
+ "typenum",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "csv"
776
+ version = "1.4.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
779
+ dependencies = [
780
+ "csv-core",
781
+ "itoa",
782
+ "ryu",
783
+ "serde_core",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "csv-core"
788
+ version = "0.1.13"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
791
+ dependencies = [
792
+ "memchr",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "cxx"
797
+ version = "1.0.194"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e"
800
+ dependencies = [
801
+ "cc",
802
+ "cxx-build",
803
+ "cxxbridge-cmd",
804
+ "cxxbridge-flags",
805
+ "cxxbridge-macro",
806
+ "foldhash 0.2.0",
807
+ "link-cplusplus",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "cxx-build"
812
+ version = "1.0.194"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e"
815
+ dependencies = [
816
+ "cc",
817
+ "codespan-reporting",
818
+ "indexmap 2.13.1",
819
+ "proc-macro2",
820
+ "quote",
821
+ "scratch",
822
+ "syn 2.0.117",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "cxxbridge-cmd"
827
+ version = "1.0.194"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "d0956799fa8678d4c50eed028f2de1c0552ae183c76e976cf7ca8c4e36a7c328"
830
+ dependencies = [
831
+ "clap",
832
+ "codespan-reporting",
833
+ "indexmap 2.13.1",
834
+ "proc-macro2",
835
+ "quote",
836
+ "syn 2.0.117",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "cxxbridge-flags"
841
+ version = "1.0.194"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a"
844
+
845
+ [[package]]
846
+ name = "cxxbridge-macro"
847
+ version = "1.0.194"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf"
850
+ dependencies = [
851
+ "indexmap 2.13.1",
852
+ "proc-macro2",
853
+ "quote",
854
+ "syn 2.0.117",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "darling"
859
+ version = "0.23.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
862
+ dependencies = [
863
+ "darling_core",
864
+ "darling_macro",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "darling_core"
869
+ version = "0.23.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
872
+ dependencies = [
873
+ "ident_case",
874
+ "proc-macro2",
875
+ "quote",
876
+ "strsim",
877
+ "syn 2.0.117",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "darling_macro"
882
+ version = "0.23.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
885
+ dependencies = [
886
+ "darling_core",
887
+ "quote",
888
+ "syn 2.0.117",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "dashmap"
893
+ version = "6.1.0"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
896
+ dependencies = [
897
+ "cfg-if",
898
+ "crossbeam-utils",
899
+ "hashbrown 0.14.5",
900
+ "lock_api",
901
+ "once_cell",
902
+ "parking_lot_core",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "delegate"
907
+ version = "0.13.5"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
910
+ dependencies = [
911
+ "proc-macro2",
912
+ "quote",
913
+ "syn 2.0.117",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "deranged"
918
+ version = "0.5.8"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
921
+ dependencies = [
922
+ "powerfmt",
923
+ "serde_core",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "digest"
928
+ version = "0.10.7"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
931
+ dependencies = [
932
+ "block-buffer",
933
+ "const-oid",
934
+ "crypto-common",
935
+ "subtle",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "displaydoc"
940
+ version = "0.2.5"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
943
+ dependencies = [
944
+ "proc-macro2",
945
+ "quote",
946
+ "syn 2.0.117",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "dlv-list"
951
+ version = "0.5.2"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
954
+ dependencies = [
955
+ "const-random",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "docker_credential"
960
+ version = "1.3.2"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "1d89dfcba45b4afad7450a99b39e751590463e45c04728cf555d36bb66940de8"
963
+ dependencies = [
964
+ "base64 0.21.7",
965
+ "serde",
966
+ "serde_json",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "dyn-clone"
971
+ version = "1.0.20"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
974
+
975
+ [[package]]
976
+ name = "either"
977
+ version = "1.15.0"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
980
+
981
+ [[package]]
982
+ name = "equivalent"
983
+ version = "1.0.2"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
986
+
987
+ [[package]]
988
+ name = "erased-serde"
989
+ version = "0.4.10"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
992
+ dependencies = [
993
+ "serde",
994
+ "serde_core",
995
+ "typeid",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "errno"
1000
+ version = "0.3.14"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1003
+ dependencies = [
1004
+ "libc",
1005
+ "windows-sys 0.61.2",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "etcetera"
1010
+ version = "0.10.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "26c7b13d0780cb82722fd59f6f57f925e143427e4a75313a6c77243bf5326ae6"
1013
+ dependencies = [
1014
+ "cfg-if",
1015
+ "home",
1016
+ "windows-sys 0.59.0",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "fastrand"
1021
+ version = "2.3.0"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1024
+
1025
+ [[package]]
1026
+ name = "filetime"
1027
+ version = "0.2.27"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
1030
+ dependencies = [
1031
+ "cfg-if",
1032
+ "libc",
1033
+ "libredox",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "find-msvc-tools"
1038
+ version = "0.1.9"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1041
+
1042
+ [[package]]
1043
+ name = "fixedbitset"
1044
+ version = "0.5.7"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1047
+
1048
+ [[package]]
1049
+ name = "flatbuffers"
1050
+ version = "25.12.19"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1053
+ dependencies = [
1054
+ "bitflags",
1055
+ "rustc_version",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "fluss-cpp"
1060
+ version = "0.1.0"
1061
+ dependencies = [
1062
+ "anyhow",
1063
+ "arrow",
1064
+ "bigdecimal",
1065
+ "cxx",
1066
+ "cxx-build",
1067
+ "fluss-rs",
1068
+ "tokio",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "fluss-examples"
1073
+ version = "0.1.0"
1074
+ dependencies = [
1075
+ "clap",
1076
+ "fluss-rs",
1077
+ "tikv-jemallocator",
1078
+ "tokio",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "fluss-rs"
1083
+ version = "0.1.0"
1084
+ dependencies = [
1085
+ "arrow",
1086
+ "arrow-schema",
1087
+ "bigdecimal",
1088
+ "bitvec",
1089
+ "byteorder",
1090
+ "bytes",
1091
+ "clap",
1092
+ "crc32c",
1093
+ "dashmap",
1094
+ "delegate",
1095
+ "futures",
1096
+ "jiff",
1097
+ "linked-hash-map",
1098
+ "log",
1099
+ "opendal",
1100
+ "ordered-float",
1101
+ "parking_lot",
1102
+ "parse-display 0.10.0",
1103
+ "prost",
1104
+ "prost-build",
1105
+ "rand 0.9.2",
1106
+ "scopeguard",
1107
+ "serde",
1108
+ "serde_json",
1109
+ "snafu",
1110
+ "strum",
1111
+ "strum_macros",
1112
+ "tempfile",
1113
+ "test-env-helpers",
1114
+ "testcontainers",
1115
+ "thiserror 1.0.69",
1116
+ "tokio",
1117
+ "url",
1118
+ "uuid",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "fluss_python"
1123
+ version = "0.1.0"
1124
+ dependencies = [
1125
+ "arrow",
1126
+ "arrow-array",
1127
+ "arrow-pyarrow",
1128
+ "arrow-schema",
1129
+ "bigdecimal",
1130
+ "fluss-rs",
1131
+ "indexmap 2.13.1",
1132
+ "jiff",
1133
+ "pyo3",
1134
+ "pyo3-async-runtimes",
1135
+ "tokio",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "fnv"
1140
+ version = "1.0.7"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1143
+
1144
+ [[package]]
1145
+ name = "foldhash"
1146
+ version = "0.1.5"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1149
+
1150
+ [[package]]
1151
+ name = "foldhash"
1152
+ version = "0.2.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1155
+
1156
+ [[package]]
1157
+ name = "form_urlencoded"
1158
+ version = "1.2.2"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1161
+ dependencies = [
1162
+ "percent-encoding",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "funty"
1167
+ version = "2.0.0"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1170
+
1171
+ [[package]]
1172
+ name = "futures"
1173
+ version = "0.3.32"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1176
+ dependencies = [
1177
+ "futures-channel",
1178
+ "futures-core",
1179
+ "futures-executor",
1180
+ "futures-io",
1181
+ "futures-sink",
1182
+ "futures-task",
1183
+ "futures-util",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "futures-channel"
1188
+ version = "0.3.32"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1191
+ dependencies = [
1192
+ "futures-core",
1193
+ "futures-sink",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "futures-core"
1198
+ version = "0.3.32"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1201
+
1202
+ [[package]]
1203
+ name = "futures-executor"
1204
+ version = "0.3.32"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1207
+ dependencies = [
1208
+ "futures-core",
1209
+ "futures-task",
1210
+ "futures-util",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "futures-io"
1215
+ version = "0.3.32"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1218
+
1219
+ [[package]]
1220
+ name = "futures-macro"
1221
+ version = "0.3.32"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1224
+ dependencies = [
1225
+ "proc-macro2",
1226
+ "quote",
1227
+ "syn 2.0.117",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "futures-sink"
1232
+ version = "0.3.32"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1235
+
1236
+ [[package]]
1237
+ name = "futures-task"
1238
+ version = "0.3.32"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1241
+
1242
+ [[package]]
1243
+ name = "futures-util"
1244
+ version = "0.3.32"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1247
+ dependencies = [
1248
+ "futures-channel",
1249
+ "futures-core",
1250
+ "futures-io",
1251
+ "futures-macro",
1252
+ "futures-sink",
1253
+ "futures-task",
1254
+ "memchr",
1255
+ "pin-project-lite",
1256
+ "slab",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "generic-array"
1261
+ version = "0.14.7"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1264
+ dependencies = [
1265
+ "typenum",
1266
+ "version_check",
1267
+ ]
1268
+
1269
+ [[package]]
1270
+ name = "getrandom"
1271
+ version = "0.2.17"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1274
+ dependencies = [
1275
+ "cfg-if",
1276
+ "js-sys",
1277
+ "libc",
1278
+ "wasi",
1279
+ "wasm-bindgen",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "getrandom"
1284
+ version = "0.3.4"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1287
+ dependencies = [
1288
+ "cfg-if",
1289
+ "js-sys",
1290
+ "libc",
1291
+ "r-efi 5.3.0",
1292
+ "wasip2",
1293
+ "wasm-bindgen",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "getrandom"
1298
+ version = "0.4.2"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1301
+ dependencies = [
1302
+ "cfg-if",
1303
+ "libc",
1304
+ "r-efi 6.0.0",
1305
+ "wasip2",
1306
+ "wasip3",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "gloo-timers"
1311
+ version = "0.3.0"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
1314
+ dependencies = [
1315
+ "futures-channel",
1316
+ "futures-core",
1317
+ "js-sys",
1318
+ "wasm-bindgen",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "h2"
1323
+ version = "0.4.13"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1326
+ dependencies = [
1327
+ "atomic-waker",
1328
+ "bytes",
1329
+ "fnv",
1330
+ "futures-core",
1331
+ "futures-sink",
1332
+ "http",
1333
+ "indexmap 2.13.1",
1334
+ "slab",
1335
+ "tokio",
1336
+ "tokio-util",
1337
+ "tracing",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "half"
1342
+ version = "2.7.1"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1345
+ dependencies = [
1346
+ "cfg-if",
1347
+ "crunchy",
1348
+ "num-traits",
1349
+ "zerocopy",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "hashbrown"
1354
+ version = "0.12.3"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1357
+
1358
+ [[package]]
1359
+ name = "hashbrown"
1360
+ version = "0.14.5"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1363
+
1364
+ [[package]]
1365
+ name = "hashbrown"
1366
+ version = "0.15.5"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1369
+ dependencies = [
1370
+ "foldhash 0.1.5",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "hashbrown"
1375
+ version = "0.16.1"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1378
+
1379
+ [[package]]
1380
+ name = "heck"
1381
+ version = "0.5.0"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1384
+
1385
+ [[package]]
1386
+ name = "hex"
1387
+ version = "0.4.3"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1390
+
1391
+ [[package]]
1392
+ name = "hmac"
1393
+ version = "0.12.1"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1396
+ dependencies = [
1397
+ "digest",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "home"
1402
+ version = "0.5.12"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1405
+ dependencies = [
1406
+ "windows-sys 0.61.2",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "http"
1411
+ version = "1.4.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1414
+ dependencies = [
1415
+ "bytes",
1416
+ "itoa",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "http-body"
1421
+ version = "1.0.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1424
+ dependencies = [
1425
+ "bytes",
1426
+ "http",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "http-body-util"
1431
+ version = "0.1.3"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1434
+ dependencies = [
1435
+ "bytes",
1436
+ "futures-core",
1437
+ "http",
1438
+ "http-body",
1439
+ "pin-project-lite",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "httparse"
1444
+ version = "1.10.1"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1447
+
1448
+ [[package]]
1449
+ name = "httpdate"
1450
+ version = "1.0.3"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1453
+
1454
+ [[package]]
1455
+ name = "hyper"
1456
+ version = "1.9.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1459
+ dependencies = [
1460
+ "atomic-waker",
1461
+ "bytes",
1462
+ "futures-channel",
1463
+ "futures-core",
1464
+ "h2",
1465
+ "http",
1466
+ "http-body",
1467
+ "httparse",
1468
+ "httpdate",
1469
+ "itoa",
1470
+ "pin-project-lite",
1471
+ "smallvec",
1472
+ "tokio",
1473
+ "want",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "hyper-named-pipe"
1478
+ version = "0.1.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "73b7d8abf35697b81a825e386fc151e0d503e8cb5fcb93cc8669c376dfd6f278"
1481
+ dependencies = [
1482
+ "hex",
1483
+ "hyper",
1484
+ "hyper-util",
1485
+ "pin-project-lite",
1486
+ "tokio",
1487
+ "tower-service",
1488
+ "winapi",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "hyper-rustls"
1493
+ version = "0.27.7"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1496
+ dependencies = [
1497
+ "http",
1498
+ "hyper",
1499
+ "hyper-util",
1500
+ "rustls",
1501
+ "rustls-pki-types",
1502
+ "tokio",
1503
+ "tokio-rustls",
1504
+ "tower-service",
1505
+ "webpki-roots",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "hyper-timeout"
1510
+ version = "0.5.2"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1513
+ dependencies = [
1514
+ "hyper",
1515
+ "hyper-util",
1516
+ "pin-project-lite",
1517
+ "tokio",
1518
+ "tower-service",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "hyper-util"
1523
+ version = "0.1.20"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1526
+ dependencies = [
1527
+ "base64 0.22.1",
1528
+ "bytes",
1529
+ "futures-channel",
1530
+ "futures-util",
1531
+ "http",
1532
+ "http-body",
1533
+ "hyper",
1534
+ "ipnet",
1535
+ "libc",
1536
+ "percent-encoding",
1537
+ "pin-project-lite",
1538
+ "socket2",
1539
+ "tokio",
1540
+ "tower-service",
1541
+ "tracing",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "hyperlocal"
1546
+ version = "0.9.1"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "986c5ce3b994526b3cd75578e62554abd09f0899d6206de48b3e96ab34ccc8c7"
1549
+ dependencies = [
1550
+ "hex",
1551
+ "http-body-util",
1552
+ "hyper",
1553
+ "hyper-util",
1554
+ "pin-project-lite",
1555
+ "tokio",
1556
+ "tower-service",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "iana-time-zone"
1561
+ version = "0.1.65"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1564
+ dependencies = [
1565
+ "android_system_properties",
1566
+ "core-foundation-sys",
1567
+ "iana-time-zone-haiku",
1568
+ "js-sys",
1569
+ "log",
1570
+ "wasm-bindgen",
1571
+ "windows-core",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "iana-time-zone-haiku"
1576
+ version = "0.1.2"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1579
+ dependencies = [
1580
+ "cc",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "icu_collections"
1585
+ version = "2.2.0"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1588
+ dependencies = [
1589
+ "displaydoc",
1590
+ "potential_utf",
1591
+ "utf8_iter",
1592
+ "yoke",
1593
+ "zerofrom",
1594
+ "zerovec",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "icu_locale_core"
1599
+ version = "2.2.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1602
+ dependencies = [
1603
+ "displaydoc",
1604
+ "litemap",
1605
+ "tinystr",
1606
+ "writeable",
1607
+ "zerovec",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "icu_normalizer"
1612
+ version = "2.2.0"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1615
+ dependencies = [
1616
+ "icu_collections",
1617
+ "icu_normalizer_data",
1618
+ "icu_properties",
1619
+ "icu_provider",
1620
+ "smallvec",
1621
+ "zerovec",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "icu_normalizer_data"
1626
+ version = "2.2.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1629
+
1630
+ [[package]]
1631
+ name = "icu_properties"
1632
+ version = "2.2.0"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1635
+ dependencies = [
1636
+ "icu_collections",
1637
+ "icu_locale_core",
1638
+ "icu_properties_data",
1639
+ "icu_provider",
1640
+ "zerotrie",
1641
+ "zerovec",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "icu_properties_data"
1646
+ version = "2.2.0"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1649
+
1650
+ [[package]]
1651
+ name = "icu_provider"
1652
+ version = "2.2.0"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1655
+ dependencies = [
1656
+ "displaydoc",
1657
+ "icu_locale_core",
1658
+ "writeable",
1659
+ "yoke",
1660
+ "zerofrom",
1661
+ "zerotrie",
1662
+ "zerovec",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "id-arena"
1667
+ version = "2.3.0"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1670
+
1671
+ [[package]]
1672
+ name = "ident_case"
1673
+ version = "1.0.1"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1676
+
1677
+ [[package]]
1678
+ name = "idna"
1679
+ version = "1.1.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1682
+ dependencies = [
1683
+ "idna_adapter",
1684
+ "smallvec",
1685
+ "utf8_iter",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "idna_adapter"
1690
+ version = "1.2.1"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1693
+ dependencies = [
1694
+ "icu_normalizer",
1695
+ "icu_properties",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "indexmap"
1700
+ version = "1.9.3"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1703
+ dependencies = [
1704
+ "autocfg",
1705
+ "hashbrown 0.12.3",
1706
+ "serde",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "indexmap"
1711
+ version = "2.13.1"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
1714
+ dependencies = [
1715
+ "equivalent",
1716
+ "hashbrown 0.16.1",
1717
+ "serde",
1718
+ "serde_core",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "indoc"
1723
+ version = "2.0.7"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1726
+ dependencies = [
1727
+ "rustversion",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "ipnet"
1732
+ version = "2.12.0"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1735
+
1736
+ [[package]]
1737
+ name = "iri-string"
1738
+ version = "0.7.12"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
1741
+ dependencies = [
1742
+ "memchr",
1743
+ "serde",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "is_terminal_polyfill"
1748
+ version = "1.70.2"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1751
+
1752
+ [[package]]
1753
+ name = "itertools"
1754
+ version = "0.14.0"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1757
+ dependencies = [
1758
+ "either",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "itoa"
1763
+ version = "1.0.18"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1766
+
1767
+ [[package]]
1768
+ name = "jiff"
1769
+ version = "0.2.23"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
1772
+ dependencies = [
1773
+ "jiff-static",
1774
+ "jiff-tzdb-platform",
1775
+ "js-sys",
1776
+ "log",
1777
+ "portable-atomic",
1778
+ "portable-atomic-util",
1779
+ "serde_core",
1780
+ "wasm-bindgen",
1781
+ "windows-sys 0.61.2",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "jiff-static"
1786
+ version = "0.2.23"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
1789
+ dependencies = [
1790
+ "proc-macro2",
1791
+ "quote",
1792
+ "syn 2.0.117",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "jiff-tzdb"
1797
+ version = "0.1.6"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076"
1800
+
1801
+ [[package]]
1802
+ name = "jiff-tzdb-platform"
1803
+ version = "0.1.3"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1806
+ dependencies = [
1807
+ "jiff-tzdb",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "jobserver"
1812
+ version = "0.1.34"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1815
+ dependencies = [
1816
+ "getrandom 0.3.4",
1817
+ "libc",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "js-sys"
1822
+ version = "0.3.94"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
1825
+ dependencies = [
1826
+ "cfg-if",
1827
+ "futures-util",
1828
+ "once_cell",
1829
+ "wasm-bindgen",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "leb128fmt"
1834
+ version = "0.1.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1837
+
1838
+ [[package]]
1839
+ name = "lexical-core"
1840
+ version = "1.0.6"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1843
+ dependencies = [
1844
+ "lexical-parse-float",
1845
+ "lexical-parse-integer",
1846
+ "lexical-util",
1847
+ "lexical-write-float",
1848
+ "lexical-write-integer",
1849
+ ]
1850
+
1851
+ [[package]]
1852
+ name = "lexical-parse-float"
1853
+ version = "1.0.6"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1856
+ dependencies = [
1857
+ "lexical-parse-integer",
1858
+ "lexical-util",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "lexical-parse-integer"
1863
+ version = "1.0.6"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1866
+ dependencies = [
1867
+ "lexical-util",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "lexical-util"
1872
+ version = "1.0.7"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1875
+
1876
+ [[package]]
1877
+ name = "lexical-write-float"
1878
+ version = "1.0.6"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1881
+ dependencies = [
1882
+ "lexical-util",
1883
+ "lexical-write-integer",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "lexical-write-integer"
1888
+ version = "1.0.6"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1891
+ dependencies = [
1892
+ "lexical-util",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "libc"
1897
+ version = "0.2.184"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
1900
+
1901
+ [[package]]
1902
+ name = "libm"
1903
+ version = "0.2.16"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1906
+
1907
+ [[package]]
1908
+ name = "libredox"
1909
+ version = "0.1.15"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
1912
+ dependencies = [
1913
+ "bitflags",
1914
+ "libc",
1915
+ "plain",
1916
+ "redox_syscall 0.7.3",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "link-cplusplus"
1921
+ version = "1.0.12"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82"
1924
+ dependencies = [
1925
+ "cc",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "linked-hash-map"
1930
+ version = "0.5.6"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1933
+
1934
+ [[package]]
1935
+ name = "linux-raw-sys"
1936
+ version = "0.12.1"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1939
+
1940
+ [[package]]
1941
+ name = "litemap"
1942
+ version = "0.8.2"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1945
+
1946
+ [[package]]
1947
+ name = "lock_api"
1948
+ version = "0.4.14"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1951
+ dependencies = [
1952
+ "scopeguard",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "log"
1957
+ version = "0.4.29"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1960
+ dependencies = [
1961
+ "value-bag",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "lru-slab"
1966
+ version = "0.1.2"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1969
+
1970
+ [[package]]
1971
+ name = "lz4_flex"
1972
+ version = "0.12.1"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "98c23545df7ecf1b16c303910a69b079e8e251d60f7dd2cc9b4177f2afaf1746"
1975
+ dependencies = [
1976
+ "twox-hash",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "matchit"
1981
+ version = "0.8.4"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1984
+
1985
+ [[package]]
1986
+ name = "md-5"
1987
+ version = "0.10.6"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1990
+ dependencies = [
1991
+ "cfg-if",
1992
+ "digest",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "memchr"
1997
+ version = "2.8.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2000
+
2001
+ [[package]]
2002
+ name = "memoffset"
2003
+ version = "0.9.1"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2006
+ dependencies = [
2007
+ "autocfg",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "mime"
2012
+ version = "0.3.17"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2015
+
2016
+ [[package]]
2017
+ name = "mio"
2018
+ version = "1.2.0"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
2021
+ dependencies = [
2022
+ "libc",
2023
+ "wasi",
2024
+ "windows-sys 0.61.2",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "multimap"
2029
+ version = "0.10.1"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
2032
+
2033
+ [[package]]
2034
+ name = "num"
2035
+ version = "0.4.3"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
2038
+ dependencies = [
2039
+ "num-bigint",
2040
+ "num-complex",
2041
+ "num-integer",
2042
+ "num-iter",
2043
+ "num-rational",
2044
+ "num-traits",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "num-bigint"
2049
+ version = "0.4.6"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2052
+ dependencies = [
2053
+ "num-integer",
2054
+ "num-traits",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "num-complex"
2059
+ version = "0.4.6"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2062
+ dependencies = [
2063
+ "num-traits",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "num-conv"
2068
+ version = "0.2.1"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
2071
+
2072
+ [[package]]
2073
+ name = "num-integer"
2074
+ version = "0.1.46"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2077
+ dependencies = [
2078
+ "num-traits",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "num-iter"
2083
+ version = "0.1.45"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2086
+ dependencies = [
2087
+ "autocfg",
2088
+ "num-integer",
2089
+ "num-traits",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "num-rational"
2094
+ version = "0.4.2"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2097
+ dependencies = [
2098
+ "num-bigint",
2099
+ "num-integer",
2100
+ "num-traits",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "num-traits"
2105
+ version = "0.2.19"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2108
+ dependencies = [
2109
+ "autocfg",
2110
+ "libm",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "once_cell"
2115
+ version = "1.21.4"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2118
+
2119
+ [[package]]
2120
+ name = "once_cell_polyfill"
2121
+ version = "1.70.2"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2124
+
2125
+ [[package]]
2126
+ name = "opendal"
2127
+ version = "0.55.0"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "d075ab8a203a6ab4bc1bce0a4b9fe486a72bf8b939037f4b78d95386384bc80a"
2130
+ dependencies = [
2131
+ "anyhow",
2132
+ "backon",
2133
+ "base64 0.22.1",
2134
+ "bytes",
2135
+ "crc32c",
2136
+ "futures",
2137
+ "getrandom 0.2.17",
2138
+ "http",
2139
+ "http-body",
2140
+ "jiff",
2141
+ "log",
2142
+ "md-5",
2143
+ "percent-encoding",
2144
+ "quick-xml 0.38.4",
2145
+ "reqsign",
2146
+ "reqwest",
2147
+ "serde",
2148
+ "serde_json",
2149
+ "tokio",
2150
+ "url",
2151
+ "uuid",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "openssl-probe"
2156
+ version = "0.2.1"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2159
+
2160
+ [[package]]
2161
+ name = "ordered-float"
2162
+ version = "5.3.0"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
2165
+ dependencies = [
2166
+ "num-traits",
2167
+ "rand 0.8.5",
2168
+ "serde",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "ordered-multimap"
2173
+ version = "0.7.3"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
2176
+ dependencies = [
2177
+ "dlv-list",
2178
+ "hashbrown 0.14.5",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "parking_lot"
2183
+ version = "0.12.5"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2186
+ dependencies = [
2187
+ "lock_api",
2188
+ "parking_lot_core",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "parking_lot_core"
2193
+ version = "0.9.12"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2196
+ dependencies = [
2197
+ "cfg-if",
2198
+ "libc",
2199
+ "redox_syscall 0.5.18",
2200
+ "smallvec",
2201
+ "windows-link",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "parse-display"
2206
+ version = "0.9.1"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "914a1c2265c98e2446911282c6ac86d8524f495792c38c5bd884f80499c7538a"
2209
+ dependencies = [
2210
+ "parse-display-derive 0.9.1",
2211
+ "regex",
2212
+ "regex-syntax",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "parse-display"
2217
+ version = "0.10.0"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "287d8d3ebdce117b8539f59411e4ed9ec226e0a4153c7f55495c6070d68e6f72"
2220
+ dependencies = [
2221
+ "parse-display-derive 0.10.0",
2222
+ "regex",
2223
+ "regex-syntax",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "parse-display-derive"
2228
+ version = "0.9.1"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "2ae7800a4c974efd12df917266338e79a7a74415173caf7e70aa0a0707345281"
2231
+ dependencies = [
2232
+ "proc-macro2",
2233
+ "quote",
2234
+ "regex",
2235
+ "regex-syntax",
2236
+ "structmeta",
2237
+ "syn 2.0.117",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "parse-display-derive"
2242
+ version = "0.10.0"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "7fc048687be30d79502dea2f623d052f3a074012c6eac41726b7ab17213616b1"
2245
+ dependencies = [
2246
+ "proc-macro2",
2247
+ "quote",
2248
+ "regex",
2249
+ "regex-syntax",
2250
+ "structmeta",
2251
+ "syn 2.0.117",
2252
+ ]
2253
+
2254
+ [[package]]
2255
+ name = "percent-encoding"
2256
+ version = "2.3.2"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2259
+
2260
+ [[package]]
2261
+ name = "petgraph"
2262
+ version = "0.8.3"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
2265
+ dependencies = [
2266
+ "fixedbitset",
2267
+ "hashbrown 0.15.5",
2268
+ "indexmap 2.13.1",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "pin-project"
2273
+ version = "1.1.11"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
2276
+ dependencies = [
2277
+ "pin-project-internal",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "pin-project-internal"
2282
+ version = "1.1.11"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
2285
+ dependencies = [
2286
+ "proc-macro2",
2287
+ "quote",
2288
+ "syn 2.0.117",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "pin-project-lite"
2293
+ version = "0.2.17"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2296
+
2297
+ [[package]]
2298
+ name = "pkg-config"
2299
+ version = "0.3.32"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2302
+
2303
+ [[package]]
2304
+ name = "plain"
2305
+ version = "0.2.3"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
2308
+
2309
+ [[package]]
2310
+ name = "portable-atomic"
2311
+ version = "1.13.1"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2314
+
2315
+ [[package]]
2316
+ name = "portable-atomic-util"
2317
+ version = "0.2.6"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
2320
+ dependencies = [
2321
+ "portable-atomic",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "potential_utf"
2326
+ version = "0.1.5"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2329
+ dependencies = [
2330
+ "zerovec",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "powerfmt"
2335
+ version = "0.2.0"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2338
+
2339
+ [[package]]
2340
+ name = "ppv-lite86"
2341
+ version = "0.2.21"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2344
+ dependencies = [
2345
+ "zerocopy",
2346
+ ]
2347
+
2348
+ [[package]]
2349
+ name = "prettyplease"
2350
+ version = "0.2.37"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2353
+ dependencies = [
2354
+ "proc-macro2",
2355
+ "syn 2.0.117",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "proc-macro2"
2360
+ version = "1.0.106"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2363
+ dependencies = [
2364
+ "unicode-ident",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "prost"
2369
+ version = "0.14.3"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
2372
+ dependencies = [
2373
+ "bytes",
2374
+ "prost-derive",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "prost-build"
2379
+ version = "0.14.3"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
2382
+ dependencies = [
2383
+ "heck",
2384
+ "itertools",
2385
+ "log",
2386
+ "multimap",
2387
+ "petgraph",
2388
+ "prettyplease",
2389
+ "prost",
2390
+ "prost-types",
2391
+ "regex",
2392
+ "syn 2.0.117",
2393
+ "tempfile",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "prost-derive"
2398
+ version = "0.14.3"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
2401
+ dependencies = [
2402
+ "anyhow",
2403
+ "itertools",
2404
+ "proc-macro2",
2405
+ "quote",
2406
+ "syn 2.0.117",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "prost-types"
2411
+ version = "0.14.3"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
2414
+ dependencies = [
2415
+ "prost",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "pyo3"
2420
+ version = "0.26.0"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
2423
+ dependencies = [
2424
+ "indoc",
2425
+ "libc",
2426
+ "memoffset",
2427
+ "once_cell",
2428
+ "portable-atomic",
2429
+ "pyo3-build-config",
2430
+ "pyo3-ffi",
2431
+ "pyo3-macros",
2432
+ "unindent",
2433
+ ]
2434
+
2435
+ [[package]]
2436
+ name = "pyo3-async-runtimes"
2437
+ version = "0.26.0"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "e6ee6d4cb3e8d5b925f5cdb38da183e0ff18122eb2048d4041c9e7034d026e23"
2440
+ dependencies = [
2441
+ "futures",
2442
+ "once_cell",
2443
+ "pin-project-lite",
2444
+ "pyo3",
2445
+ "tokio",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "pyo3-build-config"
2450
+ version = "0.26.0"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
2453
+ dependencies = [
2454
+ "python3-dll-a",
2455
+ "target-lexicon",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "pyo3-ffi"
2460
+ version = "0.26.0"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
2463
+ dependencies = [
2464
+ "libc",
2465
+ "pyo3-build-config",
2466
+ ]
2467
+
2468
+ [[package]]
2469
+ name = "pyo3-macros"
2470
+ version = "0.26.0"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
2473
+ dependencies = [
2474
+ "proc-macro2",
2475
+ "pyo3-macros-backend",
2476
+ "quote",
2477
+ "syn 2.0.117",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "pyo3-macros-backend"
2482
+ version = "0.26.0"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
2485
+ dependencies = [
2486
+ "heck",
2487
+ "proc-macro2",
2488
+ "pyo3-build-config",
2489
+ "quote",
2490
+ "syn 2.0.117",
2491
+ ]
2492
+
2493
+ [[package]]
2494
+ name = "python3-dll-a"
2495
+ version = "0.2.14"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
2498
+ dependencies = [
2499
+ "cc",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "quick-xml"
2504
+ version = "0.37.5"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2507
+ dependencies = [
2508
+ "memchr",
2509
+ "serde",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "quick-xml"
2514
+ version = "0.38.4"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2517
+ dependencies = [
2518
+ "memchr",
2519
+ "serde",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "quinn"
2524
+ version = "0.11.9"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2527
+ dependencies = [
2528
+ "bytes",
2529
+ "cfg_aliases",
2530
+ "pin-project-lite",
2531
+ "quinn-proto",
2532
+ "quinn-udp",
2533
+ "rustc-hash",
2534
+ "rustls",
2535
+ "socket2",
2536
+ "thiserror 2.0.18",
2537
+ "tokio",
2538
+ "tracing",
2539
+ "web-time",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "quinn-proto"
2544
+ version = "0.11.14"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2547
+ dependencies = [
2548
+ "bytes",
2549
+ "getrandom 0.3.4",
2550
+ "lru-slab",
2551
+ "rand 0.9.2",
2552
+ "ring",
2553
+ "rustc-hash",
2554
+ "rustls",
2555
+ "rustls-pki-types",
2556
+ "slab",
2557
+ "thiserror 2.0.18",
2558
+ "tinyvec",
2559
+ "tracing",
2560
+ "web-time",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "quinn-udp"
2565
+ version = "0.5.14"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2568
+ dependencies = [
2569
+ "cfg_aliases",
2570
+ "libc",
2571
+ "once_cell",
2572
+ "socket2",
2573
+ "tracing",
2574
+ "windows-sys 0.60.2",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "quote"
2579
+ version = "1.0.45"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2582
+ dependencies = [
2583
+ "proc-macro2",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "r-efi"
2588
+ version = "5.3.0"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2591
+
2592
+ [[package]]
2593
+ name = "r-efi"
2594
+ version = "6.0.0"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2597
+
2598
+ [[package]]
2599
+ name = "radium"
2600
+ version = "0.7.0"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2603
+
2604
+ [[package]]
2605
+ name = "rand"
2606
+ version = "0.8.5"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2609
+ dependencies = [
2610
+ "libc",
2611
+ "rand_chacha 0.3.1",
2612
+ "rand_core 0.6.4",
2613
+ "serde",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "rand"
2618
+ version = "0.9.2"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2621
+ dependencies = [
2622
+ "rand_chacha 0.9.0",
2623
+ "rand_core 0.9.5",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "rand_chacha"
2628
+ version = "0.3.1"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2631
+ dependencies = [
2632
+ "ppv-lite86",
2633
+ "rand_core 0.6.4",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "rand_chacha"
2638
+ version = "0.9.0"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2641
+ dependencies = [
2642
+ "ppv-lite86",
2643
+ "rand_core 0.9.5",
2644
+ ]
2645
+
2646
+ [[package]]
2647
+ name = "rand_core"
2648
+ version = "0.6.4"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2651
+ dependencies = [
2652
+ "getrandom 0.2.17",
2653
+ "serde",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "rand_core"
2658
+ version = "0.9.5"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2661
+ dependencies = [
2662
+ "getrandom 0.3.4",
2663
+ ]
2664
+
2665
+ [[package]]
2666
+ name = "redox_syscall"
2667
+ version = "0.5.18"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2670
+ dependencies = [
2671
+ "bitflags",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "redox_syscall"
2676
+ version = "0.7.3"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
2679
+ dependencies = [
2680
+ "bitflags",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "ref-cast"
2685
+ version = "1.0.25"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2688
+ dependencies = [
2689
+ "ref-cast-impl",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "ref-cast-impl"
2694
+ version = "1.0.25"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2697
+ dependencies = [
2698
+ "proc-macro2",
2699
+ "quote",
2700
+ "syn 2.0.117",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "regex"
2705
+ version = "1.12.3"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2708
+ dependencies = [
2709
+ "aho-corasick",
2710
+ "memchr",
2711
+ "regex-automata",
2712
+ "regex-syntax",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "regex-automata"
2717
+ version = "0.4.14"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2720
+ dependencies = [
2721
+ "aho-corasick",
2722
+ "memchr",
2723
+ "regex-syntax",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "regex-syntax"
2728
+ version = "0.8.10"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2731
+
2732
+ [[package]]
2733
+ name = "reqsign"
2734
+ version = "0.16.5"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "43451dbf3590a7590684c25fb8d12ecdcc90ed3ac123433e500447c7d77ed701"
2737
+ dependencies = [
2738
+ "anyhow",
2739
+ "async-trait",
2740
+ "base64 0.22.1",
2741
+ "chrono",
2742
+ "form_urlencoded",
2743
+ "getrandom 0.2.17",
2744
+ "hex",
2745
+ "hmac",
2746
+ "home",
2747
+ "http",
2748
+ "log",
2749
+ "once_cell",
2750
+ "percent-encoding",
2751
+ "quick-xml 0.37.5",
2752
+ "rand 0.8.5",
2753
+ "reqwest",
2754
+ "rust-ini",
2755
+ "serde",
2756
+ "serde_json",
2757
+ "sha1",
2758
+ "sha2",
2759
+ "tokio",
2760
+ ]
2761
+
2762
+ [[package]]
2763
+ name = "reqwest"
2764
+ version = "0.12.28"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2767
+ dependencies = [
2768
+ "base64 0.22.1",
2769
+ "bytes",
2770
+ "futures-core",
2771
+ "futures-util",
2772
+ "http",
2773
+ "http-body",
2774
+ "http-body-util",
2775
+ "hyper",
2776
+ "hyper-rustls",
2777
+ "hyper-util",
2778
+ "js-sys",
2779
+ "log",
2780
+ "percent-encoding",
2781
+ "pin-project-lite",
2782
+ "quinn",
2783
+ "rustls",
2784
+ "rustls-pki-types",
2785
+ "serde",
2786
+ "serde_json",
2787
+ "serde_urlencoded",
2788
+ "sync_wrapper",
2789
+ "tokio",
2790
+ "tokio-rustls",
2791
+ "tokio-util",
2792
+ "tower",
2793
+ "tower-http",
2794
+ "tower-service",
2795
+ "url",
2796
+ "wasm-bindgen",
2797
+ "wasm-bindgen-futures",
2798
+ "wasm-streams",
2799
+ "web-sys",
2800
+ "webpki-roots",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "ring"
2805
+ version = "0.17.14"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2808
+ dependencies = [
2809
+ "cc",
2810
+ "cfg-if",
2811
+ "getrandom 0.2.17",
2812
+ "libc",
2813
+ "untrusted",
2814
+ "windows-sys 0.52.0",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "rust-ini"
2819
+ version = "0.21.3"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7"
2822
+ dependencies = [
2823
+ "cfg-if",
2824
+ "ordered-multimap",
2825
+ ]
2826
+
2827
+ [[package]]
2828
+ name = "rustc-hash"
2829
+ version = "2.1.2"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2832
+
2833
+ [[package]]
2834
+ name = "rustc_version"
2835
+ version = "0.4.1"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2838
+ dependencies = [
2839
+ "semver",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "rustix"
2844
+ version = "1.1.4"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2847
+ dependencies = [
2848
+ "bitflags",
2849
+ "errno",
2850
+ "libc",
2851
+ "linux-raw-sys",
2852
+ "windows-sys 0.61.2",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "rustls"
2857
+ version = "0.23.37"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2860
+ dependencies = [
2861
+ "log",
2862
+ "once_cell",
2863
+ "ring",
2864
+ "rustls-pki-types",
2865
+ "rustls-webpki",
2866
+ "subtle",
2867
+ "zeroize",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "rustls-native-certs"
2872
+ version = "0.8.3"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2875
+ dependencies = [
2876
+ "openssl-probe",
2877
+ "rustls-pki-types",
2878
+ "schannel",
2879
+ "security-framework",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "rustls-pemfile"
2884
+ version = "2.2.0"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2887
+ dependencies = [
2888
+ "rustls-pki-types",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "rustls-pki-types"
2893
+ version = "1.14.0"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2896
+ dependencies = [
2897
+ "web-time",
2898
+ "zeroize",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "rustls-webpki"
2903
+ version = "0.103.10"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
2906
+ dependencies = [
2907
+ "ring",
2908
+ "rustls-pki-types",
2909
+ "untrusted",
2910
+ ]
2911
+
2912
+ [[package]]
2913
+ name = "rustversion"
2914
+ version = "1.0.22"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2917
+
2918
+ [[package]]
2919
+ name = "ryu"
2920
+ version = "1.0.23"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2923
+
2924
+ [[package]]
2925
+ name = "schannel"
2926
+ version = "0.1.29"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2929
+ dependencies = [
2930
+ "windows-sys 0.61.2",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "schemars"
2935
+ version = "0.9.0"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
2938
+ dependencies = [
2939
+ "dyn-clone",
2940
+ "ref-cast",
2941
+ "serde",
2942
+ "serde_json",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "schemars"
2947
+ version = "1.2.1"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2950
+ dependencies = [
2951
+ "dyn-clone",
2952
+ "ref-cast",
2953
+ "serde",
2954
+ "serde_json",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "scopeguard"
2959
+ version = "1.2.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2962
+
2963
+ [[package]]
2964
+ name = "scratch"
2965
+ version = "1.0.9"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2"
2968
+
2969
+ [[package]]
2970
+ name = "security-framework"
2971
+ version = "3.7.0"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2974
+ dependencies = [
2975
+ "bitflags",
2976
+ "core-foundation",
2977
+ "core-foundation-sys",
2978
+ "libc",
2979
+ "security-framework-sys",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "security-framework-sys"
2984
+ version = "2.17.0"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2987
+ dependencies = [
2988
+ "core-foundation-sys",
2989
+ "libc",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "semver"
2994
+ version = "1.0.27"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2997
+
2998
+ [[package]]
2999
+ name = "serde"
3000
+ version = "1.0.228"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3003
+ dependencies = [
3004
+ "serde_core",
3005
+ "serde_derive",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "serde_core"
3010
+ version = "1.0.228"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3013
+ dependencies = [
3014
+ "serde_derive",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "serde_derive"
3019
+ version = "1.0.228"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3022
+ dependencies = [
3023
+ "proc-macro2",
3024
+ "quote",
3025
+ "syn 2.0.117",
3026
+ ]
3027
+
3028
+ [[package]]
3029
+ name = "serde_fmt"
3030
+ version = "1.1.0"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "6e497af288b3b95d067a23a4f749f2861121ffcb2f6d8379310dcda040c345ed"
3033
+ dependencies = [
3034
+ "serde_core",
3035
+ ]
3036
+
3037
+ [[package]]
3038
+ name = "serde_json"
3039
+ version = "1.0.149"
3040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3041
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3042
+ dependencies = [
3043
+ "itoa",
3044
+ "memchr",
3045
+ "serde",
3046
+ "serde_core",
3047
+ "zmij",
3048
+ ]
3049
+
3050
+ [[package]]
3051
+ name = "serde_repr"
3052
+ version = "0.1.20"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
3055
+ dependencies = [
3056
+ "proc-macro2",
3057
+ "quote",
3058
+ "syn 2.0.117",
3059
+ ]
3060
+
3061
+ [[package]]
3062
+ name = "serde_urlencoded"
3063
+ version = "0.7.1"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3066
+ dependencies = [
3067
+ "form_urlencoded",
3068
+ "itoa",
3069
+ "ryu",
3070
+ "serde",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "serde_with"
3075
+ version = "3.18.0"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f"
3078
+ dependencies = [
3079
+ "base64 0.22.1",
3080
+ "chrono",
3081
+ "hex",
3082
+ "indexmap 1.9.3",
3083
+ "indexmap 2.13.1",
3084
+ "schemars 0.9.0",
3085
+ "schemars 1.2.1",
3086
+ "serde_core",
3087
+ "serde_json",
3088
+ "serde_with_macros",
3089
+ "time",
3090
+ ]
3091
+
3092
+ [[package]]
3093
+ name = "serde_with_macros"
3094
+ version = "3.18.0"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65"
3097
+ dependencies = [
3098
+ "darling",
3099
+ "proc-macro2",
3100
+ "quote",
3101
+ "syn 2.0.117",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "sha1"
3106
+ version = "0.10.6"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3109
+ dependencies = [
3110
+ "cfg-if",
3111
+ "cpufeatures",
3112
+ "digest",
3113
+ ]
3114
+
3115
+ [[package]]
3116
+ name = "sha2"
3117
+ version = "0.10.9"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3120
+ dependencies = [
3121
+ "cfg-if",
3122
+ "cpufeatures",
3123
+ "digest",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "shlex"
3128
+ version = "1.3.0"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3131
+
3132
+ [[package]]
3133
+ name = "signal-hook-registry"
3134
+ version = "1.4.8"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3137
+ dependencies = [
3138
+ "errno",
3139
+ "libc",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "simdutf8"
3144
+ version = "0.1.5"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3147
+
3148
+ [[package]]
3149
+ name = "slab"
3150
+ version = "0.4.12"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3153
+
3154
+ [[package]]
3155
+ name = "smallvec"
3156
+ version = "1.15.1"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3159
+
3160
+ [[package]]
3161
+ name = "snafu"
3162
+ version = "0.8.9"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
3165
+ dependencies = [
3166
+ "snafu-derive",
3167
+ ]
3168
+
3169
+ [[package]]
3170
+ name = "snafu-derive"
3171
+ version = "0.8.9"
3172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3173
+ checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
3174
+ dependencies = [
3175
+ "heck",
3176
+ "proc-macro2",
3177
+ "quote",
3178
+ "syn 2.0.117",
3179
+ ]
3180
+
3181
+ [[package]]
3182
+ name = "socket2"
3183
+ version = "0.6.3"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3186
+ dependencies = [
3187
+ "libc",
3188
+ "windows-sys 0.61.2",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "stable_deref_trait"
3193
+ version = "1.2.1"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3196
+
3197
+ [[package]]
3198
+ name = "strsim"
3199
+ version = "0.11.1"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3202
+
3203
+ [[package]]
3204
+ name = "structmeta"
3205
+ version = "0.3.0"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329"
3208
+ dependencies = [
3209
+ "proc-macro2",
3210
+ "quote",
3211
+ "structmeta-derive",
3212
+ "syn 2.0.117",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "structmeta-derive"
3217
+ version = "0.3.0"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc"
3220
+ dependencies = [
3221
+ "proc-macro2",
3222
+ "quote",
3223
+ "syn 2.0.117",
3224
+ ]
3225
+
3226
+ [[package]]
3227
+ name = "strum"
3228
+ version = "0.26.3"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3231
+
3232
+ [[package]]
3233
+ name = "strum_macros"
3234
+ version = "0.26.4"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3237
+ dependencies = [
3238
+ "heck",
3239
+ "proc-macro2",
3240
+ "quote",
3241
+ "rustversion",
3242
+ "syn 2.0.117",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "subtle"
3247
+ version = "2.6.1"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3250
+
3251
+ [[package]]
3252
+ name = "sval"
3253
+ version = "2.18.0"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "2eb9318255ebd817902d7e279d8f8e39b35b1b9954decd5eb9ea0e30e5fd2b6a"
3256
+
3257
+ [[package]]
3258
+ name = "sval_buffer"
3259
+ version = "2.18.0"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "12571299185e653fdb0fbfe36cd7f6529d39d4e747a60b15a3f34574b7b97c61"
3262
+ dependencies = [
3263
+ "sval",
3264
+ "sval_ref",
3265
+ ]
3266
+
3267
+ [[package]]
3268
+ name = "sval_dynamic"
3269
+ version = "2.18.0"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "39526f24e997706c0de7f03fb7371f7f5638b66a504ded508e20ad173d0a3677"
3272
+ dependencies = [
3273
+ "sval",
3274
+ ]
3275
+
3276
+ [[package]]
3277
+ name = "sval_fmt"
3278
+ version = "2.18.0"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "933dd3bb26965d682280fcc49400ac2a05036f4ee1e6dbd61bf8402d5a5c3a54"
3281
+ dependencies = [
3282
+ "itoa",
3283
+ "ryu",
3284
+ "sval",
3285
+ ]
3286
+
3287
+ [[package]]
3288
+ name = "sval_json"
3289
+ version = "2.18.0"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "a0cda08f6d5c9948024a6551077557b1fdcc3880ff2f20ae839667d2ec2d87ed"
3292
+ dependencies = [
3293
+ "itoa",
3294
+ "ryu",
3295
+ "sval",
3296
+ ]
3297
+
3298
+ [[package]]
3299
+ name = "sval_nested"
3300
+ version = "2.18.0"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "88d49d5e6c1f9fd0e53515819b03a97ca4eb1bff5c8ee097c43391c09ecfb19f"
3303
+ dependencies = [
3304
+ "sval",
3305
+ "sval_buffer",
3306
+ "sval_ref",
3307
+ ]
3308
+
3309
+ [[package]]
3310
+ name = "sval_ref"
3311
+ version = "2.18.0"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "14f876c5a78405375b4e19cbb9554407513b59c93dea12dc6a4af4e1d30899ca"
3314
+ dependencies = [
3315
+ "sval",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "sval_serde"
3320
+ version = "2.18.0"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "5f9ccd3b7f7200239a655e517dd3fd48d960b9111ad24bd6a5e055bef17607c7"
3323
+ dependencies = [
3324
+ "serde_core",
3325
+ "sval",
3326
+ "sval_nested",
3327
+ ]
3328
+
3329
+ [[package]]
3330
+ name = "syn"
3331
+ version = "1.0.109"
3332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3333
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3334
+ dependencies = [
3335
+ "proc-macro2",
3336
+ "quote",
3337
+ "unicode-ident",
3338
+ ]
3339
+
3340
+ [[package]]
3341
+ name = "syn"
3342
+ version = "2.0.117"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3345
+ dependencies = [
3346
+ "proc-macro2",
3347
+ "quote",
3348
+ "unicode-ident",
3349
+ ]
3350
+
3351
+ [[package]]
3352
+ name = "sync_wrapper"
3353
+ version = "1.0.2"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3356
+ dependencies = [
3357
+ "futures-core",
3358
+ ]
3359
+
3360
+ [[package]]
3361
+ name = "synstructure"
3362
+ version = "0.13.2"
3363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3364
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3365
+ dependencies = [
3366
+ "proc-macro2",
3367
+ "quote",
3368
+ "syn 2.0.117",
3369
+ ]
3370
+
3371
+ [[package]]
3372
+ name = "tap"
3373
+ version = "1.0.1"
3374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3375
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3376
+
3377
+ [[package]]
3378
+ name = "target-lexicon"
3379
+ version = "0.13.5"
3380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3381
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3382
+
3383
+ [[package]]
3384
+ name = "tempfile"
3385
+ version = "3.27.0"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3388
+ dependencies = [
3389
+ "fastrand",
3390
+ "getrandom 0.4.2",
3391
+ "once_cell",
3392
+ "rustix",
3393
+ "windows-sys 0.61.2",
3394
+ ]
3395
+
3396
+ [[package]]
3397
+ name = "termcolor"
3398
+ version = "1.4.1"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3401
+ dependencies = [
3402
+ "winapi-util",
3403
+ ]
3404
+
3405
+ [[package]]
3406
+ name = "test-env-helpers"
3407
+ version = "0.2.2"
3408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3409
+ checksum = "c6ab8f4822c904dadef9dd99f228f58a10d1b2c6ece06b108257e72fea72b1c6"
3410
+ dependencies = [
3411
+ "quote",
3412
+ "syn 1.0.109",
3413
+ ]
3414
+
3415
+ [[package]]
3416
+ name = "testcontainers"
3417
+ version = "0.25.2"
3418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3419
+ checksum = "3f3ac71069f20ecfa60c396316c283fbf35e6833a53dff551a31b5458da05edc"
3420
+ dependencies = [
3421
+ "astral-tokio-tar",
3422
+ "async-trait",
3423
+ "bollard",
3424
+ "bytes",
3425
+ "docker_credential",
3426
+ "either",
3427
+ "etcetera",
3428
+ "futures",
3429
+ "log",
3430
+ "memchr",
3431
+ "parse-display 0.9.1",
3432
+ "pin-project-lite",
3433
+ "serde",
3434
+ "serde_json",
3435
+ "serde_with",
3436
+ "thiserror 2.0.18",
3437
+ "tokio",
3438
+ "tokio-stream",
3439
+ "tokio-util",
3440
+ "ulid",
3441
+ "url",
3442
+ ]
3443
+
3444
+ [[package]]
3445
+ name = "thiserror"
3446
+ version = "1.0.69"
3447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3448
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3449
+ dependencies = [
3450
+ "thiserror-impl 1.0.69",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "thiserror"
3455
+ version = "2.0.18"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3458
+ dependencies = [
3459
+ "thiserror-impl 2.0.18",
3460
+ ]
3461
+
3462
+ [[package]]
3463
+ name = "thiserror-impl"
3464
+ version = "1.0.69"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3467
+ dependencies = [
3468
+ "proc-macro2",
3469
+ "quote",
3470
+ "syn 2.0.117",
3471
+ ]
3472
+
3473
+ [[package]]
3474
+ name = "thiserror-impl"
3475
+ version = "2.0.18"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3478
+ dependencies = [
3479
+ "proc-macro2",
3480
+ "quote",
3481
+ "syn 2.0.117",
3482
+ ]
3483
+
3484
+ [[package]]
3485
+ name = "tikv-jemalloc-sys"
3486
+ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3488
+ checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
3489
+ dependencies = [
3490
+ "cc",
3491
+ "libc",
3492
+ ]
3493
+
3494
+ [[package]]
3495
+ name = "tikv-jemallocator"
3496
+ version = "0.6.1"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
3499
+ dependencies = [
3500
+ "libc",
3501
+ "tikv-jemalloc-sys",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "time"
3506
+ version = "0.3.47"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3509
+ dependencies = [
3510
+ "deranged",
3511
+ "itoa",
3512
+ "num-conv",
3513
+ "powerfmt",
3514
+ "serde_core",
3515
+ "time-core",
3516
+ "time-macros",
3517
+ ]
3518
+
3519
+ [[package]]
3520
+ name = "time-core"
3521
+ version = "0.1.8"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3524
+
3525
+ [[package]]
3526
+ name = "time-macros"
3527
+ version = "0.2.27"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3530
+ dependencies = [
3531
+ "num-conv",
3532
+ "time-core",
3533
+ ]
3534
+
3535
+ [[package]]
3536
+ name = "tiny-keccak"
3537
+ version = "2.0.2"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3540
+ dependencies = [
3541
+ "crunchy",
3542
+ ]
3543
+
3544
+ [[package]]
3545
+ name = "tinystr"
3546
+ version = "0.8.3"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3549
+ dependencies = [
3550
+ "displaydoc",
3551
+ "zerovec",
3552
+ ]
3553
+
3554
+ [[package]]
3555
+ name = "tinyvec"
3556
+ version = "1.11.0"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3559
+ dependencies = [
3560
+ "tinyvec_macros",
3561
+ ]
3562
+
3563
+ [[package]]
3564
+ name = "tinyvec_macros"
3565
+ version = "0.1.1"
3566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3567
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3568
+
3569
+ [[package]]
3570
+ name = "tokio"
3571
+ version = "1.50.0"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
3574
+ dependencies = [
3575
+ "bytes",
3576
+ "libc",
3577
+ "mio",
3578
+ "parking_lot",
3579
+ "pin-project-lite",
3580
+ "signal-hook-registry",
3581
+ "socket2",
3582
+ "tokio-macros",
3583
+ "windows-sys 0.61.2",
3584
+ ]
3585
+
3586
+ [[package]]
3587
+ name = "tokio-macros"
3588
+ version = "2.6.1"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
3591
+ dependencies = [
3592
+ "proc-macro2",
3593
+ "quote",
3594
+ "syn 2.0.117",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "tokio-rustls"
3599
+ version = "0.26.4"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3602
+ dependencies = [
3603
+ "rustls",
3604
+ "tokio",
3605
+ ]
3606
+
3607
+ [[package]]
3608
+ name = "tokio-stream"
3609
+ version = "0.1.18"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3612
+ dependencies = [
3613
+ "futures-core",
3614
+ "pin-project-lite",
3615
+ "tokio",
3616
+ ]
3617
+
3618
+ [[package]]
3619
+ name = "tokio-util"
3620
+ version = "0.7.18"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3623
+ dependencies = [
3624
+ "bytes",
3625
+ "futures-core",
3626
+ "futures-sink",
3627
+ "pin-project-lite",
3628
+ "tokio",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "tonic"
3633
+ version = "0.14.5"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec"
3636
+ dependencies = [
3637
+ "async-trait",
3638
+ "axum",
3639
+ "base64 0.22.1",
3640
+ "bytes",
3641
+ "h2",
3642
+ "http",
3643
+ "http-body",
3644
+ "http-body-util",
3645
+ "hyper",
3646
+ "hyper-timeout",
3647
+ "hyper-util",
3648
+ "percent-encoding",
3649
+ "pin-project",
3650
+ "socket2",
3651
+ "sync_wrapper",
3652
+ "tokio",
3653
+ "tokio-stream",
3654
+ "tower",
3655
+ "tower-layer",
3656
+ "tower-service",
3657
+ "tracing",
3658
+ ]
3659
+
3660
+ [[package]]
3661
+ name = "tonic-prost"
3662
+ version = "0.14.5"
3663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3664
+ checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309"
3665
+ dependencies = [
3666
+ "bytes",
3667
+ "prost",
3668
+ "tonic",
3669
+ ]
3670
+
3671
+ [[package]]
3672
+ name = "tower"
3673
+ version = "0.5.3"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3676
+ dependencies = [
3677
+ "futures-core",
3678
+ "futures-util",
3679
+ "indexmap 2.13.1",
3680
+ "pin-project-lite",
3681
+ "slab",
3682
+ "sync_wrapper",
3683
+ "tokio",
3684
+ "tokio-util",
3685
+ "tower-layer",
3686
+ "tower-service",
3687
+ "tracing",
3688
+ ]
3689
+
3690
+ [[package]]
3691
+ name = "tower-http"
3692
+ version = "0.6.8"
3693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3694
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3695
+ dependencies = [
3696
+ "bitflags",
3697
+ "bytes",
3698
+ "futures-util",
3699
+ "http",
3700
+ "http-body",
3701
+ "iri-string",
3702
+ "pin-project-lite",
3703
+ "tower",
3704
+ "tower-layer",
3705
+ "tower-service",
3706
+ ]
3707
+
3708
+ [[package]]
3709
+ name = "tower-layer"
3710
+ version = "0.3.3"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3713
+
3714
+ [[package]]
3715
+ name = "tower-service"
3716
+ version = "0.3.3"
3717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3718
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3719
+
3720
+ [[package]]
3721
+ name = "tracing"
3722
+ version = "0.1.44"
3723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3724
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3725
+ dependencies = [
3726
+ "pin-project-lite",
3727
+ "tracing-attributes",
3728
+ "tracing-core",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "tracing-attributes"
3733
+ version = "0.1.31"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3736
+ dependencies = [
3737
+ "proc-macro2",
3738
+ "quote",
3739
+ "syn 2.0.117",
3740
+ ]
3741
+
3742
+ [[package]]
3743
+ name = "tracing-core"
3744
+ version = "0.1.36"
3745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3746
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3747
+ dependencies = [
3748
+ "once_cell",
3749
+ ]
3750
+
3751
+ [[package]]
3752
+ name = "try-lock"
3753
+ version = "0.2.5"
3754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3755
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3756
+
3757
+ [[package]]
3758
+ name = "twox-hash"
3759
+ version = "2.1.2"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3762
+
3763
+ [[package]]
3764
+ name = "typeid"
3765
+ version = "1.0.3"
3766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3767
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3768
+
3769
+ [[package]]
3770
+ name = "typenum"
3771
+ version = "1.19.0"
3772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3773
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3774
+
3775
+ [[package]]
3776
+ name = "ulid"
3777
+ version = "1.2.1"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe"
3780
+ dependencies = [
3781
+ "rand 0.9.2",
3782
+ "web-time",
3783
+ ]
3784
+
3785
+ [[package]]
3786
+ name = "unicode-ident"
3787
+ version = "1.0.24"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3790
+
3791
+ [[package]]
3792
+ name = "unicode-width"
3793
+ version = "0.2.2"
3794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3795
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3796
+
3797
+ [[package]]
3798
+ name = "unicode-xid"
3799
+ version = "0.2.6"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3802
+
3803
+ [[package]]
3804
+ name = "unindent"
3805
+ version = "0.2.4"
3806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3807
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3808
+
3809
+ [[package]]
3810
+ name = "untrusted"
3811
+ version = "0.9.0"
3812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3813
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3814
+
3815
+ [[package]]
3816
+ name = "ureq"
3817
+ version = "3.3.0"
3818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3819
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
3820
+ dependencies = [
3821
+ "base64 0.22.1",
3822
+ "log",
3823
+ "percent-encoding",
3824
+ "rustls",
3825
+ "rustls-pki-types",
3826
+ "ureq-proto",
3827
+ "utf8-zero",
3828
+ ]
3829
+
3830
+ [[package]]
3831
+ name = "ureq-proto"
3832
+ version = "0.6.0"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
3835
+ dependencies = [
3836
+ "base64 0.22.1",
3837
+ "http",
3838
+ "httparse",
3839
+ "log",
3840
+ ]
3841
+
3842
+ [[package]]
3843
+ name = "url"
3844
+ version = "2.5.8"
3845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3846
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3847
+ dependencies = [
3848
+ "form_urlencoded",
3849
+ "idna",
3850
+ "percent-encoding",
3851
+ "serde",
3852
+ "serde_derive",
3853
+ ]
3854
+
3855
+ [[package]]
3856
+ name = "utf8-zero"
3857
+ version = "0.8.1"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
3860
+
3861
+ [[package]]
3862
+ name = "utf8_iter"
3863
+ version = "1.0.4"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3866
+
3867
+ [[package]]
3868
+ name = "utf8parse"
3869
+ version = "0.2.2"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3872
+
3873
+ [[package]]
3874
+ name = "uuid"
3875
+ version = "1.23.0"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
3878
+ dependencies = [
3879
+ "getrandom 0.4.2",
3880
+ "js-sys",
3881
+ "serde_core",
3882
+ "wasm-bindgen",
3883
+ ]
3884
+
3885
+ [[package]]
3886
+ name = "value-bag"
3887
+ version = "1.12.0"
3888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3889
+ checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0"
3890
+ dependencies = [
3891
+ "value-bag-serde1",
3892
+ "value-bag-sval2",
3893
+ ]
3894
+
3895
+ [[package]]
3896
+ name = "value-bag-serde1"
3897
+ version = "1.12.0"
3898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3899
+ checksum = "16530907bfe2999a1773ca5900a65101e092c70f642f25cc23ca0c43573262c5"
3900
+ dependencies = [
3901
+ "erased-serde",
3902
+ "serde_core",
3903
+ "serde_fmt",
3904
+ ]
3905
+
3906
+ [[package]]
3907
+ name = "value-bag-sval2"
3908
+ version = "1.12.0"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "d00ae130edd690eaa877e4f40605d534790d1cf1d651e7685bd6a144521b251f"
3911
+ dependencies = [
3912
+ "sval",
3913
+ "sval_buffer",
3914
+ "sval_dynamic",
3915
+ "sval_fmt",
3916
+ "sval_json",
3917
+ "sval_ref",
3918
+ "sval_serde",
3919
+ ]
3920
+
3921
+ [[package]]
3922
+ name = "version_check"
3923
+ version = "0.9.5"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3926
+
3927
+ [[package]]
3928
+ name = "want"
3929
+ version = "0.3.1"
3930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3931
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3932
+ dependencies = [
3933
+ "try-lock",
3934
+ ]
3935
+
3936
+ [[package]]
3937
+ name = "wasi"
3938
+ version = "0.11.1+wasi-snapshot-preview1"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3941
+
3942
+ [[package]]
3943
+ name = "wasip2"
3944
+ version = "1.0.2+wasi-0.2.9"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3947
+ dependencies = [
3948
+ "wit-bindgen",
3949
+ ]
3950
+
3951
+ [[package]]
3952
+ name = "wasip3"
3953
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3955
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3956
+ dependencies = [
3957
+ "wit-bindgen",
3958
+ ]
3959
+
3960
+ [[package]]
3961
+ name = "wasm-bindgen"
3962
+ version = "0.2.117"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
3965
+ dependencies = [
3966
+ "cfg-if",
3967
+ "once_cell",
3968
+ "rustversion",
3969
+ "wasm-bindgen-macro",
3970
+ "wasm-bindgen-shared",
3971
+ ]
3972
+
3973
+ [[package]]
3974
+ name = "wasm-bindgen-futures"
3975
+ version = "0.4.67"
3976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3977
+ checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
3978
+ dependencies = [
3979
+ "js-sys",
3980
+ "wasm-bindgen",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "wasm-bindgen-macro"
3985
+ version = "0.2.117"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
3988
+ dependencies = [
3989
+ "quote",
3990
+ "wasm-bindgen-macro-support",
3991
+ ]
3992
+
3993
+ [[package]]
3994
+ name = "wasm-bindgen-macro-support"
3995
+ version = "0.2.117"
3996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3997
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
3998
+ dependencies = [
3999
+ "bumpalo",
4000
+ "proc-macro2",
4001
+ "quote",
4002
+ "syn 2.0.117",
4003
+ "wasm-bindgen-shared",
4004
+ ]
4005
+
4006
+ [[package]]
4007
+ name = "wasm-bindgen-shared"
4008
+ version = "0.2.117"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
4011
+ dependencies = [
4012
+ "unicode-ident",
4013
+ ]
4014
+
4015
+ [[package]]
4016
+ name = "wasm-encoder"
4017
+ version = "0.244.0"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4020
+ dependencies = [
4021
+ "leb128fmt",
4022
+ "wasmparser",
4023
+ ]
4024
+
4025
+ [[package]]
4026
+ name = "wasm-metadata"
4027
+ version = "0.244.0"
4028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4029
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4030
+ dependencies = [
4031
+ "anyhow",
4032
+ "indexmap 2.13.1",
4033
+ "wasm-encoder",
4034
+ "wasmparser",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "wasm-streams"
4039
+ version = "0.4.2"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4042
+ dependencies = [
4043
+ "futures-util",
4044
+ "js-sys",
4045
+ "wasm-bindgen",
4046
+ "wasm-bindgen-futures",
4047
+ "web-sys",
4048
+ ]
4049
+
4050
+ [[package]]
4051
+ name = "wasmparser"
4052
+ version = "0.244.0"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4055
+ dependencies = [
4056
+ "bitflags",
4057
+ "hashbrown 0.15.5",
4058
+ "indexmap 2.13.1",
4059
+ "semver",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "web-sys"
4064
+ version = "0.3.94"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
4067
+ dependencies = [
4068
+ "js-sys",
4069
+ "wasm-bindgen",
4070
+ ]
4071
+
4072
+ [[package]]
4073
+ name = "web-time"
4074
+ version = "1.1.0"
4075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4076
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4077
+ dependencies = [
4078
+ "js-sys",
4079
+ "wasm-bindgen",
4080
+ ]
4081
+
4082
+ [[package]]
4083
+ name = "webpki-roots"
4084
+ version = "1.0.6"
4085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4086
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
4087
+ dependencies = [
4088
+ "rustls-pki-types",
4089
+ ]
4090
+
4091
+ [[package]]
4092
+ name = "winapi"
4093
+ version = "0.3.9"
4094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4095
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4096
+ dependencies = [
4097
+ "winapi-i686-pc-windows-gnu",
4098
+ "winapi-x86_64-pc-windows-gnu",
4099
+ ]
4100
+
4101
+ [[package]]
4102
+ name = "winapi-i686-pc-windows-gnu"
4103
+ version = "0.4.0"
4104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4105
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4106
+
4107
+ [[package]]
4108
+ name = "winapi-util"
4109
+ version = "0.1.11"
4110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4111
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4112
+ dependencies = [
4113
+ "windows-sys 0.61.2",
4114
+ ]
4115
+
4116
+ [[package]]
4117
+ name = "winapi-x86_64-pc-windows-gnu"
4118
+ version = "0.4.0"
4119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4120
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4121
+
4122
+ [[package]]
4123
+ name = "windows-core"
4124
+ version = "0.62.2"
4125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4126
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4127
+ dependencies = [
4128
+ "windows-implement",
4129
+ "windows-interface",
4130
+ "windows-link",
4131
+ "windows-result",
4132
+ "windows-strings",
4133
+ ]
4134
+
4135
+ [[package]]
4136
+ name = "windows-implement"
4137
+ version = "0.60.2"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4140
+ dependencies = [
4141
+ "proc-macro2",
4142
+ "quote",
4143
+ "syn 2.0.117",
4144
+ ]
4145
+
4146
+ [[package]]
4147
+ name = "windows-interface"
4148
+ version = "0.59.3"
4149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4150
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4151
+ dependencies = [
4152
+ "proc-macro2",
4153
+ "quote",
4154
+ "syn 2.0.117",
4155
+ ]
4156
+
4157
+ [[package]]
4158
+ name = "windows-link"
4159
+ version = "0.2.1"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4162
+
4163
+ [[package]]
4164
+ name = "windows-result"
4165
+ version = "0.4.1"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4168
+ dependencies = [
4169
+ "windows-link",
4170
+ ]
4171
+
4172
+ [[package]]
4173
+ name = "windows-strings"
4174
+ version = "0.5.1"
4175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4176
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4177
+ dependencies = [
4178
+ "windows-link",
4179
+ ]
4180
+
4181
+ [[package]]
4182
+ name = "windows-sys"
4183
+ version = "0.52.0"
4184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4185
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4186
+ dependencies = [
4187
+ "windows-targets 0.52.6",
4188
+ ]
4189
+
4190
+ [[package]]
4191
+ name = "windows-sys"
4192
+ version = "0.59.0"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4195
+ dependencies = [
4196
+ "windows-targets 0.52.6",
4197
+ ]
4198
+
4199
+ [[package]]
4200
+ name = "windows-sys"
4201
+ version = "0.60.2"
4202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4203
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4204
+ dependencies = [
4205
+ "windows-targets 0.53.5",
4206
+ ]
4207
+
4208
+ [[package]]
4209
+ name = "windows-sys"
4210
+ version = "0.61.2"
4211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4212
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4213
+ dependencies = [
4214
+ "windows-link",
4215
+ ]
4216
+
4217
+ [[package]]
4218
+ name = "windows-targets"
4219
+ version = "0.52.6"
4220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4221
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4222
+ dependencies = [
4223
+ "windows_aarch64_gnullvm 0.52.6",
4224
+ "windows_aarch64_msvc 0.52.6",
4225
+ "windows_i686_gnu 0.52.6",
4226
+ "windows_i686_gnullvm 0.52.6",
4227
+ "windows_i686_msvc 0.52.6",
4228
+ "windows_x86_64_gnu 0.52.6",
4229
+ "windows_x86_64_gnullvm 0.52.6",
4230
+ "windows_x86_64_msvc 0.52.6",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "windows-targets"
4235
+ version = "0.53.5"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4238
+ dependencies = [
4239
+ "windows-link",
4240
+ "windows_aarch64_gnullvm 0.53.1",
4241
+ "windows_aarch64_msvc 0.53.1",
4242
+ "windows_i686_gnu 0.53.1",
4243
+ "windows_i686_gnullvm 0.53.1",
4244
+ "windows_i686_msvc 0.53.1",
4245
+ "windows_x86_64_gnu 0.53.1",
4246
+ "windows_x86_64_gnullvm 0.53.1",
4247
+ "windows_x86_64_msvc 0.53.1",
4248
+ ]
4249
+
4250
+ [[package]]
4251
+ name = "windows_aarch64_gnullvm"
4252
+ version = "0.52.6"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4255
+
4256
+ [[package]]
4257
+ name = "windows_aarch64_gnullvm"
4258
+ version = "0.53.1"
4259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4260
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4261
+
4262
+ [[package]]
4263
+ name = "windows_aarch64_msvc"
4264
+ version = "0.52.6"
4265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4266
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4267
+
4268
+ [[package]]
4269
+ name = "windows_aarch64_msvc"
4270
+ version = "0.53.1"
4271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4272
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4273
+
4274
+ [[package]]
4275
+ name = "windows_i686_gnu"
4276
+ version = "0.52.6"
4277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4278
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4279
+
4280
+ [[package]]
4281
+ name = "windows_i686_gnu"
4282
+ version = "0.53.1"
4283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4284
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4285
+
4286
+ [[package]]
4287
+ name = "windows_i686_gnullvm"
4288
+ version = "0.52.6"
4289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4290
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4291
+
4292
+ [[package]]
4293
+ name = "windows_i686_gnullvm"
4294
+ version = "0.53.1"
4295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4296
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4297
+
4298
+ [[package]]
4299
+ name = "windows_i686_msvc"
4300
+ version = "0.52.6"
4301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4302
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4303
+
4304
+ [[package]]
4305
+ name = "windows_i686_msvc"
4306
+ version = "0.53.1"
4307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4308
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4309
+
4310
+ [[package]]
4311
+ name = "windows_x86_64_gnu"
4312
+ version = "0.52.6"
4313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4314
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4315
+
4316
+ [[package]]
4317
+ name = "windows_x86_64_gnu"
4318
+ version = "0.53.1"
4319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4320
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4321
+
4322
+ [[package]]
4323
+ name = "windows_x86_64_gnullvm"
4324
+ version = "0.52.6"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4327
+
4328
+ [[package]]
4329
+ name = "windows_x86_64_gnullvm"
4330
+ version = "0.53.1"
4331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4332
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4333
+
4334
+ [[package]]
4335
+ name = "windows_x86_64_msvc"
4336
+ version = "0.52.6"
4337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4338
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4339
+
4340
+ [[package]]
4341
+ name = "windows_x86_64_msvc"
4342
+ version = "0.53.1"
4343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4344
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4345
+
4346
+ [[package]]
4347
+ name = "wit-bindgen"
4348
+ version = "0.51.0"
4349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4350
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4351
+ dependencies = [
4352
+ "wit-bindgen-rust-macro",
4353
+ ]
4354
+
4355
+ [[package]]
4356
+ name = "wit-bindgen-core"
4357
+ version = "0.51.0"
4358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4359
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4360
+ dependencies = [
4361
+ "anyhow",
4362
+ "heck",
4363
+ "wit-parser",
4364
+ ]
4365
+
4366
+ [[package]]
4367
+ name = "wit-bindgen-rust"
4368
+ version = "0.51.0"
4369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4370
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4371
+ dependencies = [
4372
+ "anyhow",
4373
+ "heck",
4374
+ "indexmap 2.13.1",
4375
+ "prettyplease",
4376
+ "syn 2.0.117",
4377
+ "wasm-metadata",
4378
+ "wit-bindgen-core",
4379
+ "wit-component",
4380
+ ]
4381
+
4382
+ [[package]]
4383
+ name = "wit-bindgen-rust-macro"
4384
+ version = "0.51.0"
4385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4386
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4387
+ dependencies = [
4388
+ "anyhow",
4389
+ "prettyplease",
4390
+ "proc-macro2",
4391
+ "quote",
4392
+ "syn 2.0.117",
4393
+ "wit-bindgen-core",
4394
+ "wit-bindgen-rust",
4395
+ ]
4396
+
4397
+ [[package]]
4398
+ name = "wit-component"
4399
+ version = "0.244.0"
4400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4401
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4402
+ dependencies = [
4403
+ "anyhow",
4404
+ "bitflags",
4405
+ "indexmap 2.13.1",
4406
+ "log",
4407
+ "serde",
4408
+ "serde_derive",
4409
+ "serde_json",
4410
+ "wasm-encoder",
4411
+ "wasm-metadata",
4412
+ "wasmparser",
4413
+ "wit-parser",
4414
+ ]
4415
+
4416
+ [[package]]
4417
+ name = "wit-parser"
4418
+ version = "0.244.0"
4419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4420
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4421
+ dependencies = [
4422
+ "anyhow",
4423
+ "id-arena",
4424
+ "indexmap 2.13.1",
4425
+ "log",
4426
+ "semver",
4427
+ "serde",
4428
+ "serde_derive",
4429
+ "serde_json",
4430
+ "unicode-xid",
4431
+ "wasmparser",
4432
+ ]
4433
+
4434
+ [[package]]
4435
+ name = "writeable"
4436
+ version = "0.6.3"
4437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4438
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4439
+
4440
+ [[package]]
4441
+ name = "wyz"
4442
+ version = "0.5.1"
4443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4444
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4445
+ dependencies = [
4446
+ "tap",
4447
+ ]
4448
+
4449
+ [[package]]
4450
+ name = "xattr"
4451
+ version = "1.6.1"
4452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4453
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
4454
+ dependencies = [
4455
+ "libc",
4456
+ "rustix",
4457
+ ]
4458
+
4459
+ [[package]]
4460
+ name = "yoke"
4461
+ version = "0.8.2"
4462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4463
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4464
+ dependencies = [
4465
+ "stable_deref_trait",
4466
+ "yoke-derive",
4467
+ "zerofrom",
4468
+ ]
4469
+
4470
+ [[package]]
4471
+ name = "yoke-derive"
4472
+ version = "0.8.2"
4473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4474
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4475
+ dependencies = [
4476
+ "proc-macro2",
4477
+ "quote",
4478
+ "syn 2.0.117",
4479
+ "synstructure",
4480
+ ]
4481
+
4482
+ [[package]]
4483
+ name = "zerocopy"
4484
+ version = "0.8.48"
4485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4486
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
4487
+ dependencies = [
4488
+ "zerocopy-derive",
4489
+ ]
4490
+
4491
+ [[package]]
4492
+ name = "zerocopy-derive"
4493
+ version = "0.8.48"
4494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4495
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
4496
+ dependencies = [
4497
+ "proc-macro2",
4498
+ "quote",
4499
+ "syn 2.0.117",
4500
+ ]
4501
+
4502
+ [[package]]
4503
+ name = "zerofrom"
4504
+ version = "0.1.7"
4505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4506
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
4507
+ dependencies = [
4508
+ "zerofrom-derive",
4509
+ ]
4510
+
4511
+ [[package]]
4512
+ name = "zerofrom-derive"
4513
+ version = "0.1.7"
4514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4515
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4516
+ dependencies = [
4517
+ "proc-macro2",
4518
+ "quote",
4519
+ "syn 2.0.117",
4520
+ "synstructure",
4521
+ ]
4522
+
4523
+ [[package]]
4524
+ name = "zeroize"
4525
+ version = "1.8.2"
4526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4527
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4528
+
4529
+ [[package]]
4530
+ name = "zerotrie"
4531
+ version = "0.2.4"
4532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4533
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4534
+ dependencies = [
4535
+ "displaydoc",
4536
+ "yoke",
4537
+ "zerofrom",
4538
+ ]
4539
+
4540
+ [[package]]
4541
+ name = "zerovec"
4542
+ version = "0.11.6"
4543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4544
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4545
+ dependencies = [
4546
+ "yoke",
4547
+ "zerofrom",
4548
+ "zerovec-derive",
4549
+ ]
4550
+
4551
+ [[package]]
4552
+ name = "zerovec-derive"
4553
+ version = "0.11.3"
4554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4555
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4556
+ dependencies = [
4557
+ "proc-macro2",
4558
+ "quote",
4559
+ "syn 2.0.117",
4560
+ ]
4561
+
4562
+ [[package]]
4563
+ name = "zmij"
4564
+ version = "1.0.21"
4565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4566
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4567
+
4568
+ [[package]]
4569
+ name = "zstd"
4570
+ version = "0.13.3"
4571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4572
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4573
+ dependencies = [
4574
+ "zstd-safe",
4575
+ ]
4576
+
4577
+ [[package]]
4578
+ name = "zstd-safe"
4579
+ version = "7.2.4"
4580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4581
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4582
+ dependencies = [
4583
+ "zstd-sys",
4584
+ ]
4585
+
4586
+ [[package]]
4587
+ name = "zstd-sys"
4588
+ version = "2.0.16+zstd.1.5.7"
4589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4590
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4591
+ dependencies = [
4592
+ "cc",
4593
+ "pkg-config",
4594
+ ]