ducklake-sdk 0.0.3__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 (171) hide show
  1. ducklake_sdk-0.0.3/Cargo.lock +4180 -0
  2. ducklake_sdk-0.0.3/Cargo.toml +41 -0
  3. ducklake_sdk-0.0.3/PKG-INFO +196 -0
  4. ducklake_sdk-0.0.3/README.md +170 -0
  5. ducklake_sdk-0.0.3/crates/ducklake/Cargo.toml +53 -0
  6. ducklake_sdk-0.0.3/crates/ducklake/README.md +59 -0
  7. ducklake_sdk-0.0.3/crates/ducklake/src/caches/catalog.rs +39 -0
  8. ducklake_sdk-0.0.3/crates/ducklake/src/caches/metadata.rs +361 -0
  9. ducklake_sdk-0.0.3/crates/ducklake/src/caches/mod.rs +8 -0
  10. ducklake_sdk-0.0.3/crates/ducklake/src/caches/snapshot.rs +240 -0
  11. ducklake_sdk-0.0.3/crates/ducklake/src/caches/table_stats.rs +339 -0
  12. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/AGENTS.md +56 -0
  13. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/load.rs +227 -0
  14. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/mod.rs +931 -0
  15. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/refs.rs +50 -0
  16. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/typedefs/columns.rs +857 -0
  17. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/typedefs/mod.rs +32 -0
  18. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/typedefs/partition.rs +91 -0
  19. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/typedefs/schema.rs +22 -0
  20. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/typedefs/state.rs +23 -0
  21. ducklake_sdk-0.0.3/crates/ducklake/src/catalog/typedefs/table.rs +36 -0
  22. ducklake_sdk-0.0.3/crates/ducklake/src/db/AGENTS.md +63 -0
  23. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/decoding/factory.rs +63 -0
  24. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/decoding/mod.rs +60 -0
  25. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/decoding/nested.rs +245 -0
  26. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/decoding/primitive.rs +189 -0
  27. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/encoding/factory.rs +69 -0
  28. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/encoding/mod.rs +61 -0
  29. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/encoding/nested.rs +157 -0
  30. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/encoding/primitive.rs +228 -0
  31. ducklake_sdk-0.0.3/crates/ducklake/src/db/arrow/mod.rs +56 -0
  32. ducklake_sdk-0.0.3/crates/ducklake/src/db/dialects/mod.rs +212 -0
  33. ducklake_sdk-0.0.3/crates/ducklake/src/db/dialects/mysql.rs +17 -0
  34. ducklake_sdk-0.0.3/crates/ducklake/src/db/dialects/postgres.rs +295 -0
  35. ducklake_sdk-0.0.3/crates/ducklake/src/db/dialects/sqlite.rs +300 -0
  36. ducklake_sdk-0.0.3/crates/ducklake/src/db/mod.rs +411 -0
  37. ducklake_sdk-0.0.3/crates/ducklake/src/db/sea_query_ext.rs +47 -0
  38. ducklake_sdk-0.0.3/crates/ducklake/src/db/types/chrono.rs +94 -0
  39. ducklake_sdk-0.0.3/crates/ducklake/src/db/types/mod.rs +2 -0
  40. ducklake_sdk-0.0.3/crates/ducklake/src/db/types/uuid.rs +101 -0
  41. ducklake_sdk-0.0.3/crates/ducklake/src/ducklake.rs +514 -0
  42. ducklake_sdk-0.0.3/crates/ducklake/src/error.rs +203 -0
  43. ducklake_sdk-0.0.3/crates/ducklake/src/io/arrow/aggregate.rs +286 -0
  44. ducklake_sdk-0.0.3/crates/ducklake/src/io/arrow/conversion.rs +662 -0
  45. ducklake_sdk-0.0.3/crates/ducklake/src/io/arrow/mod.rs +37 -0
  46. ducklake_sdk-0.0.3/crates/ducklake/src/io/arrow/statistics.rs +96 -0
  47. ducklake_sdk-0.0.3/crates/ducklake/src/io/mod.rs +6 -0
  48. ducklake_sdk-0.0.3/crates/ducklake/src/io/parquet/mod.rs +3 -0
  49. ducklake_sdk-0.0.3/crates/ducklake/src/io/parquet/statistics.rs +185 -0
  50. ducklake_sdk-0.0.3/crates/ducklake/src/io/path.rs +408 -0
  51. ducklake_sdk-0.0.3/crates/ducklake/src/lib.rs +29 -0
  52. ducklake_sdk-0.0.3/crates/ducklake/src/options.rs +97 -0
  53. ducklake_sdk-0.0.3/crates/ducklake/src/primitives/borrowed.rs +37 -0
  54. ducklake_sdk-0.0.3/crates/ducklake/src/primitives/diff_iterator.rs +14 -0
  55. ducklake_sdk-0.0.3/crates/ducklake/src/primitives/lazy.rs +38 -0
  56. ducklake_sdk-0.0.3/crates/ducklake/src/primitives/mod.rs +9 -0
  57. ducklake_sdk-0.0.3/crates/ducklake/src/primitives/types.rs +19 -0
  58. ducklake_sdk-0.0.3/crates/ducklake/src/scan/mod.rs +156 -0
  59. ducklake_sdk-0.0.3/crates/ducklake/src/scan/parsing.rs +276 -0
  60. ducklake_sdk-0.0.3/crates/ducklake/src/scan/queries.rs +101 -0
  61. ducklake_sdk-0.0.3/crates/ducklake/src/spec/entities.rs +377 -0
  62. ducklake_sdk-0.0.3/crates/ducklake/src/spec/init.rs +128 -0
  63. ducklake_sdk-0.0.3/crates/ducklake/src/spec/literals/date.rs +390 -0
  64. ducklake_sdk-0.0.3/crates/ducklake/src/spec/literals/mod.rs +29 -0
  65. ducklake_sdk-0.0.3/crates/ducklake/src/spec/literals/nested.rs +388 -0
  66. ducklake_sdk-0.0.3/crates/ducklake/src/spec/literals/primitive.rs +179 -0
  67. ducklake_sdk-0.0.3/crates/ducklake/src/spec/metadata.rs +61 -0
  68. ducklake_sdk-0.0.3/crates/ducklake/src/spec/migrations/mod.rs +126 -0
  69. ducklake_sdk-0.0.3/crates/ducklake/src/spec/migrations/v0_2.rs +105 -0
  70. ducklake_sdk-0.0.3/crates/ducklake/src/spec/migrations/v0_3.rs +68 -0
  71. ducklake_sdk-0.0.3/crates/ducklake/src/spec/migrations/v0_4.rs +165 -0
  72. ducklake_sdk-0.0.3/crates/ducklake/src/spec/migrations/v1_0.rs +5 -0
  73. ducklake_sdk-0.0.3/crates/ducklake/src/spec/mod.rs +14 -0
  74. ducklake_sdk-0.0.3/crates/ducklake/src/spec/query_clauses.rs +26 -0
  75. ducklake_sdk-0.0.3/crates/ducklake/src/table.rs +279 -0
  76. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/changes/applied_change.rs +449 -0
  77. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/changes/change.rs +683 -0
  78. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/changes/mod.rs +5 -0
  79. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/commit_state.rs +189 -0
  80. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/executors/mod.rs +78 -0
  81. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/executors/schema.rs +45 -0
  82. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/executors/table_meta.rs +501 -0
  83. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/executors/table_write.rs +419 -0
  84. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/mod.rs +350 -0
  85. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/schema.rs +26 -0
  86. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/table.rs +930 -0
  87. ducklake_sdk-0.0.3/crates/ducklake/src/transaction/typedefs.rs +20 -0
  88. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/data/mod.rs +7 -0
  89. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/data/scan.rs +37 -0
  90. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/data/statistics.rs +48 -0
  91. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/data/write.rs +17 -0
  92. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/mod.rs +15 -0
  93. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/name.rs +214 -0
  94. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/partition.rs +157 -0
  95. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/schema/arrow.rs +219 -0
  96. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/schema/column.rs +127 -0
  97. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/schema/dtype.rs +363 -0
  98. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/schema/mod.rs +65 -0
  99. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/tag.rs +28 -0
  100. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/value/format.rs +67 -0
  101. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/value/mod.rs +408 -0
  102. ducklake_sdk-0.0.3/crates/ducklake/src/typedefs/value/parse.rs +83 -0
  103. ducklake_sdk-0.0.3/crates/ducklake/src/utils/filepath_generator.rs +148 -0
  104. ducklake_sdk-0.0.3/crates/ducklake/src/utils/identifier.rs +118 -0
  105. ducklake_sdk-0.0.3/crates/ducklake/src/utils/mod.rs +5 -0
  106. ducklake_sdk-0.0.3/crates/ducklake-macros/Cargo.toml +18 -0
  107. ducklake_sdk-0.0.3/crates/ducklake-macros/README.md +3 -0
  108. ducklake_sdk-0.0.3/crates/ducklake-macros/src/ducklake_table.rs +170 -0
  109. ducklake_sdk-0.0.3/crates/ducklake-macros/src/lib.rs +14 -0
  110. ducklake_sdk-0.0.3/crates/ducklake-macros/src/visibility.rs +92 -0
  111. ducklake_sdk-0.0.3/ducklake/__init__.py +105 -0
  112. ducklake_sdk-0.0.3/ducklake/_compat.py +44 -0
  113. ducklake_sdk-0.0.3/ducklake/_native.pyi +154 -0
  114. ducklake_sdk-0.0.3/ducklake/_storage.py +147 -0
  115. ducklake_sdk-0.0.3/ducklake/connect.py +203 -0
  116. ducklake_sdk-0.0.3/ducklake/duckdb/__init__.py +0 -0
  117. ducklake_sdk-0.0.3/ducklake/duckdb/utils.py +50 -0
  118. ducklake_sdk-0.0.3/ducklake/ducklake.py +600 -0
  119. ducklake_sdk-0.0.3/ducklake/exceptions.py +12 -0
  120. ducklake_sdk-0.0.3/ducklake/polars/__init__.py +3 -0
  121. ducklake_sdk-0.0.3/ducklake/polars/scan.py +272 -0
  122. ducklake_sdk-0.0.3/ducklake/polars/sink.py +250 -0
  123. ducklake_sdk-0.0.3/ducklake/py.typed +0 -0
  124. ducklake_sdk-0.0.3/ducklake/table.py +480 -0
  125. ducklake_sdk-0.0.3/ducklake/transaction.py +385 -0
  126. ducklake_sdk-0.0.3/ducklake/typedefs.py +662 -0
  127. ducklake_sdk-0.0.3/ducklake-python/AGENTS.md +4 -0
  128. ducklake_sdk-0.0.3/ducklake-python/Cargo.toml +23 -0
  129. ducklake_sdk-0.0.3/ducklake-python/README.md +170 -0
  130. ducklake_sdk-0.0.3/ducklake-python/docs/.gitignore +2 -0
  131. ducklake_sdk-0.0.3/ducklake-python/docs/_templates/autosummary/class.rst +12 -0
  132. ducklake_sdk-0.0.3/ducklake-python/docs/_templates/autosummary/datatype.rst +11 -0
  133. ducklake_sdk-0.0.3/ducklake-python/docs/_templates/autosummary/error.rst +9 -0
  134. ducklake_sdk-0.0.3/ducklake-python/docs/api/connect/index.rst +11 -0
  135. ducklake_sdk-0.0.3/ducklake-python/docs/api/duckdb/index.rst +19 -0
  136. ducklake_sdk-0.0.3/ducklake-python/docs/api/ducklake/index.rst +9 -0
  137. ducklake_sdk-0.0.3/ducklake-python/docs/api/errors/index.rst +20 -0
  138. ducklake_sdk-0.0.3/ducklake-python/docs/api/index.rst +70 -0
  139. ducklake_sdk-0.0.3/ducklake-python/docs/api/polars/index.rst +14 -0
  140. ducklake_sdk-0.0.3/ducklake-python/docs/api/table/index.rst +9 -0
  141. ducklake_sdk-0.0.3/ducklake-python/docs/api/transaction/index.rst +15 -0
  142. ducklake_sdk-0.0.3/ducklake-python/docs/api/types/index.rst +97 -0
  143. ducklake_sdk-0.0.3/ducklake-python/docs/conf.py +167 -0
  144. ducklake_sdk-0.0.3/ducklake-python/docs/guides/development.md +60 -0
  145. ducklake_sdk-0.0.3/ducklake-python/docs/guides/index.md +16 -0
  146. ducklake_sdk-0.0.3/ducklake-python/docs/guides/quickstart.md +144 -0
  147. ducklake_sdk-0.0.3/ducklake-python/docs/index.md +61 -0
  148. ducklake_sdk-0.0.3/ducklake-python/src/conversion/column.rs +76 -0
  149. ducklake_sdk-0.0.3/ducklake-python/src/conversion/column_default.rs +20 -0
  150. ducklake_sdk-0.0.3/ducklake-python/src/conversion/column_name.rs +25 -0
  151. ducklake_sdk-0.0.3/ducklake-python/src/conversion/column_stats.rs +43 -0
  152. ducklake_sdk-0.0.3/ducklake-python/src/conversion/data_type.rs +142 -0
  153. ducklake_sdk-0.0.3/ducklake-python/src/conversion/mod.rs +56 -0
  154. ducklake_sdk-0.0.3/ducklake-python/src/conversion/partition.rs +48 -0
  155. ducklake_sdk-0.0.3/ducklake-python/src/conversion/scan.rs +92 -0
  156. ducklake_sdk-0.0.3/ducklake-python/src/conversion/snapshot.rs +20 -0
  157. ducklake_sdk-0.0.3/ducklake-python/src/conversion/table_metadata.rs +35 -0
  158. ducklake_sdk-0.0.3/ducklake-python/src/conversion/table_name.rs +25 -0
  159. ducklake_sdk-0.0.3/ducklake-python/src/conversion/tag.rs +25 -0
  160. ducklake_sdk-0.0.3/ducklake-python/src/conversion/value.rs +381 -0
  161. ducklake_sdk-0.0.3/ducklake-python/src/conversion/write_data_file.rs +64 -0
  162. ducklake_sdk-0.0.3/ducklake-python/src/ducklake.rs +171 -0
  163. ducklake_sdk-0.0.3/ducklake-python/src/error.rs +46 -0
  164. ducklake_sdk-0.0.3/ducklake-python/src/lib.rs +40 -0
  165. ducklake_sdk-0.0.3/ducklake-python/src/table.rs +189 -0
  166. ducklake_sdk-0.0.3/ducklake-python/src/transaction.rs +289 -0
  167. ducklake_sdk-0.0.3/ducklake-python/src/utils/arrow.rs +48 -0
  168. ducklake_sdk-0.0.3/ducklake-python/src/utils/filepath_generator.rs +45 -0
  169. ducklake_sdk-0.0.3/ducklake-python/src/utils/mod.rs +3 -0
  170. ducklake_sdk-0.0.3/ducklake-python/src/utils/runtime.rs +20 -0
  171. ducklake_sdk-0.0.3/pyproject.toml +37 -0
@@ -0,0 +1,4180 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.8"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
16
+ dependencies = [
17
+ "getrandom 0.2.16",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.8.12"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "const-random",
30
+ "getrandom 0.3.4",
31
+ "once_cell",
32
+ "version_check",
33
+ "zerocopy",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "aho-corasick"
38
+ version = "1.1.4"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
41
+ dependencies = [
42
+ "memchr",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "alloc-no-stdlib"
47
+ version = "2.0.4"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
50
+
51
+ [[package]]
52
+ name = "alloc-stdlib"
53
+ version = "0.2.2"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
56
+ dependencies = [
57
+ "alloc-no-stdlib",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "allocator-api2"
62
+ version = "0.2.21"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
65
+
66
+ [[package]]
67
+ name = "android_system_properties"
68
+ version = "0.1.5"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
71
+ dependencies = [
72
+ "libc",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anyhow"
77
+ version = "1.0.102"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
80
+
81
+ [[package]]
82
+ name = "arrayvec"
83
+ version = "0.7.6"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
86
+
87
+ [[package]]
88
+ name = "arrow-arith"
89
+ version = "58.2.0"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "e754319ed8a85d817fe7adf183227e0b5308b82790a737b426c1124626b48118"
92
+ dependencies = [
93
+ "arrow-array",
94
+ "arrow-buffer",
95
+ "arrow-data",
96
+ "arrow-schema",
97
+ "chrono",
98
+ "num-traits",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "arrow-array"
103
+ version = "58.2.0"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "841321891f247aa86c6112c80d83d89cb36e0addd020fa2425085b8eb6c3f579"
106
+ dependencies = [
107
+ "ahash 0.8.12",
108
+ "arrow-buffer",
109
+ "arrow-data",
110
+ "arrow-schema",
111
+ "chrono",
112
+ "chrono-tz",
113
+ "half",
114
+ "hashbrown 0.17.1",
115
+ "num-complex",
116
+ "num-integer",
117
+ "num-traits",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "arrow-buffer"
122
+ version = "58.2.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "f955dfb73fae000425f49c8226d2044dab60fb7ad4af1e24f961756354d996c9"
125
+ dependencies = [
126
+ "bytes",
127
+ "half",
128
+ "num-bigint",
129
+ "num-traits",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "arrow-cast"
134
+ version = "58.1.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "b0127816c96533d20fc938729f48c52d3e48f99717e7a0b5ade77d742510736d"
137
+ dependencies = [
138
+ "arrow-array",
139
+ "arrow-buffer",
140
+ "arrow-data",
141
+ "arrow-ord",
142
+ "arrow-schema",
143
+ "arrow-select",
144
+ "atoi",
145
+ "base64",
146
+ "chrono",
147
+ "comfy-table",
148
+ "half",
149
+ "lexical-core",
150
+ "num-traits",
151
+ "ryu",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "arrow-data"
156
+ version = "58.2.0"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "db3b5846209775b6dc8056d77ff9a032b27043383dd5488abd0b663e265b9373"
159
+ dependencies = [
160
+ "arrow-buffer",
161
+ "arrow-schema",
162
+ "half",
163
+ "num-integer",
164
+ "num-traits",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "arrow-ipc"
169
+ version = "58.2.0"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "fd8907ddd8f9fbabf91ec2c85c1d81fe2874e336d2443eb36373595e28b98dd5"
172
+ dependencies = [
173
+ "arrow-array",
174
+ "arrow-buffer",
175
+ "arrow-data",
176
+ "arrow-schema",
177
+ "arrow-select",
178
+ "flatbuffers",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "arrow-ord"
183
+ version = "58.1.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "763a7ba279b20b52dad300e68cfc37c17efa65e68623169076855b3a9e941ca5"
186
+ dependencies = [
187
+ "arrow-array",
188
+ "arrow-buffer",
189
+ "arrow-data",
190
+ "arrow-schema",
191
+ "arrow-select",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "arrow-schema"
196
+ version = "58.2.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "18aa020f6bc8e5201dcd2d4b7f98c68f8a410ef37128263243e6ff2a47a67d4f"
199
+ dependencies = [
200
+ "bitflags",
201
+ "serde_core",
202
+ "serde_json",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "arrow-select"
207
+ version = "58.2.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "a657ab5132e9c8ca3b24eb15a823d0ced38017fe3930ff50167466b02e2d592c"
210
+ dependencies = [
211
+ "ahash 0.8.12",
212
+ "arrow-array",
213
+ "arrow-buffer",
214
+ "arrow-data",
215
+ "arrow-schema",
216
+ "num-traits",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "async-trait"
221
+ version = "0.1.89"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
224
+ dependencies = [
225
+ "proc-macro2",
226
+ "quote",
227
+ "syn 2.0.117",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "atoi"
232
+ version = "2.0.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
235
+ dependencies = [
236
+ "num-traits",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "atomic-waker"
241
+ version = "1.1.2"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
244
+
245
+ [[package]]
246
+ name = "autocfg"
247
+ version = "1.5.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
250
+
251
+ [[package]]
252
+ name = "base64"
253
+ version = "0.22.1"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
256
+
257
+ [[package]]
258
+ name = "base64ct"
259
+ version = "1.8.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
262
+
263
+ [[package]]
264
+ name = "bitflags"
265
+ version = "2.10.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
268
+ dependencies = [
269
+ "serde_core",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "bitvec"
274
+ version = "1.0.1"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
277
+ dependencies = [
278
+ "funty",
279
+ "radium",
280
+ "tap",
281
+ "wyz",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "block-buffer"
286
+ version = "0.10.4"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
289
+ dependencies = [
290
+ "generic-array",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "borsh"
295
+ version = "1.6.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
298
+ dependencies = [
299
+ "borsh-derive",
300
+ "bytes",
301
+ "cfg_aliases",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "borsh-derive"
306
+ version = "1.6.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
309
+ dependencies = [
310
+ "once_cell",
311
+ "proc-macro-crate",
312
+ "proc-macro2",
313
+ "quote",
314
+ "syn 2.0.117",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "brotli"
319
+ version = "8.0.2"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
322
+ dependencies = [
323
+ "alloc-no-stdlib",
324
+ "alloc-stdlib",
325
+ "brotli-decompressor",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "brotli-decompressor"
330
+ version = "5.0.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
333
+ dependencies = [
334
+ "alloc-no-stdlib",
335
+ "alloc-stdlib",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "bumpalo"
340
+ version = "3.19.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
343
+
344
+ [[package]]
345
+ name = "bytecheck"
346
+ version = "0.6.12"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
349
+ dependencies = [
350
+ "bytecheck_derive",
351
+ "ptr_meta",
352
+ "simdutf8",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "bytecheck_derive"
357
+ version = "0.6.12"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
360
+ dependencies = [
361
+ "proc-macro2",
362
+ "quote",
363
+ "syn 1.0.109",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "byteorder"
368
+ version = "1.5.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
371
+
372
+ [[package]]
373
+ name = "bytes"
374
+ version = "1.11.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
377
+
378
+ [[package]]
379
+ name = "cc"
380
+ version = "1.2.51"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
383
+ dependencies = [
384
+ "find-msvc-tools",
385
+ "jobserver",
386
+ "libc",
387
+ "shlex",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "cfg-if"
392
+ version = "1.0.4"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
395
+
396
+ [[package]]
397
+ name = "cfg_aliases"
398
+ version = "0.2.1"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
401
+
402
+ [[package]]
403
+ name = "chacha20"
404
+ version = "0.10.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
407
+ dependencies = [
408
+ "cfg-if",
409
+ "cpufeatures 0.3.0",
410
+ "rand_core 0.10.1",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "chrono"
415
+ version = "0.4.44"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
418
+ dependencies = [
419
+ "iana-time-zone",
420
+ "js-sys",
421
+ "num-traits",
422
+ "serde",
423
+ "wasm-bindgen",
424
+ "windows-link",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "chrono-tz"
429
+ version = "0.10.4"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
432
+ dependencies = [
433
+ "chrono",
434
+ "phf",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "comfy-table"
439
+ version = "7.2.2"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
442
+ dependencies = [
443
+ "unicode-segmentation",
444
+ "unicode-width",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "concurrent-queue"
449
+ version = "2.5.0"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
452
+ dependencies = [
453
+ "crossbeam-utils",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "const-oid"
458
+ version = "0.9.6"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
461
+
462
+ [[package]]
463
+ name = "const-random"
464
+ version = "0.1.18"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
467
+ dependencies = [
468
+ "const-random-macro",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "const-random-macro"
473
+ version = "0.1.16"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
476
+ dependencies = [
477
+ "getrandom 0.2.16",
478
+ "once_cell",
479
+ "tiny-keccak",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "core-foundation"
484
+ version = "0.10.1"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
487
+ dependencies = [
488
+ "core-foundation-sys",
489
+ "libc",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "core-foundation-sys"
494
+ version = "0.8.7"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
497
+
498
+ [[package]]
499
+ name = "cpufeatures"
500
+ version = "0.2.17"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
503
+ dependencies = [
504
+ "libc",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "cpufeatures"
509
+ version = "0.3.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
512
+ dependencies = [
513
+ "libc",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "crc"
518
+ version = "3.4.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
521
+ dependencies = [
522
+ "crc-catalog",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "crc-catalog"
527
+ version = "2.4.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
530
+
531
+ [[package]]
532
+ name = "crossbeam-queue"
533
+ version = "0.3.12"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
536
+ dependencies = [
537
+ "crossbeam-utils",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "crossbeam-utils"
542
+ version = "0.8.21"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
545
+
546
+ [[package]]
547
+ name = "crunchy"
548
+ version = "0.2.4"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
551
+
552
+ [[package]]
553
+ name = "crypto-common"
554
+ version = "0.1.7"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
557
+ dependencies = [
558
+ "generic-array",
559
+ "typenum",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "darling"
564
+ version = "0.20.11"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
567
+ dependencies = [
568
+ "darling_core",
569
+ "darling_macro",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "darling_core"
574
+ version = "0.20.11"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
577
+ dependencies = [
578
+ "fnv",
579
+ "ident_case",
580
+ "proc-macro2",
581
+ "quote",
582
+ "syn 2.0.117",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "darling_macro"
587
+ version = "0.20.11"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
590
+ dependencies = [
591
+ "darling_core",
592
+ "quote",
593
+ "syn 2.0.117",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "der"
598
+ version = "0.7.10"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
601
+ dependencies = [
602
+ "const-oid",
603
+ "pem-rfc7468",
604
+ "zeroize",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "digest"
609
+ version = "0.10.7"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
612
+ dependencies = [
613
+ "block-buffer",
614
+ "const-oid",
615
+ "crypto-common",
616
+ "subtle",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "displaydoc"
621
+ version = "0.2.5"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
624
+ dependencies = [
625
+ "proc-macro2",
626
+ "quote",
627
+ "syn 2.0.117",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "dotenvy"
632
+ version = "0.15.7"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
635
+
636
+ [[package]]
637
+ name = "ducklake"
638
+ version = "0.0.3"
639
+ dependencies = [
640
+ "arrow-arith",
641
+ "arrow-array",
642
+ "arrow-schema",
643
+ "chrono",
644
+ "ducklake-macros",
645
+ "futures",
646
+ "hex",
647
+ "indexmap",
648
+ "itertools",
649
+ "object_store",
650
+ "parquet",
651
+ "percent-encoding",
652
+ "regex",
653
+ "rstest",
654
+ "rust_decimal",
655
+ "sea-query",
656
+ "sea-query-sqlx",
657
+ "sqlx",
658
+ "strum",
659
+ "thiserror 2.0.18",
660
+ "tokio",
661
+ "url",
662
+ "uuid",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "ducklake-macros"
667
+ version = "0.0.3"
668
+ dependencies = [
669
+ "heck 0.5.0",
670
+ "proc-macro2",
671
+ "quote",
672
+ "syn 2.0.117",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "ducklake-python"
677
+ version = "0.0.3"
678
+ dependencies = [
679
+ "arrow-array",
680
+ "arrow-schema",
681
+ "chrono",
682
+ "ducklake",
683
+ "indexmap",
684
+ "parquet",
685
+ "pyo3",
686
+ "pyo3-arrow",
687
+ "rust_decimal",
688
+ "tokio",
689
+ "uuid",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "either"
694
+ version = "1.15.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
697
+ dependencies = [
698
+ "serde",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "equivalent"
703
+ version = "1.0.2"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
706
+
707
+ [[package]]
708
+ name = "etcetera"
709
+ version = "0.8.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
712
+ dependencies = [
713
+ "cfg-if",
714
+ "home",
715
+ "windows-sys 0.48.0",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "event-listener"
720
+ version = "5.4.1"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
723
+ dependencies = [
724
+ "concurrent-queue",
725
+ "parking",
726
+ "pin-project-lite",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "find-msvc-tools"
731
+ version = "0.1.6"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
734
+
735
+ [[package]]
736
+ name = "flatbuffers"
737
+ version = "25.12.19"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
740
+ dependencies = [
741
+ "bitflags",
742
+ "rustc_version",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "flate2"
747
+ version = "1.1.9"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
750
+ dependencies = [
751
+ "miniz_oxide",
752
+ "zlib-rs",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "flume"
757
+ version = "0.11.1"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
760
+ dependencies = [
761
+ "futures-core",
762
+ "futures-sink",
763
+ "spin",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "fnv"
768
+ version = "1.0.7"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
771
+
772
+ [[package]]
773
+ name = "foldhash"
774
+ version = "0.1.5"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
777
+
778
+ [[package]]
779
+ name = "form_urlencoded"
780
+ version = "1.2.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
783
+ dependencies = [
784
+ "percent-encoding",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "funty"
789
+ version = "2.0.0"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
792
+
793
+ [[package]]
794
+ name = "futures"
795
+ version = "0.3.31"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
798
+ dependencies = [
799
+ "futures-channel",
800
+ "futures-core",
801
+ "futures-executor",
802
+ "futures-io",
803
+ "futures-sink",
804
+ "futures-task",
805
+ "futures-util",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "futures-channel"
810
+ version = "0.3.31"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
813
+ dependencies = [
814
+ "futures-core",
815
+ "futures-sink",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "futures-core"
820
+ version = "0.3.31"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
823
+
824
+ [[package]]
825
+ name = "futures-executor"
826
+ version = "0.3.31"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
829
+ dependencies = [
830
+ "futures-core",
831
+ "futures-task",
832
+ "futures-util",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "futures-intrusive"
837
+ version = "0.5.0"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
840
+ dependencies = [
841
+ "futures-core",
842
+ "lock_api",
843
+ "parking_lot",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "futures-io"
848
+ version = "0.3.31"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
851
+
852
+ [[package]]
853
+ name = "futures-macro"
854
+ version = "0.3.31"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
857
+ dependencies = [
858
+ "proc-macro2",
859
+ "quote",
860
+ "syn 2.0.117",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "futures-sink"
865
+ version = "0.3.31"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
868
+
869
+ [[package]]
870
+ name = "futures-task"
871
+ version = "0.3.31"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
874
+
875
+ [[package]]
876
+ name = "futures-timer"
877
+ version = "3.0.3"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
880
+
881
+ [[package]]
882
+ name = "futures-util"
883
+ version = "0.3.31"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
886
+ dependencies = [
887
+ "futures-channel",
888
+ "futures-core",
889
+ "futures-io",
890
+ "futures-macro",
891
+ "futures-sink",
892
+ "futures-task",
893
+ "memchr",
894
+ "pin-project-lite",
895
+ "pin-utils",
896
+ "slab",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "generic-array"
901
+ version = "0.14.7"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
904
+ dependencies = [
905
+ "typenum",
906
+ "version_check",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "getrandom"
911
+ version = "0.2.16"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
914
+ dependencies = [
915
+ "cfg-if",
916
+ "js-sys",
917
+ "libc",
918
+ "wasi",
919
+ "wasm-bindgen",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "getrandom"
924
+ version = "0.3.4"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
927
+ dependencies = [
928
+ "cfg-if",
929
+ "js-sys",
930
+ "libc",
931
+ "r-efi 5.3.0",
932
+ "wasip2",
933
+ "wasm-bindgen",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "getrandom"
938
+ version = "0.4.2"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
941
+ dependencies = [
942
+ "cfg-if",
943
+ "libc",
944
+ "r-efi 6.0.0",
945
+ "rand_core 0.10.1",
946
+ "wasip2",
947
+ "wasip3",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "glob"
952
+ version = "0.3.3"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
955
+
956
+ [[package]]
957
+ name = "h2"
958
+ version = "0.4.13"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
961
+ dependencies = [
962
+ "atomic-waker",
963
+ "bytes",
964
+ "fnv",
965
+ "futures-core",
966
+ "futures-sink",
967
+ "http",
968
+ "indexmap",
969
+ "slab",
970
+ "tokio",
971
+ "tokio-util",
972
+ "tracing",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "half"
977
+ version = "2.7.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
980
+ dependencies = [
981
+ "cfg-if",
982
+ "crunchy",
983
+ "num-traits",
984
+ "zerocopy",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "hashbrown"
989
+ version = "0.12.3"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
992
+ dependencies = [
993
+ "ahash 0.7.8",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "hashbrown"
998
+ version = "0.15.5"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1001
+ dependencies = [
1002
+ "allocator-api2",
1003
+ "equivalent",
1004
+ "foldhash",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "hashbrown"
1009
+ version = "0.17.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1012
+
1013
+ [[package]]
1014
+ name = "hashlink"
1015
+ version = "0.10.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1018
+ dependencies = [
1019
+ "hashbrown 0.15.5",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "heck"
1024
+ version = "0.4.1"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1027
+
1028
+ [[package]]
1029
+ name = "heck"
1030
+ version = "0.5.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1033
+
1034
+ [[package]]
1035
+ name = "hex"
1036
+ version = "0.4.3"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1039
+
1040
+ [[package]]
1041
+ name = "hkdf"
1042
+ version = "0.12.4"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1045
+ dependencies = [
1046
+ "hmac",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "hmac"
1051
+ version = "0.12.1"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1054
+ dependencies = [
1055
+ "digest",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "home"
1060
+ version = "0.5.12"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1063
+ dependencies = [
1064
+ "windows-sys 0.61.2",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "http"
1069
+ version = "1.4.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1072
+ dependencies = [
1073
+ "bytes",
1074
+ "itoa",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "http-body"
1079
+ version = "1.0.1"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1082
+ dependencies = [
1083
+ "bytes",
1084
+ "http",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "http-body-util"
1089
+ version = "0.1.3"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1092
+ dependencies = [
1093
+ "bytes",
1094
+ "futures-core",
1095
+ "http",
1096
+ "http-body",
1097
+ "pin-project-lite",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "httparse"
1102
+ version = "1.10.1"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1105
+
1106
+ [[package]]
1107
+ name = "humantime"
1108
+ version = "2.3.0"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1111
+
1112
+ [[package]]
1113
+ name = "hyper"
1114
+ version = "1.8.1"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1117
+ dependencies = [
1118
+ "atomic-waker",
1119
+ "bytes",
1120
+ "futures-channel",
1121
+ "futures-core",
1122
+ "h2",
1123
+ "http",
1124
+ "http-body",
1125
+ "httparse",
1126
+ "itoa",
1127
+ "pin-project-lite",
1128
+ "pin-utils",
1129
+ "smallvec",
1130
+ "tokio",
1131
+ "want",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "hyper-rustls"
1136
+ version = "0.27.7"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1139
+ dependencies = [
1140
+ "http",
1141
+ "hyper",
1142
+ "hyper-util",
1143
+ "rustls",
1144
+ "rustls-native-certs",
1145
+ "rustls-pki-types",
1146
+ "tokio",
1147
+ "tokio-rustls",
1148
+ "tower-service",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "hyper-util"
1153
+ version = "0.1.20"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1156
+ dependencies = [
1157
+ "base64",
1158
+ "bytes",
1159
+ "futures-channel",
1160
+ "futures-util",
1161
+ "http",
1162
+ "http-body",
1163
+ "hyper",
1164
+ "ipnet",
1165
+ "libc",
1166
+ "percent-encoding",
1167
+ "pin-project-lite",
1168
+ "socket2",
1169
+ "tokio",
1170
+ "tower-service",
1171
+ "tracing",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "iana-time-zone"
1176
+ version = "0.1.64"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1179
+ dependencies = [
1180
+ "android_system_properties",
1181
+ "core-foundation-sys",
1182
+ "iana-time-zone-haiku",
1183
+ "js-sys",
1184
+ "log",
1185
+ "wasm-bindgen",
1186
+ "windows-core",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "iana-time-zone-haiku"
1191
+ version = "0.1.2"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1194
+ dependencies = [
1195
+ "cc",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "icu_collections"
1200
+ version = "2.1.1"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1203
+ dependencies = [
1204
+ "displaydoc",
1205
+ "potential_utf",
1206
+ "yoke",
1207
+ "zerofrom",
1208
+ "zerovec",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "icu_locale_core"
1213
+ version = "2.1.1"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1216
+ dependencies = [
1217
+ "displaydoc",
1218
+ "litemap",
1219
+ "tinystr",
1220
+ "writeable",
1221
+ "zerovec",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "icu_normalizer"
1226
+ version = "2.1.1"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1229
+ dependencies = [
1230
+ "icu_collections",
1231
+ "icu_normalizer_data",
1232
+ "icu_properties",
1233
+ "icu_provider",
1234
+ "smallvec",
1235
+ "zerovec",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "icu_normalizer_data"
1240
+ version = "2.1.1"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1243
+
1244
+ [[package]]
1245
+ name = "icu_properties"
1246
+ version = "2.1.2"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1249
+ dependencies = [
1250
+ "icu_collections",
1251
+ "icu_locale_core",
1252
+ "icu_properties_data",
1253
+ "icu_provider",
1254
+ "zerotrie",
1255
+ "zerovec",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "icu_properties_data"
1260
+ version = "2.1.2"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1263
+
1264
+ [[package]]
1265
+ name = "icu_provider"
1266
+ version = "2.1.1"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1269
+ dependencies = [
1270
+ "displaydoc",
1271
+ "icu_locale_core",
1272
+ "writeable",
1273
+ "yoke",
1274
+ "zerofrom",
1275
+ "zerotrie",
1276
+ "zerovec",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "id-arena"
1281
+ version = "2.3.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1284
+
1285
+ [[package]]
1286
+ name = "ident_case"
1287
+ version = "1.0.1"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1290
+
1291
+ [[package]]
1292
+ name = "idna"
1293
+ version = "1.1.0"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1296
+ dependencies = [
1297
+ "idna_adapter",
1298
+ "smallvec",
1299
+ "utf8_iter",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "idna_adapter"
1304
+ version = "1.2.1"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1307
+ dependencies = [
1308
+ "icu_normalizer",
1309
+ "icu_properties",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "indexmap"
1314
+ version = "2.14.0"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1317
+ dependencies = [
1318
+ "equivalent",
1319
+ "hashbrown 0.17.1",
1320
+ "serde",
1321
+ "serde_core",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "inherent"
1326
+ version = "1.0.13"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "c727f80bfa4a6c6e2508d2f05b6f4bfce242030bd88ed15ae5331c5b5d30fba7"
1329
+ dependencies = [
1330
+ "proc-macro2",
1331
+ "quote",
1332
+ "syn 2.0.117",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "integer-encoding"
1337
+ version = "3.0.4"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1340
+
1341
+ [[package]]
1342
+ name = "ipnet"
1343
+ version = "2.12.0"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1346
+
1347
+ [[package]]
1348
+ name = "iri-string"
1349
+ version = "0.7.11"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb"
1352
+ dependencies = [
1353
+ "memchr",
1354
+ "serde",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "itertools"
1359
+ version = "0.14.0"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1362
+ dependencies = [
1363
+ "either",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "itoa"
1368
+ version = "1.0.17"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1371
+
1372
+ [[package]]
1373
+ name = "jobserver"
1374
+ version = "0.1.34"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1377
+ dependencies = [
1378
+ "getrandom 0.3.4",
1379
+ "libc",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "js-sys"
1384
+ version = "0.3.83"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1387
+ dependencies = [
1388
+ "once_cell",
1389
+ "wasm-bindgen",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "lazy_static"
1394
+ version = "1.5.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1397
+ dependencies = [
1398
+ "spin",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "leb128fmt"
1403
+ version = "0.1.0"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1406
+
1407
+ [[package]]
1408
+ name = "lexical-core"
1409
+ version = "1.0.6"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1412
+ dependencies = [
1413
+ "lexical-parse-float",
1414
+ "lexical-parse-integer",
1415
+ "lexical-util",
1416
+ "lexical-write-float",
1417
+ "lexical-write-integer",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "lexical-parse-float"
1422
+ version = "1.0.6"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1425
+ dependencies = [
1426
+ "lexical-parse-integer",
1427
+ "lexical-util",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "lexical-parse-integer"
1432
+ version = "1.0.6"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1435
+ dependencies = [
1436
+ "lexical-util",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "lexical-util"
1441
+ version = "1.0.7"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1444
+
1445
+ [[package]]
1446
+ name = "lexical-write-float"
1447
+ version = "1.0.6"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1450
+ dependencies = [
1451
+ "lexical-util",
1452
+ "lexical-write-integer",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "lexical-write-integer"
1457
+ version = "1.0.6"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1460
+ dependencies = [
1461
+ "lexical-util",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "libc"
1466
+ version = "0.2.178"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1469
+
1470
+ [[package]]
1471
+ name = "libm"
1472
+ version = "0.2.15"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1475
+
1476
+ [[package]]
1477
+ name = "libredox"
1478
+ version = "0.1.12"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1481
+ dependencies = [
1482
+ "bitflags",
1483
+ "libc",
1484
+ "redox_syscall 0.7.0",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "libsqlite3-sys"
1489
+ version = "0.30.1"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1492
+ dependencies = [
1493
+ "cc",
1494
+ "pkg-config",
1495
+ "vcpkg",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "litemap"
1500
+ version = "0.8.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1503
+
1504
+ [[package]]
1505
+ name = "lock_api"
1506
+ version = "0.4.14"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1509
+ dependencies = [
1510
+ "scopeguard",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "log"
1515
+ version = "0.4.29"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1518
+
1519
+ [[package]]
1520
+ name = "lru-slab"
1521
+ version = "0.1.2"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1524
+
1525
+ [[package]]
1526
+ name = "lz4_flex"
1527
+ version = "0.13.0"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a"
1530
+ dependencies = [
1531
+ "twox-hash",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "matrixmultiply"
1536
+ version = "0.3.10"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1539
+ dependencies = [
1540
+ "autocfg",
1541
+ "rawpointer",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "md-5"
1546
+ version = "0.10.6"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1549
+ dependencies = [
1550
+ "cfg-if",
1551
+ "digest",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "memchr"
1556
+ version = "2.7.6"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1559
+
1560
+ [[package]]
1561
+ name = "miniz_oxide"
1562
+ version = "0.8.9"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1565
+ dependencies = [
1566
+ "adler2",
1567
+ "simd-adler32",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "mio"
1572
+ version = "1.1.1"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1575
+ dependencies = [
1576
+ "libc",
1577
+ "wasi",
1578
+ "windows-sys 0.61.2",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "ndarray"
1583
+ version = "0.17.2"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1586
+ dependencies = [
1587
+ "matrixmultiply",
1588
+ "num-complex",
1589
+ "num-integer",
1590
+ "num-traits",
1591
+ "portable-atomic",
1592
+ "portable-atomic-util",
1593
+ "rawpointer",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "num-bigint"
1598
+ version = "0.4.6"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1601
+ dependencies = [
1602
+ "num-integer",
1603
+ "num-traits",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "num-bigint-dig"
1608
+ version = "0.8.6"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1611
+ dependencies = [
1612
+ "lazy_static",
1613
+ "libm",
1614
+ "num-integer",
1615
+ "num-iter",
1616
+ "num-traits",
1617
+ "rand 0.8.5",
1618
+ "smallvec",
1619
+ "zeroize",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "num-complex"
1624
+ version = "0.4.6"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1627
+ dependencies = [
1628
+ "num-traits",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "num-integer"
1633
+ version = "0.1.46"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1636
+ dependencies = [
1637
+ "num-traits",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "num-iter"
1642
+ version = "0.1.45"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1645
+ dependencies = [
1646
+ "autocfg",
1647
+ "num-integer",
1648
+ "num-traits",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "num-traits"
1653
+ version = "0.2.19"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1656
+ dependencies = [
1657
+ "autocfg",
1658
+ "libm",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "numpy"
1663
+ version = "0.28.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
1666
+ dependencies = [
1667
+ "half",
1668
+ "libc",
1669
+ "ndarray",
1670
+ "num-complex",
1671
+ "num-integer",
1672
+ "num-traits",
1673
+ "pyo3",
1674
+ "pyo3-build-config",
1675
+ "rustc-hash",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "object_store"
1680
+ version = "0.13.2"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49"
1683
+ dependencies = [
1684
+ "async-trait",
1685
+ "base64",
1686
+ "bytes",
1687
+ "chrono",
1688
+ "form_urlencoded",
1689
+ "futures-channel",
1690
+ "futures-core",
1691
+ "futures-util",
1692
+ "http",
1693
+ "http-body-util",
1694
+ "humantime",
1695
+ "hyper",
1696
+ "itertools",
1697
+ "md-5",
1698
+ "parking_lot",
1699
+ "percent-encoding",
1700
+ "quick-xml",
1701
+ "rand 0.10.1",
1702
+ "reqwest",
1703
+ "ring",
1704
+ "serde",
1705
+ "serde_json",
1706
+ "serde_urlencoded",
1707
+ "thiserror 2.0.18",
1708
+ "tokio",
1709
+ "tracing",
1710
+ "url",
1711
+ "walkdir",
1712
+ "wasm-bindgen-futures",
1713
+ "web-time",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "once_cell"
1718
+ version = "1.21.3"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1721
+
1722
+ [[package]]
1723
+ name = "openssl-probe"
1724
+ version = "0.2.1"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1727
+
1728
+ [[package]]
1729
+ name = "ordered-float"
1730
+ version = "2.10.1"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
1733
+ dependencies = [
1734
+ "num-traits",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "parking"
1739
+ version = "2.2.1"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1742
+
1743
+ [[package]]
1744
+ name = "parking_lot"
1745
+ version = "0.12.5"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1748
+ dependencies = [
1749
+ "lock_api",
1750
+ "parking_lot_core",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "parking_lot_core"
1755
+ version = "0.9.12"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1758
+ dependencies = [
1759
+ "cfg-if",
1760
+ "libc",
1761
+ "redox_syscall 0.5.18",
1762
+ "smallvec",
1763
+ "windows-link",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "parquet"
1768
+ version = "58.2.0"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "43d7efd3052f7d6ef601085559a246bc991e9a8cc77e02753737df6322ce35f1"
1771
+ dependencies = [
1772
+ "ahash 0.8.12",
1773
+ "arrow-array",
1774
+ "arrow-buffer",
1775
+ "arrow-data",
1776
+ "arrow-ipc",
1777
+ "arrow-schema",
1778
+ "arrow-select",
1779
+ "base64",
1780
+ "brotli",
1781
+ "bytes",
1782
+ "chrono",
1783
+ "flate2",
1784
+ "futures",
1785
+ "half",
1786
+ "hashbrown 0.17.1",
1787
+ "lz4_flex",
1788
+ "num-bigint",
1789
+ "num-integer",
1790
+ "num-traits",
1791
+ "object_store",
1792
+ "paste",
1793
+ "seq-macro",
1794
+ "simdutf8",
1795
+ "snap",
1796
+ "thrift",
1797
+ "tokio",
1798
+ "twox-hash",
1799
+ "zstd",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "paste"
1804
+ version = "1.0.15"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1807
+
1808
+ [[package]]
1809
+ name = "pem-rfc7468"
1810
+ version = "0.7.0"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1813
+ dependencies = [
1814
+ "base64ct",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "percent-encoding"
1819
+ version = "2.3.2"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1822
+
1823
+ [[package]]
1824
+ name = "phf"
1825
+ version = "0.12.1"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1828
+ dependencies = [
1829
+ "phf_shared",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "phf_shared"
1834
+ version = "0.12.1"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1837
+ dependencies = [
1838
+ "siphasher",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "pin-project-lite"
1843
+ version = "0.2.16"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1846
+
1847
+ [[package]]
1848
+ name = "pin-utils"
1849
+ version = "0.1.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1852
+
1853
+ [[package]]
1854
+ name = "pkcs1"
1855
+ version = "0.7.5"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1858
+ dependencies = [
1859
+ "der",
1860
+ "pkcs8",
1861
+ "spki",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "pkcs8"
1866
+ version = "0.10.2"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1869
+ dependencies = [
1870
+ "der",
1871
+ "spki",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "pkg-config"
1876
+ version = "0.3.32"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1879
+
1880
+ [[package]]
1881
+ name = "portable-atomic"
1882
+ version = "1.13.0"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
1885
+
1886
+ [[package]]
1887
+ name = "portable-atomic-util"
1888
+ version = "0.2.7"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1891
+ dependencies = [
1892
+ "portable-atomic",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "potential_utf"
1897
+ version = "0.1.4"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1900
+ dependencies = [
1901
+ "zerovec",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "ppv-lite86"
1906
+ version = "0.2.21"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1909
+ dependencies = [
1910
+ "zerocopy",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "prettyplease"
1915
+ version = "0.2.37"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1918
+ dependencies = [
1919
+ "proc-macro2",
1920
+ "syn 2.0.117",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "proc-macro-crate"
1925
+ version = "3.4.0"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
1928
+ dependencies = [
1929
+ "toml_edit",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "proc-macro2"
1934
+ version = "1.0.106"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1937
+ dependencies = [
1938
+ "unicode-ident",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "ptr_meta"
1943
+ version = "0.1.4"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
1946
+ dependencies = [
1947
+ "ptr_meta_derive",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "ptr_meta_derive"
1952
+ version = "0.1.4"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
1955
+ dependencies = [
1956
+ "proc-macro2",
1957
+ "quote",
1958
+ "syn 1.0.109",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "pyo3"
1963
+ version = "0.28.3"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1966
+ dependencies = [
1967
+ "chrono",
1968
+ "chrono-tz",
1969
+ "indexmap",
1970
+ "libc",
1971
+ "once_cell",
1972
+ "portable-atomic",
1973
+ "pyo3-build-config",
1974
+ "pyo3-ffi",
1975
+ "pyo3-macros",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "pyo3-arrow"
1980
+ version = "0.17.0"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "0360400036dda3db3d69102ef7e9646e4cd946c75a2d1d41fb8fd39879312636"
1983
+ dependencies = [
1984
+ "arrow-array",
1985
+ "arrow-buffer",
1986
+ "arrow-cast",
1987
+ "arrow-data",
1988
+ "arrow-schema",
1989
+ "arrow-select",
1990
+ "chrono",
1991
+ "chrono-tz",
1992
+ "half",
1993
+ "indexmap",
1994
+ "numpy",
1995
+ "pyo3",
1996
+ "thiserror 1.0.69",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "pyo3-build-config"
2001
+ version = "0.28.3"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2004
+ dependencies = [
2005
+ "target-lexicon",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "pyo3-ffi"
2010
+ version = "0.28.3"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2013
+ dependencies = [
2014
+ "libc",
2015
+ "pyo3-build-config",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "pyo3-macros"
2020
+ version = "0.28.3"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2023
+ dependencies = [
2024
+ "proc-macro2",
2025
+ "pyo3-macros-backend",
2026
+ "quote",
2027
+ "syn 2.0.117",
2028
+ ]
2029
+
2030
+ [[package]]
2031
+ name = "pyo3-macros-backend"
2032
+ version = "0.28.3"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2035
+ dependencies = [
2036
+ "heck 0.5.0",
2037
+ "proc-macro2",
2038
+ "pyo3-build-config",
2039
+ "quote",
2040
+ "syn 2.0.117",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "quick-xml"
2045
+ version = "0.39.2"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
2048
+ dependencies = [
2049
+ "memchr",
2050
+ "serde",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "quinn"
2055
+ version = "0.11.9"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2058
+ dependencies = [
2059
+ "bytes",
2060
+ "cfg_aliases",
2061
+ "pin-project-lite",
2062
+ "quinn-proto",
2063
+ "quinn-udp",
2064
+ "rustc-hash",
2065
+ "rustls",
2066
+ "socket2",
2067
+ "thiserror 2.0.18",
2068
+ "tokio",
2069
+ "tracing",
2070
+ "web-time",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "quinn-proto"
2075
+ version = "0.11.14"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2078
+ dependencies = [
2079
+ "bytes",
2080
+ "getrandom 0.3.4",
2081
+ "lru-slab",
2082
+ "rand 0.9.4",
2083
+ "ring",
2084
+ "rustc-hash",
2085
+ "rustls",
2086
+ "rustls-pki-types",
2087
+ "slab",
2088
+ "thiserror 2.0.18",
2089
+ "tinyvec",
2090
+ "tracing",
2091
+ "web-time",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "quinn-udp"
2096
+ version = "0.5.14"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2099
+ dependencies = [
2100
+ "cfg_aliases",
2101
+ "libc",
2102
+ "once_cell",
2103
+ "socket2",
2104
+ "tracing",
2105
+ "windows-sys 0.60.2",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "quote"
2110
+ version = "1.0.45"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2113
+ dependencies = [
2114
+ "proc-macro2",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "r-efi"
2119
+ version = "5.3.0"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2122
+
2123
+ [[package]]
2124
+ name = "r-efi"
2125
+ version = "6.0.0"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2128
+
2129
+ [[package]]
2130
+ name = "radium"
2131
+ version = "0.7.0"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2134
+
2135
+ [[package]]
2136
+ name = "rand"
2137
+ version = "0.8.5"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2140
+ dependencies = [
2141
+ "libc",
2142
+ "rand_chacha 0.3.1",
2143
+ "rand_core 0.6.4",
2144
+ ]
2145
+
2146
+ [[package]]
2147
+ name = "rand"
2148
+ version = "0.9.4"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2151
+ dependencies = [
2152
+ "rand_chacha 0.9.0",
2153
+ "rand_core 0.9.5",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "rand"
2158
+ version = "0.10.1"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
2161
+ dependencies = [
2162
+ "chacha20",
2163
+ "getrandom 0.4.2",
2164
+ "rand_core 0.10.1",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "rand_chacha"
2169
+ version = "0.3.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2172
+ dependencies = [
2173
+ "ppv-lite86",
2174
+ "rand_core 0.6.4",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "rand_chacha"
2179
+ version = "0.9.0"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2182
+ dependencies = [
2183
+ "ppv-lite86",
2184
+ "rand_core 0.9.5",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "rand_core"
2189
+ version = "0.6.4"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2192
+ dependencies = [
2193
+ "getrandom 0.2.16",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "rand_core"
2198
+ version = "0.9.5"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2201
+ dependencies = [
2202
+ "getrandom 0.3.4",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "rand_core"
2207
+ version = "0.10.1"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2210
+
2211
+ [[package]]
2212
+ name = "rawpointer"
2213
+ version = "0.2.1"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2216
+
2217
+ [[package]]
2218
+ name = "redox_syscall"
2219
+ version = "0.5.18"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2222
+ dependencies = [
2223
+ "bitflags",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "redox_syscall"
2228
+ version = "0.7.0"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
2231
+ dependencies = [
2232
+ "bitflags",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "regex"
2237
+ version = "1.12.3"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2240
+ dependencies = [
2241
+ "aho-corasick",
2242
+ "memchr",
2243
+ "regex-automata",
2244
+ "regex-syntax",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "regex-automata"
2249
+ version = "0.4.13"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2252
+ dependencies = [
2253
+ "aho-corasick",
2254
+ "memchr",
2255
+ "regex-syntax",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "regex-syntax"
2260
+ version = "0.8.8"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2263
+
2264
+ [[package]]
2265
+ name = "relative-path"
2266
+ version = "1.9.3"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2269
+
2270
+ [[package]]
2271
+ name = "rend"
2272
+ version = "0.4.2"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
2275
+ dependencies = [
2276
+ "bytecheck",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "reqwest"
2281
+ version = "0.12.28"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2284
+ dependencies = [
2285
+ "base64",
2286
+ "bytes",
2287
+ "futures-core",
2288
+ "futures-util",
2289
+ "h2",
2290
+ "http",
2291
+ "http-body",
2292
+ "http-body-util",
2293
+ "hyper",
2294
+ "hyper-rustls",
2295
+ "hyper-util",
2296
+ "js-sys",
2297
+ "log",
2298
+ "percent-encoding",
2299
+ "pin-project-lite",
2300
+ "quinn",
2301
+ "rustls",
2302
+ "rustls-native-certs",
2303
+ "rustls-pki-types",
2304
+ "serde",
2305
+ "serde_json",
2306
+ "serde_urlencoded",
2307
+ "sync_wrapper",
2308
+ "tokio",
2309
+ "tokio-rustls",
2310
+ "tokio-util",
2311
+ "tower",
2312
+ "tower-http",
2313
+ "tower-service",
2314
+ "url",
2315
+ "wasm-bindgen",
2316
+ "wasm-bindgen-futures",
2317
+ "wasm-streams",
2318
+ "web-sys",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "ring"
2323
+ version = "0.17.14"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2326
+ dependencies = [
2327
+ "cc",
2328
+ "cfg-if",
2329
+ "getrandom 0.2.16",
2330
+ "libc",
2331
+ "untrusted",
2332
+ "windows-sys 0.52.0",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "rkyv"
2337
+ version = "0.7.46"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
2340
+ dependencies = [
2341
+ "bitvec",
2342
+ "bytecheck",
2343
+ "bytes",
2344
+ "hashbrown 0.12.3",
2345
+ "ptr_meta",
2346
+ "rend",
2347
+ "rkyv_derive",
2348
+ "seahash",
2349
+ "tinyvec",
2350
+ "uuid",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "rkyv_derive"
2355
+ version = "0.7.46"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
2358
+ dependencies = [
2359
+ "proc-macro2",
2360
+ "quote",
2361
+ "syn 1.0.109",
2362
+ ]
2363
+
2364
+ [[package]]
2365
+ name = "rsa"
2366
+ version = "0.9.9"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
2369
+ dependencies = [
2370
+ "const-oid",
2371
+ "digest",
2372
+ "num-bigint-dig",
2373
+ "num-integer",
2374
+ "num-traits",
2375
+ "pkcs1",
2376
+ "pkcs8",
2377
+ "rand_core 0.6.4",
2378
+ "signature",
2379
+ "spki",
2380
+ "subtle",
2381
+ "zeroize",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "rstest"
2386
+ version = "0.26.1"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
2389
+ dependencies = [
2390
+ "futures-timer",
2391
+ "futures-util",
2392
+ "rstest_macros",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "rstest_macros"
2397
+ version = "0.26.1"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
2400
+ dependencies = [
2401
+ "cfg-if",
2402
+ "glob",
2403
+ "proc-macro-crate",
2404
+ "proc-macro2",
2405
+ "quote",
2406
+ "regex",
2407
+ "relative-path",
2408
+ "rustc_version",
2409
+ "syn 2.0.117",
2410
+ "unicode-ident",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "rust_decimal"
2415
+ version = "1.41.0"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "2ce901f9a19d251159075a4c37af514c3b8ef99c22e02dd8c19161cf397ee94a"
2418
+ dependencies = [
2419
+ "arrayvec",
2420
+ "borsh",
2421
+ "bytes",
2422
+ "num-traits",
2423
+ "rand 0.8.5",
2424
+ "rkyv",
2425
+ "serde",
2426
+ "serde_json",
2427
+ "wasm-bindgen",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "rustc-hash"
2432
+ version = "2.1.2"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2435
+
2436
+ [[package]]
2437
+ name = "rustc_version"
2438
+ version = "0.4.1"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2441
+ dependencies = [
2442
+ "semver",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "rustls"
2447
+ version = "0.23.35"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
2450
+ dependencies = [
2451
+ "once_cell",
2452
+ "ring",
2453
+ "rustls-pki-types",
2454
+ "rustls-webpki",
2455
+ "subtle",
2456
+ "zeroize",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "rustls-native-certs"
2461
+ version = "0.8.3"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2464
+ dependencies = [
2465
+ "openssl-probe",
2466
+ "rustls-pki-types",
2467
+ "schannel",
2468
+ "security-framework",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "rustls-pki-types"
2473
+ version = "1.13.2"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
2476
+ dependencies = [
2477
+ "web-time",
2478
+ "zeroize",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "rustls-webpki"
2483
+ version = "0.103.8"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
2486
+ dependencies = [
2487
+ "ring",
2488
+ "rustls-pki-types",
2489
+ "untrusted",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "rustversion"
2494
+ version = "1.0.22"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2497
+
2498
+ [[package]]
2499
+ name = "ryu"
2500
+ version = "1.0.22"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
2503
+
2504
+ [[package]]
2505
+ name = "same-file"
2506
+ version = "1.0.6"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2509
+ dependencies = [
2510
+ "winapi-util",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "schannel"
2515
+ version = "0.1.29"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2518
+ dependencies = [
2519
+ "windows-sys 0.61.2",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "scopeguard"
2524
+ version = "1.2.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2527
+
2528
+ [[package]]
2529
+ name = "sea-query"
2530
+ version = "1.0.0-rc.33"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "b04cdb0135c16e829504e93fbe7880513578d56f07aaea152283526590111828"
2533
+ dependencies = [
2534
+ "chrono",
2535
+ "inherent",
2536
+ "itoa",
2537
+ "sea-query-derive",
2538
+ "uuid",
2539
+ ]
2540
+
2541
+ [[package]]
2542
+ name = "sea-query-derive"
2543
+ version = "1.0.0-rc.12"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "8d88ad44b6ad9788c8b9476b6b91f94c7461d1e19d39cd8ea37838b1e6ff5aa8"
2546
+ dependencies = [
2547
+ "darling",
2548
+ "heck 0.4.1",
2549
+ "proc-macro2",
2550
+ "quote",
2551
+ "syn 2.0.117",
2552
+ "thiserror 2.0.18",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "sea-query-sqlx"
2557
+ version = "0.8.0-rc.15"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "a04aeecfe00614fece56336fd35dc385bb9ffed0c75660695ba925e42a3991ef"
2560
+ dependencies = [
2561
+ "sea-query",
2562
+ "sqlx",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "seahash"
2567
+ version = "4.1.0"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2570
+
2571
+ [[package]]
2572
+ name = "security-framework"
2573
+ version = "3.6.0"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38"
2576
+ dependencies = [
2577
+ "bitflags",
2578
+ "core-foundation",
2579
+ "core-foundation-sys",
2580
+ "libc",
2581
+ "security-framework-sys",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "security-framework-sys"
2586
+ version = "2.17.0"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2589
+ dependencies = [
2590
+ "core-foundation-sys",
2591
+ "libc",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "semver"
2596
+ version = "1.0.27"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2599
+
2600
+ [[package]]
2601
+ name = "seq-macro"
2602
+ version = "0.3.6"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2605
+
2606
+ [[package]]
2607
+ name = "serde"
2608
+ version = "1.0.228"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2611
+ dependencies = [
2612
+ "serde_core",
2613
+ "serde_derive",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "serde_core"
2618
+ version = "1.0.228"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2621
+ dependencies = [
2622
+ "serde_derive",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "serde_derive"
2627
+ version = "1.0.228"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2630
+ dependencies = [
2631
+ "proc-macro2",
2632
+ "quote",
2633
+ "syn 2.0.117",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "serde_json"
2638
+ version = "1.0.148"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
2641
+ dependencies = [
2642
+ "itoa",
2643
+ "memchr",
2644
+ "serde",
2645
+ "serde_core",
2646
+ "zmij",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "serde_urlencoded"
2651
+ version = "0.7.1"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2654
+ dependencies = [
2655
+ "form_urlencoded",
2656
+ "itoa",
2657
+ "ryu",
2658
+ "serde",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "sha1"
2663
+ version = "0.10.6"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2666
+ dependencies = [
2667
+ "cfg-if",
2668
+ "cpufeatures 0.2.17",
2669
+ "digest",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "sha2"
2674
+ version = "0.10.9"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2677
+ dependencies = [
2678
+ "cfg-if",
2679
+ "cpufeatures 0.2.17",
2680
+ "digest",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "shlex"
2685
+ version = "1.3.0"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2688
+
2689
+ [[package]]
2690
+ name = "signature"
2691
+ version = "2.2.0"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2694
+ dependencies = [
2695
+ "digest",
2696
+ "rand_core 0.6.4",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "simd-adler32"
2701
+ version = "0.3.9"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2704
+
2705
+ [[package]]
2706
+ name = "simdutf8"
2707
+ version = "0.1.5"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2710
+
2711
+ [[package]]
2712
+ name = "siphasher"
2713
+ version = "1.0.2"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2716
+
2717
+ [[package]]
2718
+ name = "slab"
2719
+ version = "0.4.11"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2722
+
2723
+ [[package]]
2724
+ name = "smallvec"
2725
+ version = "1.15.1"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2728
+ dependencies = [
2729
+ "serde",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "snap"
2734
+ version = "1.1.1"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2737
+
2738
+ [[package]]
2739
+ name = "socket2"
2740
+ version = "0.6.1"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2743
+ dependencies = [
2744
+ "libc",
2745
+ "windows-sys 0.60.2",
2746
+ ]
2747
+
2748
+ [[package]]
2749
+ name = "spin"
2750
+ version = "0.9.8"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2753
+ dependencies = [
2754
+ "lock_api",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "spki"
2759
+ version = "0.7.3"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2762
+ dependencies = [
2763
+ "base64ct",
2764
+ "der",
2765
+ ]
2766
+
2767
+ [[package]]
2768
+ name = "sqlx"
2769
+ version = "0.8.6"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
2772
+ dependencies = [
2773
+ "sqlx-core",
2774
+ "sqlx-macros",
2775
+ "sqlx-mysql",
2776
+ "sqlx-postgres",
2777
+ "sqlx-sqlite",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "sqlx-core"
2782
+ version = "0.8.6"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
2785
+ dependencies = [
2786
+ "base64",
2787
+ "bytes",
2788
+ "chrono",
2789
+ "crc",
2790
+ "crossbeam-queue",
2791
+ "either",
2792
+ "event-listener",
2793
+ "futures-core",
2794
+ "futures-intrusive",
2795
+ "futures-io",
2796
+ "futures-util",
2797
+ "hashbrown 0.15.5",
2798
+ "hashlink",
2799
+ "indexmap",
2800
+ "log",
2801
+ "memchr",
2802
+ "once_cell",
2803
+ "percent-encoding",
2804
+ "rust_decimal",
2805
+ "rustls",
2806
+ "serde",
2807
+ "serde_json",
2808
+ "sha2",
2809
+ "smallvec",
2810
+ "thiserror 2.0.18",
2811
+ "tokio",
2812
+ "tokio-stream",
2813
+ "tracing",
2814
+ "url",
2815
+ "uuid",
2816
+ "webpki-roots 0.26.11",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "sqlx-macros"
2821
+ version = "0.8.6"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
2824
+ dependencies = [
2825
+ "proc-macro2",
2826
+ "quote",
2827
+ "sqlx-core",
2828
+ "sqlx-macros-core",
2829
+ "syn 2.0.117",
2830
+ ]
2831
+
2832
+ [[package]]
2833
+ name = "sqlx-macros-core"
2834
+ version = "0.8.6"
2835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2836
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
2837
+ dependencies = [
2838
+ "dotenvy",
2839
+ "either",
2840
+ "heck 0.5.0",
2841
+ "hex",
2842
+ "once_cell",
2843
+ "proc-macro2",
2844
+ "quote",
2845
+ "serde",
2846
+ "serde_json",
2847
+ "sha2",
2848
+ "sqlx-core",
2849
+ "sqlx-mysql",
2850
+ "sqlx-postgres",
2851
+ "sqlx-sqlite",
2852
+ "syn 2.0.117",
2853
+ "tokio",
2854
+ "url",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "sqlx-mysql"
2859
+ version = "0.8.6"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
2862
+ dependencies = [
2863
+ "atoi",
2864
+ "base64",
2865
+ "bitflags",
2866
+ "byteorder",
2867
+ "bytes",
2868
+ "chrono",
2869
+ "crc",
2870
+ "digest",
2871
+ "dotenvy",
2872
+ "either",
2873
+ "futures-channel",
2874
+ "futures-core",
2875
+ "futures-io",
2876
+ "futures-util",
2877
+ "generic-array",
2878
+ "hex",
2879
+ "hkdf",
2880
+ "hmac",
2881
+ "itoa",
2882
+ "log",
2883
+ "md-5",
2884
+ "memchr",
2885
+ "once_cell",
2886
+ "percent-encoding",
2887
+ "rand 0.8.5",
2888
+ "rsa",
2889
+ "rust_decimal",
2890
+ "serde",
2891
+ "sha1",
2892
+ "sha2",
2893
+ "smallvec",
2894
+ "sqlx-core",
2895
+ "stringprep",
2896
+ "thiserror 2.0.18",
2897
+ "tracing",
2898
+ "uuid",
2899
+ "whoami",
2900
+ ]
2901
+
2902
+ [[package]]
2903
+ name = "sqlx-postgres"
2904
+ version = "0.8.6"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
2907
+ dependencies = [
2908
+ "atoi",
2909
+ "base64",
2910
+ "bitflags",
2911
+ "byteorder",
2912
+ "chrono",
2913
+ "crc",
2914
+ "dotenvy",
2915
+ "etcetera",
2916
+ "futures-channel",
2917
+ "futures-core",
2918
+ "futures-util",
2919
+ "hex",
2920
+ "hkdf",
2921
+ "hmac",
2922
+ "home",
2923
+ "itoa",
2924
+ "log",
2925
+ "md-5",
2926
+ "memchr",
2927
+ "once_cell",
2928
+ "rand 0.8.5",
2929
+ "rust_decimal",
2930
+ "serde",
2931
+ "serde_json",
2932
+ "sha2",
2933
+ "smallvec",
2934
+ "sqlx-core",
2935
+ "stringprep",
2936
+ "thiserror 2.0.18",
2937
+ "tracing",
2938
+ "uuid",
2939
+ "whoami",
2940
+ ]
2941
+
2942
+ [[package]]
2943
+ name = "sqlx-sqlite"
2944
+ version = "0.8.6"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
2947
+ dependencies = [
2948
+ "atoi",
2949
+ "chrono",
2950
+ "flume",
2951
+ "futures-channel",
2952
+ "futures-core",
2953
+ "futures-executor",
2954
+ "futures-intrusive",
2955
+ "futures-util",
2956
+ "libsqlite3-sys",
2957
+ "log",
2958
+ "percent-encoding",
2959
+ "serde",
2960
+ "serde_urlencoded",
2961
+ "sqlx-core",
2962
+ "thiserror 2.0.18",
2963
+ "tracing",
2964
+ "url",
2965
+ "uuid",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "stable_deref_trait"
2970
+ version = "1.2.1"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2973
+
2974
+ [[package]]
2975
+ name = "stringprep"
2976
+ version = "0.1.5"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2979
+ dependencies = [
2980
+ "unicode-bidi",
2981
+ "unicode-normalization",
2982
+ "unicode-properties",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "strum"
2987
+ version = "0.28.0"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
2990
+ dependencies = [
2991
+ "strum_macros",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "strum_macros"
2996
+ version = "0.28.0"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
2999
+ dependencies = [
3000
+ "heck 0.5.0",
3001
+ "proc-macro2",
3002
+ "quote",
3003
+ "syn 2.0.117",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "subtle"
3008
+ version = "2.6.1"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3011
+
3012
+ [[package]]
3013
+ name = "syn"
3014
+ version = "1.0.109"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3017
+ dependencies = [
3018
+ "proc-macro2",
3019
+ "quote",
3020
+ "unicode-ident",
3021
+ ]
3022
+
3023
+ [[package]]
3024
+ name = "syn"
3025
+ version = "2.0.117"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3028
+ dependencies = [
3029
+ "proc-macro2",
3030
+ "quote",
3031
+ "unicode-ident",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "sync_wrapper"
3036
+ version = "1.0.2"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3039
+ dependencies = [
3040
+ "futures-core",
3041
+ ]
3042
+
3043
+ [[package]]
3044
+ name = "synstructure"
3045
+ version = "0.13.2"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3048
+ dependencies = [
3049
+ "proc-macro2",
3050
+ "quote",
3051
+ "syn 2.0.117",
3052
+ ]
3053
+
3054
+ [[package]]
3055
+ name = "tap"
3056
+ version = "1.0.1"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3059
+
3060
+ [[package]]
3061
+ name = "target-lexicon"
3062
+ version = "0.13.4"
3063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
3065
+
3066
+ [[package]]
3067
+ name = "thiserror"
3068
+ version = "1.0.69"
3069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3070
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3071
+ dependencies = [
3072
+ "thiserror-impl 1.0.69",
3073
+ ]
3074
+
3075
+ [[package]]
3076
+ name = "thiserror"
3077
+ version = "2.0.18"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3080
+ dependencies = [
3081
+ "thiserror-impl 2.0.18",
3082
+ ]
3083
+
3084
+ [[package]]
3085
+ name = "thiserror-impl"
3086
+ version = "1.0.69"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3089
+ dependencies = [
3090
+ "proc-macro2",
3091
+ "quote",
3092
+ "syn 2.0.117",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "thiserror-impl"
3097
+ version = "2.0.18"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3100
+ dependencies = [
3101
+ "proc-macro2",
3102
+ "quote",
3103
+ "syn 2.0.117",
3104
+ ]
3105
+
3106
+ [[package]]
3107
+ name = "thrift"
3108
+ version = "0.17.0"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
3111
+ dependencies = [
3112
+ "byteorder",
3113
+ "integer-encoding",
3114
+ "ordered-float",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "tiny-keccak"
3119
+ version = "2.0.2"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3122
+ dependencies = [
3123
+ "crunchy",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "tinystr"
3128
+ version = "0.8.2"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3131
+ dependencies = [
3132
+ "displaydoc",
3133
+ "zerovec",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "tinyvec"
3138
+ version = "1.10.0"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3141
+ dependencies = [
3142
+ "tinyvec_macros",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "tinyvec_macros"
3147
+ version = "0.1.1"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3150
+
3151
+ [[package]]
3152
+ name = "tokio"
3153
+ version = "1.50.0"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
3156
+ dependencies = [
3157
+ "bytes",
3158
+ "libc",
3159
+ "mio",
3160
+ "pin-project-lite",
3161
+ "socket2",
3162
+ "tokio-macros",
3163
+ "windows-sys 0.61.2",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "tokio-macros"
3168
+ version = "2.6.0"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3171
+ dependencies = [
3172
+ "proc-macro2",
3173
+ "quote",
3174
+ "syn 2.0.117",
3175
+ ]
3176
+
3177
+ [[package]]
3178
+ name = "tokio-rustls"
3179
+ version = "0.26.4"
3180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3181
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3182
+ dependencies = [
3183
+ "rustls",
3184
+ "tokio",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "tokio-stream"
3189
+ version = "0.1.17"
3190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3191
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3192
+ dependencies = [
3193
+ "futures-core",
3194
+ "pin-project-lite",
3195
+ "tokio",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "tokio-util"
3200
+ version = "0.7.18"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3203
+ dependencies = [
3204
+ "bytes",
3205
+ "futures-core",
3206
+ "futures-sink",
3207
+ "pin-project-lite",
3208
+ "tokio",
3209
+ ]
3210
+
3211
+ [[package]]
3212
+ name = "toml_datetime"
3213
+ version = "0.7.5+spec-1.1.0"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
3216
+ dependencies = [
3217
+ "serde_core",
3218
+ ]
3219
+
3220
+ [[package]]
3221
+ name = "toml_edit"
3222
+ version = "0.23.10+spec-1.0.0"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
3225
+ dependencies = [
3226
+ "indexmap",
3227
+ "toml_datetime",
3228
+ "toml_parser",
3229
+ "winnow",
3230
+ ]
3231
+
3232
+ [[package]]
3233
+ name = "toml_parser"
3234
+ version = "1.0.6+spec-1.1.0"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
3237
+ dependencies = [
3238
+ "winnow",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "tower"
3243
+ version = "0.5.3"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3246
+ dependencies = [
3247
+ "futures-core",
3248
+ "futures-util",
3249
+ "pin-project-lite",
3250
+ "sync_wrapper",
3251
+ "tokio",
3252
+ "tower-layer",
3253
+ "tower-service",
3254
+ ]
3255
+
3256
+ [[package]]
3257
+ name = "tower-http"
3258
+ version = "0.6.8"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3261
+ dependencies = [
3262
+ "bitflags",
3263
+ "bytes",
3264
+ "futures-util",
3265
+ "http",
3266
+ "http-body",
3267
+ "iri-string",
3268
+ "pin-project-lite",
3269
+ "tower",
3270
+ "tower-layer",
3271
+ "tower-service",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "tower-layer"
3276
+ version = "0.3.3"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3279
+
3280
+ [[package]]
3281
+ name = "tower-service"
3282
+ version = "0.3.3"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3285
+
3286
+ [[package]]
3287
+ name = "tracing"
3288
+ version = "0.1.44"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3291
+ dependencies = [
3292
+ "log",
3293
+ "pin-project-lite",
3294
+ "tracing-attributes",
3295
+ "tracing-core",
3296
+ ]
3297
+
3298
+ [[package]]
3299
+ name = "tracing-attributes"
3300
+ version = "0.1.31"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3303
+ dependencies = [
3304
+ "proc-macro2",
3305
+ "quote",
3306
+ "syn 2.0.117",
3307
+ ]
3308
+
3309
+ [[package]]
3310
+ name = "tracing-core"
3311
+ version = "0.1.36"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3314
+ dependencies = [
3315
+ "once_cell",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "try-lock"
3320
+ version = "0.2.5"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3323
+
3324
+ [[package]]
3325
+ name = "twox-hash"
3326
+ version = "2.1.2"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3329
+
3330
+ [[package]]
3331
+ name = "typenum"
3332
+ version = "1.19.0"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3335
+
3336
+ [[package]]
3337
+ name = "unicode-bidi"
3338
+ version = "0.3.18"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3341
+
3342
+ [[package]]
3343
+ name = "unicode-ident"
3344
+ version = "1.0.22"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3347
+
3348
+ [[package]]
3349
+ name = "unicode-normalization"
3350
+ version = "0.1.25"
3351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3352
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3353
+ dependencies = [
3354
+ "tinyvec",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "unicode-properties"
3359
+ version = "0.1.4"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3362
+
3363
+ [[package]]
3364
+ name = "unicode-segmentation"
3365
+ version = "1.13.2"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
3368
+
3369
+ [[package]]
3370
+ name = "unicode-width"
3371
+ version = "0.2.2"
3372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3373
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3374
+
3375
+ [[package]]
3376
+ name = "unicode-xid"
3377
+ version = "0.2.6"
3378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3379
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3380
+
3381
+ [[package]]
3382
+ name = "untrusted"
3383
+ version = "0.9.0"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3386
+
3387
+ [[package]]
3388
+ name = "url"
3389
+ version = "2.5.8"
3390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3391
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3392
+ dependencies = [
3393
+ "form_urlencoded",
3394
+ "idna",
3395
+ "percent-encoding",
3396
+ "serde",
3397
+ ]
3398
+
3399
+ [[package]]
3400
+ name = "utf8_iter"
3401
+ version = "1.0.4"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3404
+
3405
+ [[package]]
3406
+ name = "uuid"
3407
+ version = "1.23.1"
3408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3409
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
3410
+ dependencies = [
3411
+ "getrandom 0.4.2",
3412
+ "js-sys",
3413
+ "wasm-bindgen",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "vcpkg"
3418
+ version = "0.2.15"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3421
+
3422
+ [[package]]
3423
+ name = "version_check"
3424
+ version = "0.9.5"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3427
+
3428
+ [[package]]
3429
+ name = "walkdir"
3430
+ version = "2.5.0"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3433
+ dependencies = [
3434
+ "same-file",
3435
+ "winapi-util",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "want"
3440
+ version = "0.3.1"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3443
+ dependencies = [
3444
+ "try-lock",
3445
+ ]
3446
+
3447
+ [[package]]
3448
+ name = "wasi"
3449
+ version = "0.11.1+wasi-snapshot-preview1"
3450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3451
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3452
+
3453
+ [[package]]
3454
+ name = "wasip2"
3455
+ version = "1.0.1+wasi-0.2.4"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3458
+ dependencies = [
3459
+ "wit-bindgen 0.46.0",
3460
+ ]
3461
+
3462
+ [[package]]
3463
+ name = "wasip3"
3464
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3467
+ dependencies = [
3468
+ "wit-bindgen 0.51.0",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "wasite"
3473
+ version = "0.1.0"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3476
+
3477
+ [[package]]
3478
+ name = "wasm-bindgen"
3479
+ version = "0.2.106"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3482
+ dependencies = [
3483
+ "cfg-if",
3484
+ "once_cell",
3485
+ "rustversion",
3486
+ "serde",
3487
+ "wasm-bindgen-macro",
3488
+ "wasm-bindgen-shared",
3489
+ ]
3490
+
3491
+ [[package]]
3492
+ name = "wasm-bindgen-futures"
3493
+ version = "0.4.56"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3496
+ dependencies = [
3497
+ "cfg-if",
3498
+ "js-sys",
3499
+ "once_cell",
3500
+ "wasm-bindgen",
3501
+ "web-sys",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "wasm-bindgen-macro"
3506
+ version = "0.2.106"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3509
+ dependencies = [
3510
+ "quote",
3511
+ "wasm-bindgen-macro-support",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "wasm-bindgen-macro-support"
3516
+ version = "0.2.106"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3519
+ dependencies = [
3520
+ "bumpalo",
3521
+ "proc-macro2",
3522
+ "quote",
3523
+ "syn 2.0.117",
3524
+ "wasm-bindgen-shared",
3525
+ ]
3526
+
3527
+ [[package]]
3528
+ name = "wasm-bindgen-shared"
3529
+ version = "0.2.106"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3532
+ dependencies = [
3533
+ "unicode-ident",
3534
+ ]
3535
+
3536
+ [[package]]
3537
+ name = "wasm-encoder"
3538
+ version = "0.244.0"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3541
+ dependencies = [
3542
+ "leb128fmt",
3543
+ "wasmparser",
3544
+ ]
3545
+
3546
+ [[package]]
3547
+ name = "wasm-metadata"
3548
+ version = "0.244.0"
3549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3550
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3551
+ dependencies = [
3552
+ "anyhow",
3553
+ "indexmap",
3554
+ "wasm-encoder",
3555
+ "wasmparser",
3556
+ ]
3557
+
3558
+ [[package]]
3559
+ name = "wasm-streams"
3560
+ version = "0.4.2"
3561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3562
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3563
+ dependencies = [
3564
+ "futures-util",
3565
+ "js-sys",
3566
+ "wasm-bindgen",
3567
+ "wasm-bindgen-futures",
3568
+ "web-sys",
3569
+ ]
3570
+
3571
+ [[package]]
3572
+ name = "wasmparser"
3573
+ version = "0.244.0"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3576
+ dependencies = [
3577
+ "bitflags",
3578
+ "hashbrown 0.15.5",
3579
+ "indexmap",
3580
+ "semver",
3581
+ ]
3582
+
3583
+ [[package]]
3584
+ name = "web-sys"
3585
+ version = "0.3.83"
3586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3587
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3588
+ dependencies = [
3589
+ "js-sys",
3590
+ "wasm-bindgen",
3591
+ ]
3592
+
3593
+ [[package]]
3594
+ name = "web-time"
3595
+ version = "1.1.0"
3596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3597
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3598
+ dependencies = [
3599
+ "js-sys",
3600
+ "wasm-bindgen",
3601
+ ]
3602
+
3603
+ [[package]]
3604
+ name = "webpki-roots"
3605
+ version = "0.26.11"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3608
+ dependencies = [
3609
+ "webpki-roots 1.0.4",
3610
+ ]
3611
+
3612
+ [[package]]
3613
+ name = "webpki-roots"
3614
+ version = "1.0.4"
3615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3616
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
3617
+ dependencies = [
3618
+ "rustls-pki-types",
3619
+ ]
3620
+
3621
+ [[package]]
3622
+ name = "whoami"
3623
+ version = "1.6.1"
3624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3625
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
3626
+ dependencies = [
3627
+ "libredox",
3628
+ "wasite",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "winapi-util"
3633
+ version = "0.1.11"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3636
+ dependencies = [
3637
+ "windows-sys 0.61.2",
3638
+ ]
3639
+
3640
+ [[package]]
3641
+ name = "windows-core"
3642
+ version = "0.62.2"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3645
+ dependencies = [
3646
+ "windows-implement",
3647
+ "windows-interface",
3648
+ "windows-link",
3649
+ "windows-result",
3650
+ "windows-strings",
3651
+ ]
3652
+
3653
+ [[package]]
3654
+ name = "windows-implement"
3655
+ version = "0.60.2"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3658
+ dependencies = [
3659
+ "proc-macro2",
3660
+ "quote",
3661
+ "syn 2.0.117",
3662
+ ]
3663
+
3664
+ [[package]]
3665
+ name = "windows-interface"
3666
+ version = "0.59.3"
3667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3668
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3669
+ dependencies = [
3670
+ "proc-macro2",
3671
+ "quote",
3672
+ "syn 2.0.117",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "windows-link"
3677
+ version = "0.2.1"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3680
+
3681
+ [[package]]
3682
+ name = "windows-result"
3683
+ version = "0.4.1"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3686
+ dependencies = [
3687
+ "windows-link",
3688
+ ]
3689
+
3690
+ [[package]]
3691
+ name = "windows-strings"
3692
+ version = "0.5.1"
3693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3694
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3695
+ dependencies = [
3696
+ "windows-link",
3697
+ ]
3698
+
3699
+ [[package]]
3700
+ name = "windows-sys"
3701
+ version = "0.48.0"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3704
+ dependencies = [
3705
+ "windows-targets 0.48.5",
3706
+ ]
3707
+
3708
+ [[package]]
3709
+ name = "windows-sys"
3710
+ version = "0.52.0"
3711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3712
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3713
+ dependencies = [
3714
+ "windows-targets 0.52.6",
3715
+ ]
3716
+
3717
+ [[package]]
3718
+ name = "windows-sys"
3719
+ version = "0.60.2"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3722
+ dependencies = [
3723
+ "windows-targets 0.53.5",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "windows-sys"
3728
+ version = "0.61.2"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3731
+ dependencies = [
3732
+ "windows-link",
3733
+ ]
3734
+
3735
+ [[package]]
3736
+ name = "windows-targets"
3737
+ version = "0.48.5"
3738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3739
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3740
+ dependencies = [
3741
+ "windows_aarch64_gnullvm 0.48.5",
3742
+ "windows_aarch64_msvc 0.48.5",
3743
+ "windows_i686_gnu 0.48.5",
3744
+ "windows_i686_msvc 0.48.5",
3745
+ "windows_x86_64_gnu 0.48.5",
3746
+ "windows_x86_64_gnullvm 0.48.5",
3747
+ "windows_x86_64_msvc 0.48.5",
3748
+ ]
3749
+
3750
+ [[package]]
3751
+ name = "windows-targets"
3752
+ version = "0.52.6"
3753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3754
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3755
+ dependencies = [
3756
+ "windows_aarch64_gnullvm 0.52.6",
3757
+ "windows_aarch64_msvc 0.52.6",
3758
+ "windows_i686_gnu 0.52.6",
3759
+ "windows_i686_gnullvm 0.52.6",
3760
+ "windows_i686_msvc 0.52.6",
3761
+ "windows_x86_64_gnu 0.52.6",
3762
+ "windows_x86_64_gnullvm 0.52.6",
3763
+ "windows_x86_64_msvc 0.52.6",
3764
+ ]
3765
+
3766
+ [[package]]
3767
+ name = "windows-targets"
3768
+ version = "0.53.5"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3771
+ dependencies = [
3772
+ "windows-link",
3773
+ "windows_aarch64_gnullvm 0.53.1",
3774
+ "windows_aarch64_msvc 0.53.1",
3775
+ "windows_i686_gnu 0.53.1",
3776
+ "windows_i686_gnullvm 0.53.1",
3777
+ "windows_i686_msvc 0.53.1",
3778
+ "windows_x86_64_gnu 0.53.1",
3779
+ "windows_x86_64_gnullvm 0.53.1",
3780
+ "windows_x86_64_msvc 0.53.1",
3781
+ ]
3782
+
3783
+ [[package]]
3784
+ name = "windows_aarch64_gnullvm"
3785
+ version = "0.48.5"
3786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3787
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3788
+
3789
+ [[package]]
3790
+ name = "windows_aarch64_gnullvm"
3791
+ version = "0.52.6"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3794
+
3795
+ [[package]]
3796
+ name = "windows_aarch64_gnullvm"
3797
+ version = "0.53.1"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3800
+
3801
+ [[package]]
3802
+ name = "windows_aarch64_msvc"
3803
+ version = "0.48.5"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3806
+
3807
+ [[package]]
3808
+ name = "windows_aarch64_msvc"
3809
+ version = "0.52.6"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3812
+
3813
+ [[package]]
3814
+ name = "windows_aarch64_msvc"
3815
+ version = "0.53.1"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3818
+
3819
+ [[package]]
3820
+ name = "windows_i686_gnu"
3821
+ version = "0.48.5"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3824
+
3825
+ [[package]]
3826
+ name = "windows_i686_gnu"
3827
+ version = "0.52.6"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3830
+
3831
+ [[package]]
3832
+ name = "windows_i686_gnu"
3833
+ version = "0.53.1"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3836
+
3837
+ [[package]]
3838
+ name = "windows_i686_gnullvm"
3839
+ version = "0.52.6"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3842
+
3843
+ [[package]]
3844
+ name = "windows_i686_gnullvm"
3845
+ version = "0.53.1"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3848
+
3849
+ [[package]]
3850
+ name = "windows_i686_msvc"
3851
+ version = "0.48.5"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3854
+
3855
+ [[package]]
3856
+ name = "windows_i686_msvc"
3857
+ version = "0.52.6"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3860
+
3861
+ [[package]]
3862
+ name = "windows_i686_msvc"
3863
+ version = "0.53.1"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3866
+
3867
+ [[package]]
3868
+ name = "windows_x86_64_gnu"
3869
+ version = "0.48.5"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3872
+
3873
+ [[package]]
3874
+ name = "windows_x86_64_gnu"
3875
+ version = "0.52.6"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3878
+
3879
+ [[package]]
3880
+ name = "windows_x86_64_gnu"
3881
+ version = "0.53.1"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3884
+
3885
+ [[package]]
3886
+ name = "windows_x86_64_gnullvm"
3887
+ version = "0.48.5"
3888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3889
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3890
+
3891
+ [[package]]
3892
+ name = "windows_x86_64_gnullvm"
3893
+ version = "0.52.6"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3896
+
3897
+ [[package]]
3898
+ name = "windows_x86_64_gnullvm"
3899
+ version = "0.53.1"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3902
+
3903
+ [[package]]
3904
+ name = "windows_x86_64_msvc"
3905
+ version = "0.48.5"
3906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3907
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3908
+
3909
+ [[package]]
3910
+ name = "windows_x86_64_msvc"
3911
+ version = "0.52.6"
3912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3913
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3914
+
3915
+ [[package]]
3916
+ name = "windows_x86_64_msvc"
3917
+ version = "0.53.1"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3920
+
3921
+ [[package]]
3922
+ name = "winnow"
3923
+ version = "0.7.14"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3926
+ dependencies = [
3927
+ "memchr",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "wit-bindgen"
3932
+ version = "0.46.0"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3935
+
3936
+ [[package]]
3937
+ name = "wit-bindgen"
3938
+ version = "0.51.0"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3941
+ dependencies = [
3942
+ "wit-bindgen-rust-macro",
3943
+ ]
3944
+
3945
+ [[package]]
3946
+ name = "wit-bindgen-core"
3947
+ version = "0.51.0"
3948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3949
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3950
+ dependencies = [
3951
+ "anyhow",
3952
+ "heck 0.5.0",
3953
+ "wit-parser",
3954
+ ]
3955
+
3956
+ [[package]]
3957
+ name = "wit-bindgen-rust"
3958
+ version = "0.51.0"
3959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3960
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3961
+ dependencies = [
3962
+ "anyhow",
3963
+ "heck 0.5.0",
3964
+ "indexmap",
3965
+ "prettyplease",
3966
+ "syn 2.0.117",
3967
+ "wasm-metadata",
3968
+ "wit-bindgen-core",
3969
+ "wit-component",
3970
+ ]
3971
+
3972
+ [[package]]
3973
+ name = "wit-bindgen-rust-macro"
3974
+ version = "0.51.0"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3977
+ dependencies = [
3978
+ "anyhow",
3979
+ "prettyplease",
3980
+ "proc-macro2",
3981
+ "quote",
3982
+ "syn 2.0.117",
3983
+ "wit-bindgen-core",
3984
+ "wit-bindgen-rust",
3985
+ ]
3986
+
3987
+ [[package]]
3988
+ name = "wit-component"
3989
+ version = "0.244.0"
3990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3991
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3992
+ dependencies = [
3993
+ "anyhow",
3994
+ "bitflags",
3995
+ "indexmap",
3996
+ "log",
3997
+ "serde",
3998
+ "serde_derive",
3999
+ "serde_json",
4000
+ "wasm-encoder",
4001
+ "wasm-metadata",
4002
+ "wasmparser",
4003
+ "wit-parser",
4004
+ ]
4005
+
4006
+ [[package]]
4007
+ name = "wit-parser"
4008
+ version = "0.244.0"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4011
+ dependencies = [
4012
+ "anyhow",
4013
+ "id-arena",
4014
+ "indexmap",
4015
+ "log",
4016
+ "semver",
4017
+ "serde",
4018
+ "serde_derive",
4019
+ "serde_json",
4020
+ "unicode-xid",
4021
+ "wasmparser",
4022
+ ]
4023
+
4024
+ [[package]]
4025
+ name = "writeable"
4026
+ version = "0.6.2"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4029
+
4030
+ [[package]]
4031
+ name = "wyz"
4032
+ version = "0.5.1"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
4035
+ dependencies = [
4036
+ "tap",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "yoke"
4041
+ version = "0.8.1"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4044
+ dependencies = [
4045
+ "stable_deref_trait",
4046
+ "yoke-derive",
4047
+ "zerofrom",
4048
+ ]
4049
+
4050
+ [[package]]
4051
+ name = "yoke-derive"
4052
+ version = "0.8.1"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4055
+ dependencies = [
4056
+ "proc-macro2",
4057
+ "quote",
4058
+ "syn 2.0.117",
4059
+ "synstructure",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "zerocopy"
4064
+ version = "0.8.31"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
4067
+ dependencies = [
4068
+ "zerocopy-derive",
4069
+ ]
4070
+
4071
+ [[package]]
4072
+ name = "zerocopy-derive"
4073
+ version = "0.8.31"
4074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4075
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
4076
+ dependencies = [
4077
+ "proc-macro2",
4078
+ "quote",
4079
+ "syn 2.0.117",
4080
+ ]
4081
+
4082
+ [[package]]
4083
+ name = "zerofrom"
4084
+ version = "0.1.6"
4085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4086
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4087
+ dependencies = [
4088
+ "zerofrom-derive",
4089
+ ]
4090
+
4091
+ [[package]]
4092
+ name = "zerofrom-derive"
4093
+ version = "0.1.6"
4094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4095
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4096
+ dependencies = [
4097
+ "proc-macro2",
4098
+ "quote",
4099
+ "syn 2.0.117",
4100
+ "synstructure",
4101
+ ]
4102
+
4103
+ [[package]]
4104
+ name = "zeroize"
4105
+ version = "1.8.2"
4106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4107
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4108
+
4109
+ [[package]]
4110
+ name = "zerotrie"
4111
+ version = "0.2.3"
4112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4113
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4114
+ dependencies = [
4115
+ "displaydoc",
4116
+ "yoke",
4117
+ "zerofrom",
4118
+ ]
4119
+
4120
+ [[package]]
4121
+ name = "zerovec"
4122
+ version = "0.11.5"
4123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4124
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4125
+ dependencies = [
4126
+ "yoke",
4127
+ "zerofrom",
4128
+ "zerovec-derive",
4129
+ ]
4130
+
4131
+ [[package]]
4132
+ name = "zerovec-derive"
4133
+ version = "0.11.2"
4134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4135
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4136
+ dependencies = [
4137
+ "proc-macro2",
4138
+ "quote",
4139
+ "syn 2.0.117",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "zlib-rs"
4144
+ version = "0.6.3"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
4147
+
4148
+ [[package]]
4149
+ name = "zmij"
4150
+ version = "1.0.0"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "e6d6085d62852e35540689d1f97ad663e3971fc19cf5eceab364d62c646ea167"
4153
+
4154
+ [[package]]
4155
+ name = "zstd"
4156
+ version = "0.13.3"
4157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4158
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4159
+ dependencies = [
4160
+ "zstd-safe",
4161
+ ]
4162
+
4163
+ [[package]]
4164
+ name = "zstd-safe"
4165
+ version = "7.2.4"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4168
+ dependencies = [
4169
+ "zstd-sys",
4170
+ ]
4171
+
4172
+ [[package]]
4173
+ name = "zstd-sys"
4174
+ version = "2.0.16+zstd.1.5.7"
4175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4176
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4177
+ dependencies = [
4178
+ "cc",
4179
+ "pkg-config",
4180
+ ]