pylon-db 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. pylon_db-0.1.0/Cargo.lock +3332 -0
  2. pylon_db-0.1.0/Cargo.toml +6 -0
  3. pylon_db-0.1.0/LICENSE-APACHE +201 -0
  4. pylon_db-0.1.0/LICENSE-MIT +21 -0
  5. pylon_db-0.1.0/PKG-INFO +128 -0
  6. pylon_db-0.1.0/README.md +109 -0
  7. pylon_db-0.1.0/crates/pylon-cache/Cargo.toml +14 -0
  8. pylon_db-0.1.0/crates/pylon-cache/src/lib.rs +23 -0
  9. pylon_db-0.1.0/crates/pylon-cache/src/store.rs +566 -0
  10. pylon_db-0.1.0/crates/pylon-client/Cargo.toml +23 -0
  11. pylon_db-0.1.0/crates/pylon-client/src/cache.rs +380 -0
  12. pylon_db-0.1.0/crates/pylon-client/src/client.rs +503 -0
  13. pylon_db-0.1.0/crates/pylon-client/src/decode.rs +870 -0
  14. pylon_db-0.1.0/crates/pylon-client/src/error.rs +125 -0
  15. pylon_db-0.1.0/crates/pylon-client/src/exec.rs +335 -0
  16. pylon_db-0.1.0/crates/pylon-client/src/json.rs +259 -0
  17. pylon_db-0.1.0/crates/pylon-client/src/lib.rs +50 -0
  18. pylon_db-0.1.0/crates/pylon-client/src/listen.rs +465 -0
  19. pylon_db-0.1.0/crates/pylon-client/src/schema.rs +102 -0
  20. pylon_db-0.1.0/crates/pylon-client/src/transaction.rs +192 -0
  21. pylon_db-0.1.0/crates/pylon-client/src/value.rs +151 -0
  22. pylon_db-0.1.0/crates/pylon-client/tests/live_execution_basic.rs +654 -0
  23. pylon_db-0.1.0/crates/pylon-core/Cargo.toml +19 -0
  24. pylon_db-0.1.0/crates/pylon-core/build.rs +56 -0
  25. pylon_db-0.1.0/crates/pylon-core/examples/compile.rs +307 -0
  26. pylon_db-0.1.0/crates/pylon-core/src/analyze.rs +740 -0
  27. pylon_db-0.1.0/crates/pylon-core/src/cast/matrix.rs +111 -0
  28. pylon_db-0.1.0/crates/pylon-core/src/cast/mod.rs +75 -0
  29. pylon_db-0.1.0/crates/pylon-core/src/diff/mod.rs +6034 -0
  30. pylon_db-0.1.0/crates/pylon-core/src/error.rs +162 -0
  31. pylon_db-0.1.0/crates/pylon-core/src/export/mod.rs +4672 -0
  32. pylon_db-0.1.0/crates/pylon-core/src/export/python_snippet.rs +509 -0
  33. pylon_db-0.1.0/crates/pylon-core/src/introspect.rs +676 -0
  34. pylon_db-0.1.0/crates/pylon-core/src/ir/compiler.rs +16530 -0
  35. pylon_db-0.1.0/crates/pylon-core/src/ir/mod.rs +2407 -0
  36. pylon_db-0.1.0/crates/pylon-core/src/ir/tags.rs +848 -0
  37. pylon_db-0.1.0/crates/pylon-core/src/lib.rs +50 -0
  38. pylon_db-0.1.0/crates/pylon-core/src/migrate.rs +1314 -0
  39. pylon_db-0.1.0/crates/pylon-core/src/migration/mod.rs +791 -0
  40. pylon_db-0.1.0/crates/pylon-core/src/parse/ast.rs +539 -0
  41. pylon_db-0.1.0/crates/pylon-core/src/parse/lexer.rs +696 -0
  42. pylon_db-0.1.0/crates/pylon-core/src/parse/mod.rs +638 -0
  43. pylon_db-0.1.0/crates/pylon-core/src/parse/parser.rs +2052 -0
  44. pylon_db-0.1.0/crates/pylon-core/src/query/mod.rs +704 -0
  45. pylon_db-0.1.0/crates/pylon-core/src/schema/mod.rs +672 -0
  46. pylon_db-0.1.0/crates/pylon-core/src/shape_id.rs +101 -0
  47. pylon_db-0.1.0/crates/pylon-core/src/sql/mod.rs +13676 -0
  48. pylon_db-0.1.0/crates/pylon-core/src/stdlib/ddl.rs +492 -0
  49. pylon_db-0.1.0/crates/pylon-core/src/stdlib/mod.rs +375 -0
  50. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/cal_ns.rs +240 -0
  51. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/crypto_ns.rs +80 -0
  52. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/math_ns.rs +116 -0
  53. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/mod.rs +242 -0
  54. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/pgvector_ns.rs +54 -0
  55. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/postgis_ns.rs +4262 -0
  56. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/std_ns.rs +1224 -0
  57. pylon_db-0.1.0/crates/pylon-core/src/stdlib/registry/sys_ns.rs +42 -0
  58. pylon_db-0.1.0/crates/pylon-core/src/validate.rs +923 -0
  59. pylon_db-0.1.0/crates/pylon-core/tests/bench_hot_path.rs +187 -0
  60. pylon_db-0.1.0/crates/pylon-core/tests/common/mod.rs +211 -0
  61. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_aliases.rs +361 -0
  62. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_backlinks.rs +725 -0
  63. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_cast_matrix.rs +75 -0
  64. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_delete.rs +325 -0
  65. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_for.rs +503 -0
  66. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_functions.rs +493 -0
  67. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_globals.rs +284 -0
  68. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_group.rs +648 -0
  69. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_insert_nested.rs +257 -0
  70. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_interface_exclusive.rs +812 -0
  71. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_linkprops.rs +520 -0
  72. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_locking.rs +256 -0
  73. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_migration_diff.rs +343 -0
  74. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_notify.rs +283 -0
  75. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_on_delete.rs +822 -0
  76. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_rewrites.rs +376 -0
  77. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_signals.rs +221 -0
  78. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_smoke.rs +187 -0
  79. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_triggers.rs +547 -0
  80. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_unless_conflict.rs +313 -0
  81. pylon_db-0.1.0/crates/pylon-core/tests/live_execution_update.rs +705 -0
  82. pylon_db-0.1.0/crates/pylon-pgcon/Cargo.toml +19 -0
  83. pylon_db-0.1.0/crates/pylon-pgcon/src/error.rs +163 -0
  84. pylon_db-0.1.0/crates/pylon-pgcon/src/lib.rs +1766 -0
  85. pylon_db-0.1.0/crates/pylon-pgcon/src/listener.rs +306 -0
  86. pylon_db-0.1.0/crates/pylon-pgcon/src/wire.rs +1516 -0
  87. pylon_db-0.1.0/crates/pylon-providers/Cargo.toml +14 -0
  88. pylon_db-0.1.0/crates/pylon-providers/src/anthropic.rs +134 -0
  89. pylon_db-0.1.0/crates/pylon-providers/src/error.rs +32 -0
  90. pylon_db-0.1.0/crates/pylon-providers/src/lib.rs +34 -0
  91. pylon_db-0.1.0/crates/pylon-providers/src/message.rs +29 -0
  92. pylon_db-0.1.0/crates/pylon-providers/src/openai.rs +170 -0
  93. pylon_db-0.1.0/crates/pylon-providers/tests/anthropic_tests.rs +129 -0
  94. pylon_db-0.1.0/crates/pylon-providers/tests/openai_tests.rs +142 -0
  95. pylon_db-0.1.0/crates/pylon-py/Cargo.toml +23 -0
  96. pylon_db-0.1.0/crates/pylon-py/src/cache.rs +168 -0
  97. pylon_db-0.1.0/crates/pylon-py/src/hydrate.rs +634 -0
  98. pylon_db-0.1.0/crates/pylon-py/src/introspect.rs +44 -0
  99. pylon_db-0.1.0/crates/pylon-py/src/lib.rs +2727 -0
  100. pylon_db-0.1.0/crates/pylon-py/src/migrate.rs +239 -0
  101. pylon_db-0.1.0/crates/pylon-py/src/pgcon.rs +706 -0
  102. pylon_db-0.1.0/crates/pylon-py/src/pgvalue.rs +479 -0
  103. pylon_db-0.1.0/crates/pylon-py/src/providers.rs +73 -0
  104. pylon_db-0.1.0/crates/pylon-py/src/rowset.rs +88 -0
  105. pylon_db-0.1.0/crates/pylon-py/src/workers.rs +99 -0
  106. pylon_db-0.1.0/crates/pylon-value/Cargo.toml +8 -0
  107. pylon_db-0.1.0/crates/pylon-value/src/lib.rs +352 -0
  108. pylon_db-0.1.0/crates/pylon-workers/Cargo.toml +22 -0
  109. pylon_db-0.1.0/crates/pylon-workers/src/cache_worker.rs +198 -0
  110. pylon_db-0.1.0/crates/pylon-workers/src/error.rs +44 -0
  111. pylon_db-0.1.0/crates/pylon-workers/src/index_worker.rs +521 -0
  112. pylon_db-0.1.0/crates/pylon-workers/src/lib.rs +42 -0
  113. pylon_db-0.1.0/crates/pylon-workers/src/metrics.rs +499 -0
  114. pylon_db-0.1.0/crates/pylon-workers/src/partition_worker.rs +134 -0
  115. pylon_db-0.1.0/crates/pylon-workers/src/search_clients.rs +264 -0
  116. pylon_db-0.1.0/crates/pylon-workers/src/search_worker.rs +252 -0
  117. pylon_db-0.1.0/crates/pylon-workers/src/vector_worker.rs +211 -0
  118. pylon_db-0.1.0/crates/pylon-workers/tests/search_clients_tests.rs +239 -0
  119. pylon_db-0.1.0/pylon/__init__.py +249 -0
  120. pylon_db-0.1.0/pylon/_finalize.py +200 -0
  121. pylon_db-0.1.0/pylon/_stubgen.py +234 -0
  122. pylon_db-0.1.0/pylon/cache.py +230 -0
  123. pylon_db-0.1.0/pylon/cli/__init__.py +22 -0
  124. pylon_db-0.1.0/pylon/cli/banner.py +59 -0
  125. pylon_db-0.1.0/pylon/cli/commands/__init__.py +23 -0
  126. pylon_db-0.1.0/pylon/cli/commands/cache.py +84 -0
  127. pylon_db-0.1.0/pylon/cli/commands/completion.py +56 -0
  128. pylon_db-0.1.0/pylon/cli/commands/database.py +237 -0
  129. pylon_db-0.1.0/pylon/cli/commands/info.py +93 -0
  130. pylon_db-0.1.0/pylon/cli/commands/migrations.py +1540 -0
  131. pylon_db-0.1.0/pylon/cli/commands/query.py +866 -0
  132. pylon_db-0.1.0/pylon/cli/commands/version.py +32 -0
  133. pylon_db-0.1.0/pylon/cli/commands/worker.py +243 -0
  134. pylon_db-0.1.0/pylon/cli/config.py +50 -0
  135. pylon_db-0.1.0/pylon/cli/root.py +131 -0
  136. pylon_db-0.1.0/pylon/client.py +1216 -0
  137. pylon_db-0.1.0/pylon/config.py +572 -0
  138. pylon_db-0.1.0/pylon/config_options.py +52 -0
  139. pylon_db-0.1.0/pylon/datatypes.py +329 -0
  140. pylon_db-0.1.0/pylon/exceptions.py +464 -0
  141. pylon_db-0.1.0/pylon/modelquery.py +1148 -0
  142. pylon_db-0.1.0/pylon/namespaces.py +36 -0
  143. pylon_db-0.1.0/pylon/namespaces.pyi +301 -0
  144. pylon_db-0.1.0/pylon/py.typed +0 -0
  145. pylon_db-0.1.0/pylon/query.py +441 -0
  146. pylon_db-0.1.0/pylon/schema/__init__.py +228 -0
  147. pylon_db-0.1.0/pylon/schema/_aliases.py +88 -0
  148. pylon_db-0.1.0/pylon/schema/_base.py +30 -0
  149. pylon_db-0.1.0/pylon/schema/_channels.py +252 -0
  150. pylon_db-0.1.0/pylon/schema/_collector.py +47 -0
  151. pylon_db-0.1.0/pylon/schema/_constraints.py +269 -0
  152. pylon_db-0.1.0/pylon/schema/_decorators.py +739 -0
  153. pylon_db-0.1.0/pylon/schema/_enums.py +84 -0
  154. pylon_db-0.1.0/pylon/schema/_export.py +42 -0
  155. pylon_db-0.1.0/pylon/schema/_functions.py +126 -0
  156. pylon_db-0.1.0/pylon/schema/_globals.py +163 -0
  157. pylon_db-0.1.0/pylon/schema/_indexes.py +236 -0
  158. pylon_db-0.1.0/pylon/schema/_lazy.py +57 -0
  159. pylon_db-0.1.0/pylon/schema/_meta.py +71 -0
  160. pylon_db-0.1.0/pylon/schema/_named_tuples.py +78 -0
  161. pylon_db-0.1.0/pylon/schema/_partition.py +118 -0
  162. pylon_db-0.1.0/pylon/schema/_pointers.py +450 -0
  163. pylon_db-0.1.0/pylon/schema/_registry.py +143 -0
  164. pylon_db-0.1.0/pylon/schema/_scalars.py +298 -0
  165. pylon_db-0.1.0/pylon/schema/_signal_registry.py +70 -0
  166. pylon_db-0.1.0/pylon/schema/_triggers.py +133 -0
  167. pylon_db-0.1.0/pylon/schema/_walker.py +1633 -0
  168. pylon_db-0.1.0/pylon/search/__init__.py +44 -0
  169. pylon_db-0.1.0/pylon/search/meilisearch.py +110 -0
  170. pylon_db-0.1.0/pylon/search/opensearch.py +127 -0
  171. pylon_db-0.1.0/pylon/signals.py +164 -0
  172. pylon_db-0.1.0/pylon/stdlib.py +246 -0
  173. pylon_db-0.1.0/pylon/workers.py +387 -0
  174. pylon_db-0.1.0/pyproject.toml +84 -0
@@ -0,0 +1,3332 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.17",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "1.1.4"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "allocator-api2"
27
+ version = "0.2.21"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
30
+
31
+ [[package]]
32
+ name = "arrayvec"
33
+ version = "0.7.8"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
36
+
37
+ [[package]]
38
+ name = "assert-json-diff"
39
+ version = "2.0.2"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
42
+ dependencies = [
43
+ "serde",
44
+ "serde_json",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "async-trait"
49
+ version = "0.1.89"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
52
+ dependencies = [
53
+ "proc-macro2",
54
+ "quote",
55
+ "syn 2.0.118",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "atomic-waker"
60
+ version = "1.1.2"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
63
+
64
+ [[package]]
65
+ name = "autocfg"
66
+ version = "1.5.1"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
69
+
70
+ [[package]]
71
+ name = "aws-lc-rs"
72
+ version = "1.17.3"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
75
+ dependencies = [
76
+ "aws-lc-sys",
77
+ "zeroize",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "aws-lc-sys"
82
+ version = "0.43.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
85
+ dependencies = [
86
+ "cc",
87
+ "cmake",
88
+ "dunce",
89
+ "fs_extra",
90
+ "pkg-config",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "base64"
95
+ version = "0.22.1"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
98
+
99
+ [[package]]
100
+ name = "bincode"
101
+ version = "1.3.3"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
104
+ dependencies = [
105
+ "serde",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "bitflags"
110
+ version = "1.3.2"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
113
+
114
+ [[package]]
115
+ name = "bitflags"
116
+ version = "2.13.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
119
+ dependencies = [
120
+ "serde_core",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "bitvec"
125
+ version = "1.1.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
128
+ dependencies = [
129
+ "funty",
130
+ "radium",
131
+ "tap",
132
+ "wyz",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "block-buffer"
137
+ version = "0.12.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
140
+ dependencies = [
141
+ "hybrid-array",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "borsh"
146
+ version = "1.8.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
149
+ dependencies = [
150
+ "borsh-derive",
151
+ "bytes",
152
+ "cfg_aliases",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "borsh-derive"
157
+ version = "1.8.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
160
+ dependencies = [
161
+ "once_cell",
162
+ "proc-macro-crate",
163
+ "proc-macro2",
164
+ "quote",
165
+ "syn 2.0.118",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "bumpalo"
170
+ version = "3.20.3"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
173
+
174
+ [[package]]
175
+ name = "bytecheck"
176
+ version = "0.6.12"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
179
+ dependencies = [
180
+ "bytecheck_derive",
181
+ "ptr_meta 0.1.4",
182
+ "simdutf8",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "bytecheck_derive"
187
+ version = "0.6.12"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
190
+ dependencies = [
191
+ "proc-macro2",
192
+ "quote",
193
+ "syn 1.0.109",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "byteorder"
198
+ version = "1.5.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
201
+
202
+ [[package]]
203
+ name = "bytes"
204
+ version = "1.12.1"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
207
+
208
+ [[package]]
209
+ name = "cc"
210
+ version = "1.2.67"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
213
+ dependencies = [
214
+ "find-msvc-tools",
215
+ "jobserver",
216
+ "libc",
217
+ "shlex",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "cfg-if"
222
+ version = "1.0.4"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
225
+
226
+ [[package]]
227
+ name = "cfg_aliases"
228
+ version = "0.2.2"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
231
+
232
+ [[package]]
233
+ name = "chacha20"
234
+ version = "0.10.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
237
+ dependencies = [
238
+ "cfg-if",
239
+ "cpufeatures",
240
+ "rand_core 0.10.1",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "chrono"
245
+ version = "0.4.45"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
248
+ dependencies = [
249
+ "num-traits",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "cmake"
254
+ version = "0.1.58"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
257
+ dependencies = [
258
+ "cc",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "cmov"
263
+ version = "0.5.4"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
266
+
267
+ [[package]]
268
+ name = "combine"
269
+ version = "4.6.7"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
272
+ dependencies = [
273
+ "bytes",
274
+ "memchr",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "const-oid"
279
+ version = "0.10.2"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
282
+
283
+ [[package]]
284
+ name = "core-foundation"
285
+ version = "0.9.4"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
288
+ dependencies = [
289
+ "core-foundation-sys",
290
+ "libc",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "core-foundation"
295
+ version = "0.10.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
298
+ dependencies = [
299
+ "core-foundation-sys",
300
+ "libc",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "core-foundation-sys"
305
+ version = "0.8.7"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
308
+
309
+ [[package]]
310
+ name = "cpufeatures"
311
+ version = "0.3.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
314
+ dependencies = [
315
+ "libc",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "crossbeam-channel"
320
+ version = "0.5.16"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
323
+ dependencies = [
324
+ "crossbeam-utils",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "crossbeam-queue"
329
+ version = "0.3.13"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
332
+ dependencies = [
333
+ "crossbeam-utils",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "crossbeam-utils"
338
+ version = "0.8.22"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
341
+
342
+ [[package]]
343
+ name = "crypto-common"
344
+ version = "0.2.2"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
347
+ dependencies = [
348
+ "hybrid-array",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "ctutils"
353
+ version = "0.4.2"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
356
+ dependencies = [
357
+ "cmov",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "deadpool"
362
+ version = "0.12.3"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
365
+ dependencies = [
366
+ "deadpool-runtime",
367
+ "lazy_static",
368
+ "num_cpus",
369
+ "tokio",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "deadpool-postgres"
374
+ version = "0.14.1"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9"
377
+ dependencies = [
378
+ "async-trait",
379
+ "deadpool",
380
+ "getrandom 0.2.17",
381
+ "tokio",
382
+ "tokio-postgres",
383
+ "tracing",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "deadpool-runtime"
388
+ version = "0.1.4"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
391
+ dependencies = [
392
+ "tokio",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "digest"
397
+ version = "0.11.3"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
400
+ dependencies = [
401
+ "block-buffer",
402
+ "const-oid",
403
+ "crypto-common",
404
+ "ctutils",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "displaydoc"
409
+ version = "0.2.6"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
412
+ dependencies = [
413
+ "proc-macro2",
414
+ "quote",
415
+ "syn 2.0.118",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "doxygen-rs"
420
+ version = "0.4.2"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9"
423
+ dependencies = [
424
+ "phf 0.11.3",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "dunce"
429
+ version = "1.0.5"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
432
+
433
+ [[package]]
434
+ name = "equivalent"
435
+ version = "1.0.2"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
438
+
439
+ [[package]]
440
+ name = "errno"
441
+ version = "0.3.14"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
444
+ dependencies = [
445
+ "libc",
446
+ "windows-sys 0.61.2",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "fallible-iterator"
451
+ version = "0.2.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
454
+
455
+ [[package]]
456
+ name = "fastrand"
457
+ version = "2.4.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
460
+
461
+ [[package]]
462
+ name = "find-msvc-tools"
463
+ version = "0.1.9"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
466
+
467
+ [[package]]
468
+ name = "fluent-uri"
469
+ version = "0.1.4"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
472
+ dependencies = [
473
+ "bitflags 1.3.2",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "fnv"
478
+ version = "1.0.7"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
481
+
482
+ [[package]]
483
+ name = "foldhash"
484
+ version = "0.2.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
487
+
488
+ [[package]]
489
+ name = "form_urlencoded"
490
+ version = "1.2.2"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
493
+ dependencies = [
494
+ "percent-encoding",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "fs_extra"
499
+ version = "1.3.0"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
502
+
503
+ [[package]]
504
+ name = "funty"
505
+ version = "2.0.0"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
508
+
509
+ [[package]]
510
+ name = "futures"
511
+ version = "0.3.32"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
514
+ dependencies = [
515
+ "futures-channel",
516
+ "futures-core",
517
+ "futures-executor",
518
+ "futures-io",
519
+ "futures-sink",
520
+ "futures-task",
521
+ "futures-util",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "futures-channel"
526
+ version = "0.3.32"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
529
+ dependencies = [
530
+ "futures-core",
531
+ "futures-sink",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "futures-core"
536
+ version = "0.3.32"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
539
+
540
+ [[package]]
541
+ name = "futures-executor"
542
+ version = "0.3.32"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
545
+ dependencies = [
546
+ "futures-core",
547
+ "futures-task",
548
+ "futures-util",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "futures-io"
553
+ version = "0.3.32"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
556
+
557
+ [[package]]
558
+ name = "futures-macro"
559
+ version = "0.3.32"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
562
+ dependencies = [
563
+ "proc-macro2",
564
+ "quote",
565
+ "syn 2.0.118",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "futures-sink"
570
+ version = "0.3.32"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
573
+
574
+ [[package]]
575
+ name = "futures-task"
576
+ version = "0.3.32"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
579
+
580
+ [[package]]
581
+ name = "futures-util"
582
+ version = "0.3.32"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
585
+ dependencies = [
586
+ "futures-channel",
587
+ "futures-core",
588
+ "futures-io",
589
+ "futures-macro",
590
+ "futures-sink",
591
+ "futures-task",
592
+ "memchr",
593
+ "pin-project-lite",
594
+ "slab",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "getrandom"
599
+ version = "0.2.17"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
602
+ dependencies = [
603
+ "cfg-if",
604
+ "js-sys",
605
+ "libc",
606
+ "wasi 0.11.1+wasi-snapshot-preview1",
607
+ "wasm-bindgen",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "getrandom"
612
+ version = "0.4.3"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
615
+ dependencies = [
616
+ "cfg-if",
617
+ "js-sys",
618
+ "libc",
619
+ "r-efi",
620
+ "rand_core 0.10.1",
621
+ "wasm-bindgen",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "h2"
626
+ version = "0.4.15"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
629
+ dependencies = [
630
+ "atomic-waker",
631
+ "bytes",
632
+ "fnv",
633
+ "futures-core",
634
+ "futures-sink",
635
+ "http",
636
+ "indexmap",
637
+ "slab",
638
+ "tokio",
639
+ "tokio-util",
640
+ "tracing",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "hashbrown"
645
+ version = "0.12.3"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
648
+ dependencies = [
649
+ "ahash",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "hashbrown"
654
+ version = "0.17.1"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
657
+ dependencies = [
658
+ "allocator-api2",
659
+ "equivalent",
660
+ "foldhash",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "heck"
665
+ version = "0.5.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
668
+
669
+ [[package]]
670
+ name = "heed"
671
+ version = "0.22.1"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "ad82d6598ccf1dac15c8b758a1bd282b755b6776be600429176757190a1b0202"
674
+ dependencies = [
675
+ "bitflags 2.13.1",
676
+ "byteorder",
677
+ "heed-traits",
678
+ "heed-types",
679
+ "libc",
680
+ "lmdb-master-sys",
681
+ "once_cell",
682
+ "page_size",
683
+ "serde",
684
+ "synchronoise",
685
+ "url",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "heed-traits"
690
+ version = "0.20.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "eb3130048d404c57ce5a1ac61a903696e8fcde7e8c2991e9fcfc1f27c3ef74ff"
693
+
694
+ [[package]]
695
+ name = "heed-types"
696
+ version = "0.21.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "13c255bdf46e07fb840d120a36dcc81f385140d7191c76a7391672675c01a55d"
699
+ dependencies = [
700
+ "bincode",
701
+ "byteorder",
702
+ "heed-traits",
703
+ "serde",
704
+ "serde_json",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "hermit-abi"
709
+ version = "0.5.2"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
712
+
713
+ [[package]]
714
+ name = "hex"
715
+ version = "0.4.3"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
718
+
719
+ [[package]]
720
+ name = "hmac"
721
+ version = "0.13.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
724
+ dependencies = [
725
+ "digest",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "http"
730
+ version = "1.4.2"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
733
+ dependencies = [
734
+ "bytes",
735
+ "itoa",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "http-body"
740
+ version = "1.1.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
743
+ dependencies = [
744
+ "bytes",
745
+ "http",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "http-body-util"
750
+ version = "0.1.4"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
753
+ dependencies = [
754
+ "bytes",
755
+ "futures-core",
756
+ "http",
757
+ "http-body",
758
+ "pin-project-lite",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "http-range-header"
763
+ version = "0.4.2"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
766
+
767
+ [[package]]
768
+ name = "httparse"
769
+ version = "1.10.1"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
772
+
773
+ [[package]]
774
+ name = "httpdate"
775
+ version = "1.0.3"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
778
+
779
+ [[package]]
780
+ name = "hybrid-array"
781
+ version = "0.4.13"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
784
+ dependencies = [
785
+ "typenum",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "hyper"
790
+ version = "1.10.1"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
793
+ dependencies = [
794
+ "atomic-waker",
795
+ "bytes",
796
+ "futures-channel",
797
+ "futures-core",
798
+ "h2",
799
+ "http",
800
+ "http-body",
801
+ "httparse",
802
+ "httpdate",
803
+ "itoa",
804
+ "pin-project-lite",
805
+ "smallvec",
806
+ "tokio",
807
+ "want",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "hyper-rustls"
812
+ version = "0.27.9"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
815
+ dependencies = [
816
+ "http",
817
+ "hyper",
818
+ "hyper-util",
819
+ "rustls",
820
+ "tokio",
821
+ "tokio-rustls",
822
+ "tower-service",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "hyper-util"
827
+ version = "0.1.20"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
830
+ dependencies = [
831
+ "base64",
832
+ "bytes",
833
+ "futures-channel",
834
+ "futures-util",
835
+ "http",
836
+ "http-body",
837
+ "hyper",
838
+ "ipnet",
839
+ "libc",
840
+ "percent-encoding",
841
+ "pin-project-lite",
842
+ "socket2",
843
+ "system-configuration",
844
+ "tokio",
845
+ "tower-layer",
846
+ "tower-service",
847
+ "tracing",
848
+ "windows-registry",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "icu_collections"
853
+ version = "2.2.0"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
856
+ dependencies = [
857
+ "displaydoc",
858
+ "potential_utf",
859
+ "utf8_iter",
860
+ "yoke",
861
+ "zerofrom",
862
+ "zerovec",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "icu_locale_core"
867
+ version = "2.2.0"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
870
+ dependencies = [
871
+ "displaydoc",
872
+ "litemap",
873
+ "tinystr",
874
+ "writeable",
875
+ "zerovec",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "icu_normalizer"
880
+ version = "2.2.0"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
883
+ dependencies = [
884
+ "icu_collections",
885
+ "icu_normalizer_data",
886
+ "icu_properties",
887
+ "icu_provider",
888
+ "smallvec",
889
+ "zerovec",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "icu_normalizer_data"
894
+ version = "2.2.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
897
+
898
+ [[package]]
899
+ name = "icu_properties"
900
+ version = "2.2.0"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
903
+ dependencies = [
904
+ "icu_collections",
905
+ "icu_locale_core",
906
+ "icu_properties_data",
907
+ "icu_provider",
908
+ "zerotrie",
909
+ "zerovec",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "icu_properties_data"
914
+ version = "2.2.0"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
917
+
918
+ [[package]]
919
+ name = "icu_provider"
920
+ version = "2.2.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
923
+ dependencies = [
924
+ "displaydoc",
925
+ "icu_locale_core",
926
+ "writeable",
927
+ "yoke",
928
+ "zerofrom",
929
+ "zerotrie",
930
+ "zerovec",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "idna"
935
+ version = "1.1.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
938
+ dependencies = [
939
+ "idna_adapter",
940
+ "smallvec",
941
+ "utf8_iter",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "idna_adapter"
946
+ version = "1.2.2"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
949
+ dependencies = [
950
+ "icu_normalizer",
951
+ "icu_properties",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "include_dir"
956
+ version = "0.7.4"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
959
+ dependencies = [
960
+ "include_dir_macros",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "include_dir_macros"
965
+ version = "0.7.4"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
968
+ dependencies = [
969
+ "proc-macro2",
970
+ "quote",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "indexmap"
975
+ version = "2.14.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
978
+ dependencies = [
979
+ "equivalent",
980
+ "hashbrown 0.17.1",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "ipnet"
985
+ version = "2.12.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
988
+
989
+ [[package]]
990
+ name = "itoa"
991
+ version = "1.0.18"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
994
+
995
+ [[package]]
996
+ name = "jni"
997
+ version = "0.22.4"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1000
+ dependencies = [
1001
+ "cfg-if",
1002
+ "combine",
1003
+ "jni-macros",
1004
+ "jni-sys",
1005
+ "log",
1006
+ "simd_cesu8",
1007
+ "thiserror",
1008
+ "walkdir",
1009
+ "windows-link",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "jni-macros"
1014
+ version = "0.22.4"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1017
+ dependencies = [
1018
+ "proc-macro2",
1019
+ "quote",
1020
+ "rustc_version",
1021
+ "simd_cesu8",
1022
+ "syn 2.0.118",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "jni-sys"
1027
+ version = "0.4.1"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1030
+ dependencies = [
1031
+ "jni-sys-macros",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "jni-sys-macros"
1036
+ version = "0.4.1"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1039
+ dependencies = [
1040
+ "quote",
1041
+ "syn 2.0.118",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "jobserver"
1046
+ version = "0.1.35"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1049
+ dependencies = [
1050
+ "getrandom 0.4.3",
1051
+ "libc",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "js-sys"
1056
+ version = "0.3.103"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1059
+ dependencies = [
1060
+ "cfg-if",
1061
+ "futures-util",
1062
+ "wasm-bindgen",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "lazy_static"
1067
+ version = "1.5.0"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1070
+
1071
+ [[package]]
1072
+ name = "libc"
1073
+ version = "0.2.186"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1076
+
1077
+ [[package]]
1078
+ name = "libredox"
1079
+ version = "0.1.18"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
1082
+ dependencies = [
1083
+ "libc",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "linux-raw-sys"
1088
+ version = "0.12.1"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1091
+
1092
+ [[package]]
1093
+ name = "litemap"
1094
+ version = "0.8.2"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1097
+
1098
+ [[package]]
1099
+ name = "lmdb-master-sys"
1100
+ version = "0.2.6"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "aaeb9bd22e73bd1babffff614994b341e9b2008de7bb73bf1f7e9154f1978f8b"
1103
+ dependencies = [
1104
+ "cc",
1105
+ "doxygen-rs",
1106
+ "libc",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "lock_api"
1111
+ version = "0.4.14"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1114
+ dependencies = [
1115
+ "scopeguard",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "log"
1120
+ version = "0.4.33"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1123
+
1124
+ [[package]]
1125
+ name = "lru"
1126
+ version = "0.18.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
1129
+ dependencies = [
1130
+ "hashbrown 0.17.1",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "lru-slab"
1135
+ version = "0.1.2"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1138
+
1139
+ [[package]]
1140
+ name = "lsp-server"
1141
+ version = "0.10.0"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "3ee25a31f2e571e426eef2896179450cafc7e2f5be00d8a93b1c2d21c0ff7656"
1144
+ dependencies = [
1145
+ "crossbeam-channel",
1146
+ "log",
1147
+ "serde",
1148
+ "serde_derive",
1149
+ "serde_json",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "lsp-types"
1154
+ version = "0.97.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
1157
+ dependencies = [
1158
+ "bitflags 1.3.2",
1159
+ "fluent-uri",
1160
+ "serde",
1161
+ "serde_json",
1162
+ "serde_repr",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "md-5"
1167
+ version = "0.11.0"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1170
+ dependencies = [
1171
+ "cfg-if",
1172
+ "digest",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "memchr"
1177
+ version = "2.8.2"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1180
+
1181
+ [[package]]
1182
+ name = "mime"
1183
+ version = "0.3.17"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1186
+
1187
+ [[package]]
1188
+ name = "mime_guess"
1189
+ version = "2.0.5"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1192
+ dependencies = [
1193
+ "mime",
1194
+ "unicase",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "mio"
1199
+ version = "1.2.2"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1202
+ dependencies = [
1203
+ "libc",
1204
+ "wasi 0.11.1+wasi-snapshot-preview1",
1205
+ "windows-sys 0.61.2",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "munge"
1210
+ version = "0.4.7"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
1213
+ dependencies = [
1214
+ "munge_macro",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "munge_macro"
1219
+ version = "0.4.7"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
1222
+ dependencies = [
1223
+ "proc-macro2",
1224
+ "quote",
1225
+ "syn 2.0.118",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "num-traits"
1230
+ version = "0.2.19"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1233
+ dependencies = [
1234
+ "autocfg",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "num_cpus"
1239
+ version = "1.17.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1242
+ dependencies = [
1243
+ "hermit-abi",
1244
+ "libc",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "objc2-core-foundation"
1249
+ version = "0.3.2"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1252
+ dependencies = [
1253
+ "bitflags 2.13.1",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "objc2-system-configuration"
1258
+ version = "0.3.2"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
1261
+ dependencies = [
1262
+ "objc2-core-foundation",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "once_cell"
1267
+ version = "1.21.4"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1270
+
1271
+ [[package]]
1272
+ name = "openssl-probe"
1273
+ version = "0.2.1"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1276
+
1277
+ [[package]]
1278
+ name = "page_size"
1279
+ version = "0.6.0"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1282
+ dependencies = [
1283
+ "libc",
1284
+ "winapi",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "parking_lot"
1289
+ version = "0.12.5"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1292
+ dependencies = [
1293
+ "lock_api",
1294
+ "parking_lot_core",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "parking_lot_core"
1299
+ version = "0.9.12"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1302
+ dependencies = [
1303
+ "cfg-if",
1304
+ "libc",
1305
+ "redox_syscall",
1306
+ "smallvec",
1307
+ "windows-link",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "percent-encoding"
1312
+ version = "2.3.2"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1315
+
1316
+ [[package]]
1317
+ name = "phf"
1318
+ version = "0.11.3"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1321
+ dependencies = [
1322
+ "phf_macros",
1323
+ "phf_shared 0.11.3",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "phf"
1328
+ version = "0.13.1"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1331
+ dependencies = [
1332
+ "phf_shared 0.13.1",
1333
+ "serde",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "phf_generator"
1338
+ version = "0.11.3"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1341
+ dependencies = [
1342
+ "phf_shared 0.11.3",
1343
+ "rand 0.8.7",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "phf_macros"
1348
+ version = "0.11.3"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1351
+ dependencies = [
1352
+ "phf_generator",
1353
+ "phf_shared 0.11.3",
1354
+ "proc-macro2",
1355
+ "quote",
1356
+ "syn 2.0.118",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "phf_shared"
1361
+ version = "0.11.3"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1364
+ dependencies = [
1365
+ "siphasher",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "phf_shared"
1370
+ version = "0.13.1"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1373
+ dependencies = [
1374
+ "siphasher",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "pin-project-lite"
1379
+ version = "0.2.17"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1382
+
1383
+ [[package]]
1384
+ name = "pkg-config"
1385
+ version = "0.3.33"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1388
+
1389
+ [[package]]
1390
+ name = "portable-atomic"
1391
+ version = "1.13.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1394
+
1395
+ [[package]]
1396
+ name = "postgres-protocol"
1397
+ version = "0.6.12"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "08808e3c483c46e999108051c78334f473d5adb59d78bb80a1268c7e6aa6c514"
1400
+ dependencies = [
1401
+ "base64",
1402
+ "byteorder",
1403
+ "bytes",
1404
+ "fallible-iterator",
1405
+ "hmac",
1406
+ "md-5",
1407
+ "memchr",
1408
+ "rand 0.10.2",
1409
+ "sha2",
1410
+ "stringprep",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "postgres-types"
1415
+ version = "0.2.14"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "851ca9db4932932d69f3ea811b1abe63087a0f740a47692619dd40d4899b68be"
1418
+ dependencies = [
1419
+ "bytes",
1420
+ "fallible-iterator",
1421
+ "postgres-protocol",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "potential_utf"
1426
+ version = "0.1.5"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1429
+ dependencies = [
1430
+ "zerovec",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "ppv-lite86"
1435
+ version = "0.2.21"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1438
+ dependencies = [
1439
+ "zerocopy",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "proc-macro-crate"
1444
+ version = "3.5.0"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1447
+ dependencies = [
1448
+ "toml_edit",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "proc-macro2"
1453
+ version = "1.0.106"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1456
+ dependencies = [
1457
+ "unicode-ident",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "prometheus"
1462
+ version = "0.14.0"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
1465
+ dependencies = [
1466
+ "cfg-if",
1467
+ "fnv",
1468
+ "lazy_static",
1469
+ "memchr",
1470
+ "parking_lot",
1471
+ "thiserror",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "ptr_meta"
1476
+ version = "0.1.4"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
1479
+ dependencies = [
1480
+ "ptr_meta_derive 0.1.4",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "ptr_meta"
1485
+ version = "0.3.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
1488
+ dependencies = [
1489
+ "ptr_meta_derive 0.3.1",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "ptr_meta_derive"
1494
+ version = "0.1.4"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
1497
+ dependencies = [
1498
+ "proc-macro2",
1499
+ "quote",
1500
+ "syn 1.0.109",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "ptr_meta_derive"
1505
+ version = "0.3.1"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
1508
+ dependencies = [
1509
+ "proc-macro2",
1510
+ "quote",
1511
+ "syn 2.0.118",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "pylon-cache"
1516
+ version = "0.1.0"
1517
+ dependencies = [
1518
+ "heed",
1519
+ "hex",
1520
+ "pylon-value",
1521
+ "rkyv 0.8.17",
1522
+ "sha2",
1523
+ "tempfile",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "pylon-client"
1528
+ version = "0.1.0"
1529
+ dependencies = [
1530
+ "chrono",
1531
+ "pylon-cache",
1532
+ "pylon-core",
1533
+ "pylon-pgcon",
1534
+ "pylon-value",
1535
+ "serde_json",
1536
+ "tempfile",
1537
+ "thiserror",
1538
+ "tokio",
1539
+ "tokio-postgres",
1540
+ "uuid",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "pylon-config"
1545
+ version = "0.1.0"
1546
+ dependencies = [
1547
+ "thiserror",
1548
+ "toml",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "pylon-core"
1553
+ version = "0.1.0"
1554
+ dependencies = [
1555
+ "hex",
1556
+ "lru",
1557
+ "pylon-pgcon",
1558
+ "pylon-value",
1559
+ "serde",
1560
+ "serde_json",
1561
+ "sha2",
1562
+ "strsim",
1563
+ "thiserror",
1564
+ "tokio",
1565
+ "tokio-postgres",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "pylon-lsp"
1570
+ version = "0.1.0"
1571
+ dependencies = [
1572
+ "lsp-server",
1573
+ "lsp-types",
1574
+ "pylon-config",
1575
+ "pylon-core",
1576
+ "pylon-pgcon",
1577
+ "serde",
1578
+ "serde_json",
1579
+ "tokio",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "pylon-pgcon"
1584
+ version = "0.1.0"
1585
+ dependencies = [
1586
+ "bytes",
1587
+ "deadpool-postgres",
1588
+ "hex",
1589
+ "postgres-types",
1590
+ "pylon-value",
1591
+ "rust_decimal",
1592
+ "serde_json",
1593
+ "thiserror",
1594
+ "tokio",
1595
+ "tokio-postgres",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "pylon-providers"
1600
+ version = "0.1.0"
1601
+ dependencies = [
1602
+ "reqwest",
1603
+ "serde",
1604
+ "serde_json",
1605
+ "thiserror",
1606
+ "tokio",
1607
+ "wiremock",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "pylon-py"
1612
+ version = "0.1.0"
1613
+ dependencies = [
1614
+ "deadpool-postgres",
1615
+ "pylon-cache",
1616
+ "pylon-client",
1617
+ "pylon-core",
1618
+ "pylon-pgcon",
1619
+ "pylon-providers",
1620
+ "pylon-value",
1621
+ "pylon-workers",
1622
+ "pyo3",
1623
+ "pyo3-async-runtimes",
1624
+ "serde_json",
1625
+ "tokio",
1626
+ "tokio-postgres",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "pylon-server"
1631
+ version = "0.1.0"
1632
+ dependencies = [
1633
+ "chrono",
1634
+ "hex",
1635
+ "http-body-util",
1636
+ "hyper",
1637
+ "hyper-util",
1638
+ "include_dir",
1639
+ "mime_guess",
1640
+ "pylon-cache",
1641
+ "pylon-client",
1642
+ "pylon-config",
1643
+ "pylon-core",
1644
+ "pylon-pgcon",
1645
+ "pylon-providers",
1646
+ "pylon-value",
1647
+ "pylon-workers",
1648
+ "serde_json",
1649
+ "thiserror",
1650
+ "tokio",
1651
+ "toml",
1652
+ "tower",
1653
+ "tower-http 0.7.0",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "pylon-value"
1658
+ version = "0.1.0"
1659
+ dependencies = [
1660
+ "rkyv 0.8.17",
1661
+ "uuid",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "pylon-workers"
1666
+ version = "0.1.0"
1667
+ dependencies = [
1668
+ "hex",
1669
+ "prometheus",
1670
+ "pylon-cache",
1671
+ "pylon-core",
1672
+ "pylon-pgcon",
1673
+ "pylon-providers",
1674
+ "pylon-value",
1675
+ "reqwest",
1676
+ "serde_json",
1677
+ "tempfile",
1678
+ "thiserror",
1679
+ "tokio",
1680
+ "wiremock",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "pyo3"
1685
+ version = "0.29.0"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
1688
+ dependencies = [
1689
+ "libc",
1690
+ "once_cell",
1691
+ "portable-atomic",
1692
+ "pyo3-build-config",
1693
+ "pyo3-ffi",
1694
+ "pyo3-macros",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "pyo3-async-runtimes"
1699
+ version = "0.29.0"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
1702
+ dependencies = [
1703
+ "futures-channel",
1704
+ "futures-util",
1705
+ "once_cell",
1706
+ "pin-project-lite",
1707
+ "pyo3",
1708
+ "tokio",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "pyo3-build-config"
1713
+ version = "0.29.0"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
1716
+ dependencies = [
1717
+ "target-lexicon",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "pyo3-ffi"
1722
+ version = "0.29.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
1725
+ dependencies = [
1726
+ "libc",
1727
+ "pyo3-build-config",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "pyo3-macros"
1732
+ version = "0.29.0"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
1735
+ dependencies = [
1736
+ "proc-macro2",
1737
+ "pyo3-macros-backend",
1738
+ "quote",
1739
+ "syn 2.0.118",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "pyo3-macros-backend"
1744
+ version = "0.29.0"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
1747
+ dependencies = [
1748
+ "heck",
1749
+ "proc-macro2",
1750
+ "quote",
1751
+ "syn 2.0.118",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "quinn"
1756
+ version = "0.11.11"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1759
+ dependencies = [
1760
+ "bytes",
1761
+ "cfg_aliases",
1762
+ "pin-project-lite",
1763
+ "quinn-proto",
1764
+ "quinn-udp",
1765
+ "rustc-hash",
1766
+ "rustls",
1767
+ "socket2",
1768
+ "thiserror",
1769
+ "tokio",
1770
+ "tracing",
1771
+ "web-time",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "quinn-proto"
1776
+ version = "0.11.16"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
1779
+ dependencies = [
1780
+ "aws-lc-rs",
1781
+ "bytes",
1782
+ "getrandom 0.4.3",
1783
+ "lru-slab",
1784
+ "rand 0.10.2",
1785
+ "rand_pcg",
1786
+ "ring",
1787
+ "rustc-hash",
1788
+ "rustls",
1789
+ "rustls-pki-types",
1790
+ "slab",
1791
+ "thiserror",
1792
+ "tinyvec",
1793
+ "tracing",
1794
+ "web-time",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "quinn-udp"
1799
+ version = "0.5.15"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
1802
+ dependencies = [
1803
+ "cfg_aliases",
1804
+ "libc",
1805
+ "once_cell",
1806
+ "socket2",
1807
+ "tracing",
1808
+ "windows-sys 0.61.2",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "quote"
1813
+ version = "1.0.45"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1816
+ dependencies = [
1817
+ "proc-macro2",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "r-efi"
1822
+ version = "6.0.0"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1825
+
1826
+ [[package]]
1827
+ name = "radium"
1828
+ version = "0.7.0"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1831
+
1832
+ [[package]]
1833
+ name = "rancor"
1834
+ version = "0.1.2"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "daff8b7b3ccf5f7ba270b3e7a0a4d4c701c5797e38dec27c7e2c3dbb830fed1c"
1837
+ dependencies = [
1838
+ "ptr_meta 0.3.1",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "rand"
1843
+ version = "0.8.7"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1846
+ dependencies = [
1847
+ "libc",
1848
+ "rand_chacha",
1849
+ "rand_core 0.6.4",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "rand"
1854
+ version = "0.10.2"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1857
+ dependencies = [
1858
+ "chacha20",
1859
+ "getrandom 0.4.3",
1860
+ "rand_core 0.10.1",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "rand_chacha"
1865
+ version = "0.3.1"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1868
+ dependencies = [
1869
+ "ppv-lite86",
1870
+ "rand_core 0.6.4",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "rand_core"
1875
+ version = "0.6.4"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1878
+ dependencies = [
1879
+ "getrandom 0.2.17",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "rand_core"
1884
+ version = "0.10.1"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1887
+
1888
+ [[package]]
1889
+ name = "rand_pcg"
1890
+ version = "0.10.2"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
1893
+ dependencies = [
1894
+ "rand_core 0.10.1",
1895
+ ]
1896
+
1897
+ [[package]]
1898
+ name = "redox_syscall"
1899
+ version = "0.5.18"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1902
+ dependencies = [
1903
+ "bitflags 2.13.1",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "regex"
1908
+ version = "1.13.1"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1911
+ dependencies = [
1912
+ "aho-corasick",
1913
+ "memchr",
1914
+ "regex-automata",
1915
+ "regex-syntax",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "regex-automata"
1920
+ version = "0.4.16"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1923
+ dependencies = [
1924
+ "aho-corasick",
1925
+ "memchr",
1926
+ "regex-syntax",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "regex-syntax"
1931
+ version = "0.8.11"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1934
+
1935
+ [[package]]
1936
+ name = "rend"
1937
+ version = "0.4.2"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
1940
+ dependencies = [
1941
+ "bytecheck",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "rend"
1946
+ version = "0.5.4"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "663ba70707f96e871406fe10d68128412e619b06d1d47cb91c3a4c6501176240"
1949
+
1950
+ [[package]]
1951
+ name = "reqwest"
1952
+ version = "0.13.4"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
1955
+ dependencies = [
1956
+ "base64",
1957
+ "bytes",
1958
+ "futures-core",
1959
+ "http",
1960
+ "http-body",
1961
+ "http-body-util",
1962
+ "hyper",
1963
+ "hyper-rustls",
1964
+ "hyper-util",
1965
+ "js-sys",
1966
+ "log",
1967
+ "percent-encoding",
1968
+ "pin-project-lite",
1969
+ "quinn",
1970
+ "rustls",
1971
+ "rustls-pki-types",
1972
+ "rustls-platform-verifier",
1973
+ "serde",
1974
+ "serde_json",
1975
+ "sync_wrapper",
1976
+ "tokio",
1977
+ "tokio-rustls",
1978
+ "tower",
1979
+ "tower-http 0.6.11",
1980
+ "tower-service",
1981
+ "url",
1982
+ "wasm-bindgen",
1983
+ "wasm-bindgen-futures",
1984
+ "web-sys",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "ring"
1989
+ version = "0.17.14"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1992
+ dependencies = [
1993
+ "cc",
1994
+ "cfg-if",
1995
+ "getrandom 0.2.17",
1996
+ "libc",
1997
+ "untrusted",
1998
+ "windows-sys 0.52.0",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "rkyv"
2003
+ version = "0.7.46"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
2006
+ dependencies = [
2007
+ "bitvec",
2008
+ "bytecheck",
2009
+ "bytes",
2010
+ "hashbrown 0.12.3",
2011
+ "ptr_meta 0.1.4",
2012
+ "rend 0.4.2",
2013
+ "rkyv_derive 0.7.46",
2014
+ "seahash",
2015
+ "tinyvec",
2016
+ "uuid",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "rkyv"
2021
+ version = "0.8.17"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "815cc8a37159a463064825246cadb07961e25cd9885908606f6d08a98d8f8874"
2024
+ dependencies = [
2025
+ "bytes",
2026
+ "hashbrown 0.17.1",
2027
+ "indexmap",
2028
+ "munge",
2029
+ "ptr_meta 0.3.1",
2030
+ "rancor",
2031
+ "rend 0.5.4",
2032
+ "rkyv_derive 0.8.17",
2033
+ "tinyvec",
2034
+ "uuid",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "rkyv_derive"
2039
+ version = "0.7.46"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
2042
+ dependencies = [
2043
+ "proc-macro2",
2044
+ "quote",
2045
+ "syn 1.0.109",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "rkyv_derive"
2050
+ version = "0.8.17"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "c0ed1a78a1b19d184b0daa629dd9a024573173ec7d485b287cb369fb3607cc1c"
2053
+ dependencies = [
2054
+ "proc-macro2",
2055
+ "quote",
2056
+ "syn 2.0.118",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "rust_decimal"
2061
+ version = "1.42.1"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a"
2064
+ dependencies = [
2065
+ "arrayvec",
2066
+ "borsh",
2067
+ "bytes",
2068
+ "num-traits",
2069
+ "postgres-types",
2070
+ "rand 0.8.7",
2071
+ "rkyv 0.7.46",
2072
+ "serde",
2073
+ "serde_json",
2074
+ "wasm-bindgen",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "rustc-hash"
2079
+ version = "2.1.3"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2082
+
2083
+ [[package]]
2084
+ name = "rustc_version"
2085
+ version = "0.4.1"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2088
+ dependencies = [
2089
+ "semver",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "rustix"
2094
+ version = "1.1.4"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2097
+ dependencies = [
2098
+ "bitflags 2.13.1",
2099
+ "errno",
2100
+ "libc",
2101
+ "linux-raw-sys",
2102
+ "windows-sys 0.61.2",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "rustls"
2107
+ version = "0.23.42"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
2110
+ dependencies = [
2111
+ "aws-lc-rs",
2112
+ "once_cell",
2113
+ "rustls-pki-types",
2114
+ "rustls-webpki",
2115
+ "subtle",
2116
+ "zeroize",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "rustls-native-certs"
2121
+ version = "0.8.4"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2124
+ dependencies = [
2125
+ "openssl-probe",
2126
+ "rustls-pki-types",
2127
+ "schannel",
2128
+ "security-framework",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "rustls-pki-types"
2133
+ version = "1.15.0"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2136
+ dependencies = [
2137
+ "web-time",
2138
+ "zeroize",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "rustls-platform-verifier"
2143
+ version = "0.7.0"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2146
+ dependencies = [
2147
+ "core-foundation 0.10.1",
2148
+ "core-foundation-sys",
2149
+ "jni",
2150
+ "log",
2151
+ "once_cell",
2152
+ "rustls",
2153
+ "rustls-native-certs",
2154
+ "rustls-platform-verifier-android",
2155
+ "rustls-webpki",
2156
+ "security-framework",
2157
+ "security-framework-sys",
2158
+ "webpki-root-certs",
2159
+ "windows-sys 0.61.2",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "rustls-platform-verifier-android"
2164
+ version = "0.1.1"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2167
+
2168
+ [[package]]
2169
+ name = "rustls-webpki"
2170
+ version = "0.103.13"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2173
+ dependencies = [
2174
+ "aws-lc-rs",
2175
+ "ring",
2176
+ "rustls-pki-types",
2177
+ "untrusted",
2178
+ ]
2179
+
2180
+ [[package]]
2181
+ name = "rustversion"
2182
+ version = "1.0.23"
2183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2184
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
2185
+
2186
+ [[package]]
2187
+ name = "same-file"
2188
+ version = "1.0.6"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2191
+ dependencies = [
2192
+ "winapi-util",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "schannel"
2197
+ version = "0.1.29"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2200
+ dependencies = [
2201
+ "windows-sys 0.61.2",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "scopeguard"
2206
+ version = "1.2.0"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2209
+
2210
+ [[package]]
2211
+ name = "seahash"
2212
+ version = "4.1.0"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2215
+
2216
+ [[package]]
2217
+ name = "security-framework"
2218
+ version = "3.7.0"
2219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2221
+ dependencies = [
2222
+ "bitflags 2.13.1",
2223
+ "core-foundation 0.10.1",
2224
+ "core-foundation-sys",
2225
+ "libc",
2226
+ "security-framework-sys",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "security-framework-sys"
2231
+ version = "2.17.0"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2234
+ dependencies = [
2235
+ "core-foundation-sys",
2236
+ "libc",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "semver"
2241
+ version = "1.0.28"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2244
+
2245
+ [[package]]
2246
+ name = "serde"
2247
+ version = "1.0.228"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2250
+ dependencies = [
2251
+ "serde_core",
2252
+ "serde_derive",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "serde_core"
2257
+ version = "1.0.228"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2260
+ dependencies = [
2261
+ "serde_derive",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "serde_derive"
2266
+ version = "1.0.228"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2269
+ dependencies = [
2270
+ "proc-macro2",
2271
+ "quote",
2272
+ "syn 2.0.118",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "serde_json"
2277
+ version = "1.0.150"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2280
+ dependencies = [
2281
+ "itoa",
2282
+ "memchr",
2283
+ "serde",
2284
+ "serde_core",
2285
+ "zmij",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "serde_repr"
2290
+ version = "0.1.20"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2293
+ dependencies = [
2294
+ "proc-macro2",
2295
+ "quote",
2296
+ "syn 2.0.118",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "serde_spanned"
2301
+ version = "1.1.1"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2304
+ dependencies = [
2305
+ "serde_core",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "sha2"
2310
+ version = "0.11.0"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2313
+ dependencies = [
2314
+ "cfg-if",
2315
+ "cpufeatures",
2316
+ "digest",
2317
+ ]
2318
+
2319
+ [[package]]
2320
+ name = "shlex"
2321
+ version = "2.0.1"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2324
+
2325
+ [[package]]
2326
+ name = "signal-hook-registry"
2327
+ version = "1.4.8"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2330
+ dependencies = [
2331
+ "errno",
2332
+ "libc",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "simd_cesu8"
2337
+ version = "1.2.0"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
2340
+ dependencies = [
2341
+ "rustc_version",
2342
+ "simdutf8",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "simdutf8"
2347
+ version = "0.1.5"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2350
+
2351
+ [[package]]
2352
+ name = "siphasher"
2353
+ version = "1.0.3"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2356
+
2357
+ [[package]]
2358
+ name = "slab"
2359
+ version = "0.4.12"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2362
+
2363
+ [[package]]
2364
+ name = "smallvec"
2365
+ version = "1.15.2"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2368
+
2369
+ [[package]]
2370
+ name = "socket2"
2371
+ version = "0.6.5"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
2374
+ dependencies = [
2375
+ "libc",
2376
+ "windows-sys 0.61.2",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "stable_deref_trait"
2381
+ version = "1.2.1"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2384
+
2385
+ [[package]]
2386
+ name = "stringprep"
2387
+ version = "0.1.5"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2390
+ dependencies = [
2391
+ "unicode-bidi",
2392
+ "unicode-normalization",
2393
+ "unicode-properties",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "strsim"
2398
+ version = "0.11.1"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2401
+
2402
+ [[package]]
2403
+ name = "subtle"
2404
+ version = "2.6.1"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2407
+
2408
+ [[package]]
2409
+ name = "syn"
2410
+ version = "1.0.109"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2413
+ dependencies = [
2414
+ "proc-macro2",
2415
+ "quote",
2416
+ "unicode-ident",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "syn"
2421
+ version = "2.0.118"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
2424
+ dependencies = [
2425
+ "proc-macro2",
2426
+ "quote",
2427
+ "unicode-ident",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "syn"
2432
+ version = "3.0.3"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2435
+ dependencies = [
2436
+ "proc-macro2",
2437
+ "quote",
2438
+ "unicode-ident",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "sync_wrapper"
2443
+ version = "1.0.2"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2446
+ dependencies = [
2447
+ "futures-core",
2448
+ ]
2449
+
2450
+ [[package]]
2451
+ name = "synchronoise"
2452
+ version = "1.0.1"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2"
2455
+ dependencies = [
2456
+ "crossbeam-queue",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "synstructure"
2461
+ version = "0.13.2"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2464
+ dependencies = [
2465
+ "proc-macro2",
2466
+ "quote",
2467
+ "syn 2.0.118",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "system-configuration"
2472
+ version = "0.7.0"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2475
+ dependencies = [
2476
+ "bitflags 2.13.1",
2477
+ "core-foundation 0.9.4",
2478
+ "system-configuration-sys",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "system-configuration-sys"
2483
+ version = "0.6.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2486
+ dependencies = [
2487
+ "core-foundation-sys",
2488
+ "libc",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "tap"
2493
+ version = "1.0.1"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2496
+
2497
+ [[package]]
2498
+ name = "target-lexicon"
2499
+ version = "0.13.5"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2502
+
2503
+ [[package]]
2504
+ name = "tempfile"
2505
+ version = "3.27.0"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2508
+ dependencies = [
2509
+ "fastrand",
2510
+ "getrandom 0.4.3",
2511
+ "once_cell",
2512
+ "rustix",
2513
+ "windows-sys 0.61.2",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "thiserror"
2518
+ version = "2.0.19"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
2521
+ dependencies = [
2522
+ "thiserror-impl",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "thiserror-impl"
2527
+ version = "2.0.19"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
2530
+ dependencies = [
2531
+ "proc-macro2",
2532
+ "quote",
2533
+ "syn 3.0.3",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "tinystr"
2538
+ version = "0.8.3"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2541
+ dependencies = [
2542
+ "displaydoc",
2543
+ "zerovec",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "tinyvec"
2548
+ version = "1.12.0"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2551
+ dependencies = [
2552
+ "tinyvec_macros",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "tinyvec_macros"
2557
+ version = "0.1.1"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2560
+
2561
+ [[package]]
2562
+ name = "tokio"
2563
+ version = "1.52.4"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "317fafbbe3f02fc663dad00ea6186197de963cd4190e86a26d8d0fae095539af"
2566
+ dependencies = [
2567
+ "bytes",
2568
+ "libc",
2569
+ "mio",
2570
+ "pin-project-lite",
2571
+ "signal-hook-registry",
2572
+ "socket2",
2573
+ "tokio-macros",
2574
+ "windows-sys 0.61.2",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "tokio-macros"
2579
+ version = "2.7.0"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2582
+ dependencies = [
2583
+ "proc-macro2",
2584
+ "quote",
2585
+ "syn 2.0.118",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "tokio-postgres"
2590
+ version = "0.7.18"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "a528f7d280f6d5b9cd149635c8705b0dd049754bc67d81d31fa25169a93809d3"
2593
+ dependencies = [
2594
+ "async-trait",
2595
+ "byteorder",
2596
+ "bytes",
2597
+ "fallible-iterator",
2598
+ "futures-channel",
2599
+ "futures-util",
2600
+ "log",
2601
+ "parking_lot",
2602
+ "percent-encoding",
2603
+ "phf 0.13.1",
2604
+ "pin-project-lite",
2605
+ "postgres-protocol",
2606
+ "postgres-types",
2607
+ "rand 0.10.2",
2608
+ "socket2",
2609
+ "tokio",
2610
+ "tokio-util",
2611
+ "whoami",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "tokio-rustls"
2616
+ version = "0.26.4"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2619
+ dependencies = [
2620
+ "rustls",
2621
+ "tokio",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "tokio-util"
2626
+ version = "0.7.18"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2629
+ dependencies = [
2630
+ "bytes",
2631
+ "futures-core",
2632
+ "futures-sink",
2633
+ "pin-project-lite",
2634
+ "tokio",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "toml"
2639
+ version = "1.1.4+spec-1.1.0"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
2642
+ dependencies = [
2643
+ "indexmap",
2644
+ "serde_core",
2645
+ "serde_spanned",
2646
+ "toml_datetime",
2647
+ "toml_parser",
2648
+ "toml_writer",
2649
+ "winnow",
2650
+ ]
2651
+
2652
+ [[package]]
2653
+ name = "toml_datetime"
2654
+ version = "1.1.1+spec-1.1.0"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2657
+ dependencies = [
2658
+ "serde_core",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "toml_edit"
2663
+ version = "0.25.13+spec-1.1.0"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
2666
+ dependencies = [
2667
+ "indexmap",
2668
+ "toml_datetime",
2669
+ "toml_parser",
2670
+ "winnow",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "toml_parser"
2675
+ version = "1.1.3+spec-1.1.0"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
2678
+ dependencies = [
2679
+ "winnow",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "toml_writer"
2684
+ version = "1.1.2+spec-1.1.0"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
2687
+
2688
+ [[package]]
2689
+ name = "tower"
2690
+ version = "0.5.3"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2693
+ dependencies = [
2694
+ "futures-core",
2695
+ "futures-util",
2696
+ "pin-project-lite",
2697
+ "sync_wrapper",
2698
+ "tokio",
2699
+ "tower-layer",
2700
+ "tower-service",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "tower-http"
2705
+ version = "0.6.11"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2708
+ dependencies = [
2709
+ "bitflags 2.13.1",
2710
+ "bytes",
2711
+ "futures-util",
2712
+ "http",
2713
+ "http-body",
2714
+ "pin-project-lite",
2715
+ "tower",
2716
+ "tower-layer",
2717
+ "tower-service",
2718
+ "url",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "tower-http"
2723
+ version = "0.7.0"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233"
2726
+ dependencies = [
2727
+ "bitflags 2.13.1",
2728
+ "bytes",
2729
+ "futures-core",
2730
+ "futures-util",
2731
+ "http",
2732
+ "http-body",
2733
+ "http-body-util",
2734
+ "http-range-header",
2735
+ "httpdate",
2736
+ "mime",
2737
+ "mime_guess",
2738
+ "percent-encoding",
2739
+ "pin-project-lite",
2740
+ "tokio",
2741
+ "tokio-util",
2742
+ "tower-layer",
2743
+ "tower-service",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "tower-layer"
2748
+ version = "0.3.3"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2751
+
2752
+ [[package]]
2753
+ name = "tower-service"
2754
+ version = "0.3.3"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2757
+
2758
+ [[package]]
2759
+ name = "tracing"
2760
+ version = "0.1.44"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2763
+ dependencies = [
2764
+ "pin-project-lite",
2765
+ "tracing-attributes",
2766
+ "tracing-core",
2767
+ ]
2768
+
2769
+ [[package]]
2770
+ name = "tracing-attributes"
2771
+ version = "0.1.31"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2774
+ dependencies = [
2775
+ "proc-macro2",
2776
+ "quote",
2777
+ "syn 2.0.118",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "tracing-core"
2782
+ version = "0.1.36"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2785
+ dependencies = [
2786
+ "once_cell",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "try-lock"
2791
+ version = "0.2.5"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2794
+
2795
+ [[package]]
2796
+ name = "typenum"
2797
+ version = "1.20.1"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2800
+
2801
+ [[package]]
2802
+ name = "unicase"
2803
+ version = "2.9.0"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2806
+
2807
+ [[package]]
2808
+ name = "unicode-bidi"
2809
+ version = "0.3.18"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2812
+
2813
+ [[package]]
2814
+ name = "unicode-ident"
2815
+ version = "1.0.24"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2818
+
2819
+ [[package]]
2820
+ name = "unicode-normalization"
2821
+ version = "0.1.25"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2824
+ dependencies = [
2825
+ "tinyvec",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "unicode-properties"
2830
+ version = "0.1.4"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2833
+
2834
+ [[package]]
2835
+ name = "untrusted"
2836
+ version = "0.9.0"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2839
+
2840
+ [[package]]
2841
+ name = "url"
2842
+ version = "2.5.8"
2843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2844
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2845
+ dependencies = [
2846
+ "form_urlencoded",
2847
+ "idna",
2848
+ "percent-encoding",
2849
+ "serde",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "utf8_iter"
2854
+ version = "1.0.4"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2857
+
2858
+ [[package]]
2859
+ name = "uuid"
2860
+ version = "1.24.0"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2863
+ dependencies = [
2864
+ "js-sys",
2865
+ "wasm-bindgen",
2866
+ ]
2867
+
2868
+ [[package]]
2869
+ name = "version_check"
2870
+ version = "0.9.5"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2873
+
2874
+ [[package]]
2875
+ name = "walkdir"
2876
+ version = "2.5.0"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2879
+ dependencies = [
2880
+ "same-file",
2881
+ "winapi-util",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "want"
2886
+ version = "0.3.1"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2889
+ dependencies = [
2890
+ "try-lock",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "wasi"
2895
+ version = "0.11.1+wasi-snapshot-preview1"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2898
+
2899
+ [[package]]
2900
+ name = "wasi"
2901
+ version = "0.14.7+wasi-0.2.4"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
2904
+ dependencies = [
2905
+ "wasip2",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "wasip2"
2910
+ version = "1.0.4+wasi-0.2.12"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2913
+ dependencies = [
2914
+ "wit-bindgen",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "wasite"
2919
+ version = "1.0.2"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
2922
+ dependencies = [
2923
+ "wasi 0.14.7+wasi-0.2.4",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "wasm-bindgen"
2928
+ version = "0.2.126"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2931
+ dependencies = [
2932
+ "cfg-if",
2933
+ "once_cell",
2934
+ "rustversion",
2935
+ "serde",
2936
+ "wasm-bindgen-macro",
2937
+ "wasm-bindgen-shared",
2938
+ ]
2939
+
2940
+ [[package]]
2941
+ name = "wasm-bindgen-futures"
2942
+ version = "0.4.76"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
2945
+ dependencies = [
2946
+ "js-sys",
2947
+ "wasm-bindgen",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "wasm-bindgen-macro"
2952
+ version = "0.2.126"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2955
+ dependencies = [
2956
+ "quote",
2957
+ "wasm-bindgen-macro-support",
2958
+ ]
2959
+
2960
+ [[package]]
2961
+ name = "wasm-bindgen-macro-support"
2962
+ version = "0.2.126"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2965
+ dependencies = [
2966
+ "bumpalo",
2967
+ "proc-macro2",
2968
+ "quote",
2969
+ "syn 2.0.118",
2970
+ "wasm-bindgen-shared",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "wasm-bindgen-shared"
2975
+ version = "0.2.126"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2978
+ dependencies = [
2979
+ "unicode-ident",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "web-sys"
2984
+ version = "0.3.103"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
2987
+ dependencies = [
2988
+ "js-sys",
2989
+ "wasm-bindgen",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "web-time"
2994
+ version = "1.1.0"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2997
+ dependencies = [
2998
+ "js-sys",
2999
+ "wasm-bindgen",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "webpki-root-certs"
3004
+ version = "1.0.9"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
3007
+ dependencies = [
3008
+ "rustls-pki-types",
3009
+ ]
3010
+
3011
+ [[package]]
3012
+ name = "whoami"
3013
+ version = "2.1.2"
3014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3015
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
3016
+ dependencies = [
3017
+ "libc",
3018
+ "libredox",
3019
+ "objc2-system-configuration",
3020
+ "wasite",
3021
+ "web-sys",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "winapi"
3026
+ version = "0.3.9"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3029
+ dependencies = [
3030
+ "winapi-i686-pc-windows-gnu",
3031
+ "winapi-x86_64-pc-windows-gnu",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "winapi-i686-pc-windows-gnu"
3036
+ version = "0.4.0"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3039
+
3040
+ [[package]]
3041
+ name = "winapi-util"
3042
+ version = "0.1.11"
3043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3044
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3045
+ dependencies = [
3046
+ "windows-sys 0.61.2",
3047
+ ]
3048
+
3049
+ [[package]]
3050
+ name = "winapi-x86_64-pc-windows-gnu"
3051
+ version = "0.4.0"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3054
+
3055
+ [[package]]
3056
+ name = "windows-link"
3057
+ version = "0.2.1"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3060
+
3061
+ [[package]]
3062
+ name = "windows-registry"
3063
+ version = "0.6.1"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3066
+ dependencies = [
3067
+ "windows-link",
3068
+ "windows-result",
3069
+ "windows-strings",
3070
+ ]
3071
+
3072
+ [[package]]
3073
+ name = "windows-result"
3074
+ version = "0.4.1"
3075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3076
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3077
+ dependencies = [
3078
+ "windows-link",
3079
+ ]
3080
+
3081
+ [[package]]
3082
+ name = "windows-strings"
3083
+ version = "0.5.1"
3084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3085
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3086
+ dependencies = [
3087
+ "windows-link",
3088
+ ]
3089
+
3090
+ [[package]]
3091
+ name = "windows-sys"
3092
+ version = "0.52.0"
3093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3094
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3095
+ dependencies = [
3096
+ "windows-targets",
3097
+ ]
3098
+
3099
+ [[package]]
3100
+ name = "windows-sys"
3101
+ version = "0.61.2"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3104
+ dependencies = [
3105
+ "windows-link",
3106
+ ]
3107
+
3108
+ [[package]]
3109
+ name = "windows-targets"
3110
+ version = "0.52.6"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3113
+ dependencies = [
3114
+ "windows_aarch64_gnullvm",
3115
+ "windows_aarch64_msvc",
3116
+ "windows_i686_gnu",
3117
+ "windows_i686_gnullvm",
3118
+ "windows_i686_msvc",
3119
+ "windows_x86_64_gnu",
3120
+ "windows_x86_64_gnullvm",
3121
+ "windows_x86_64_msvc",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "windows_aarch64_gnullvm"
3126
+ version = "0.52.6"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3129
+
3130
+ [[package]]
3131
+ name = "windows_aarch64_msvc"
3132
+ version = "0.52.6"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3135
+
3136
+ [[package]]
3137
+ name = "windows_i686_gnu"
3138
+ version = "0.52.6"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3141
+
3142
+ [[package]]
3143
+ name = "windows_i686_gnullvm"
3144
+ version = "0.52.6"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3147
+
3148
+ [[package]]
3149
+ name = "windows_i686_msvc"
3150
+ version = "0.52.6"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3153
+
3154
+ [[package]]
3155
+ name = "windows_x86_64_gnu"
3156
+ version = "0.52.6"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3159
+
3160
+ [[package]]
3161
+ name = "windows_x86_64_gnullvm"
3162
+ version = "0.52.6"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3165
+
3166
+ [[package]]
3167
+ name = "windows_x86_64_msvc"
3168
+ version = "0.52.6"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3171
+
3172
+ [[package]]
3173
+ name = "winnow"
3174
+ version = "1.0.4"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
3177
+ dependencies = [
3178
+ "memchr",
3179
+ ]
3180
+
3181
+ [[package]]
3182
+ name = "wiremock"
3183
+ version = "0.6.5"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
3186
+ dependencies = [
3187
+ "assert-json-diff",
3188
+ "base64",
3189
+ "deadpool",
3190
+ "futures",
3191
+ "http",
3192
+ "http-body-util",
3193
+ "hyper",
3194
+ "hyper-util",
3195
+ "log",
3196
+ "once_cell",
3197
+ "regex",
3198
+ "serde",
3199
+ "serde_json",
3200
+ "tokio",
3201
+ "url",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "wit-bindgen"
3206
+ version = "0.57.1"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3209
+
3210
+ [[package]]
3211
+ name = "writeable"
3212
+ version = "0.6.3"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3215
+
3216
+ [[package]]
3217
+ name = "wyz"
3218
+ version = "0.5.1"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3221
+ dependencies = [
3222
+ "tap",
3223
+ ]
3224
+
3225
+ [[package]]
3226
+ name = "yoke"
3227
+ version = "0.8.3"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3230
+ dependencies = [
3231
+ "stable_deref_trait",
3232
+ "yoke-derive",
3233
+ "zerofrom",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "yoke-derive"
3238
+ version = "0.8.2"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3241
+ dependencies = [
3242
+ "proc-macro2",
3243
+ "quote",
3244
+ "syn 2.0.118",
3245
+ "synstructure",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "zerocopy"
3250
+ version = "0.8.54"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
3253
+ dependencies = [
3254
+ "zerocopy-derive",
3255
+ ]
3256
+
3257
+ [[package]]
3258
+ name = "zerocopy-derive"
3259
+ version = "0.8.54"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
3262
+ dependencies = [
3263
+ "proc-macro2",
3264
+ "quote",
3265
+ "syn 2.0.118",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "zerofrom"
3270
+ version = "0.1.8"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3273
+ dependencies = [
3274
+ "zerofrom-derive",
3275
+ ]
3276
+
3277
+ [[package]]
3278
+ name = "zerofrom-derive"
3279
+ version = "0.1.7"
3280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3281
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3282
+ dependencies = [
3283
+ "proc-macro2",
3284
+ "quote",
3285
+ "syn 2.0.118",
3286
+ "synstructure",
3287
+ ]
3288
+
3289
+ [[package]]
3290
+ name = "zeroize"
3291
+ version = "1.9.0"
3292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3293
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3294
+
3295
+ [[package]]
3296
+ name = "zerotrie"
3297
+ version = "0.2.4"
3298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3299
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3300
+ dependencies = [
3301
+ "displaydoc",
3302
+ "yoke",
3303
+ "zerofrom",
3304
+ ]
3305
+
3306
+ [[package]]
3307
+ name = "zerovec"
3308
+ version = "0.11.6"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3311
+ dependencies = [
3312
+ "yoke",
3313
+ "zerofrom",
3314
+ "zerovec-derive",
3315
+ ]
3316
+
3317
+ [[package]]
3318
+ name = "zerovec-derive"
3319
+ version = "0.11.3"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3322
+ dependencies = [
3323
+ "proc-macro2",
3324
+ "quote",
3325
+ "syn 2.0.118",
3326
+ ]
3327
+
3328
+ [[package]]
3329
+ name = "zmij"
3330
+ version = "1.0.21"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"