origofs 0.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. origofs-0.0.3/Cargo.lock +4202 -0
  2. origofs-0.0.3/Cargo.toml +32 -0
  3. origofs-0.0.3/PKG-INFO +445 -0
  4. origofs-0.0.3/README.md +407 -0
  5. origofs-0.0.3/crates/origofs-core/Cargo.toml +137 -0
  6. origofs-0.0.3/crates/origofs-core/README.md +1068 -0
  7. origofs-0.0.3/crates/origofs-core/benches/engine.rs +181 -0
  8. origofs-0.0.3/crates/origofs-core/src/acl.rs +1191 -0
  9. origofs-0.0.3/crates/origofs-core/src/attribution.rs +1530 -0
  10. origofs-0.0.3/crates/origofs-core/src/chunk.rs +162 -0
  11. origofs-0.0.3/crates/origofs-core/src/clock.rs +29 -0
  12. origofs-0.0.3/crates/origofs-core/src/coedit.rs +1509 -0
  13. origofs-0.0.3/crates/origofs-core/src/coedit_tree.rs +1261 -0
  14. origofs-0.0.3/crates/origofs-core/src/collab.rs +234 -0
  15. origofs-0.0.3/crates/origofs-core/src/content.rs +1607 -0
  16. origofs-0.0.3/crates/origofs-core/src/corpus.rs +328 -0
  17. origofs-0.0.3/crates/origofs-core/src/encrypt.rs +269 -0
  18. origofs-0.0.3/crates/origofs-core/src/engine.rs +1691 -0
  19. origofs-0.0.3/crates/origofs-core/src/error.rs +365 -0
  20. origofs-0.0.3/crates/origofs-core/src/format.rs +366 -0
  21. origofs-0.0.3/crates/origofs-core/src/gc.rs +393 -0
  22. origofs-0.0.3/crates/origofs-core/src/interop.rs +117 -0
  23. origofs-0.0.3/crates/origofs-core/src/lib.rs +121 -0
  24. origofs-0.0.3/crates/origofs-core/src/merge.rs +679 -0
  25. origofs-0.0.3/crates/origofs-core/src/metadata.rs +976 -0
  26. origofs-0.0.3/crates/origofs-core/src/metrics.rs +461 -0
  27. origofs-0.0.3/crates/origofs-core/src/migrations.rs +861 -0
  28. origofs-0.0.3/crates/origofs-core/src/objectgraph.rs +424 -0
  29. origofs-0.0.3/crates/origofs-core/src/objectstore.rs +654 -0
  30. origofs-0.0.3/crates/origofs-core/src/pack.rs +786 -0
  31. origofs-0.0.3/crates/origofs-core/src/perf.rs +770 -0
  32. origofs-0.0.3/crates/origofs-core/src/portable.rs +415 -0
  33. origofs-0.0.3/crates/origofs-core/src/postgres.rs +2875 -0
  34. origofs-0.0.3/crates/origofs-core/src/recover.rs +479 -0
  35. origofs-0.0.3/crates/origofs-core/src/resync.rs +870 -0
  36. origofs-0.0.3/crates/origofs-core/src/retry.rs +87 -0
  37. origofs-0.0.3/crates/origofs-core/src/scope.rs +326 -0
  38. origofs-0.0.3/crates/origofs-core/src/sqlite.rs +2551 -0
  39. origofs-0.0.3/crates/origofs-core/src/stats.rs +278 -0
  40. origofs-0.0.3/crates/origofs-core/src/suggest.rs +919 -0
  41. origofs-0.0.3/crates/origofs-core/src/trash.rs +289 -0
  42. origofs-0.0.3/crates/origofs-core/src/types.rs +231 -0
  43. origofs-0.0.3/crates/origofs-core/src/util.rs +37 -0
  44. origofs-0.0.3/crates/origofs-core/src/version.rs +759 -0
  45. origofs-0.0.3/crates/origofs-core/src/vfs.rs +611 -0
  46. origofs-0.0.3/crates/origofs-core/tests/acl.rs +768 -0
  47. origofs-0.0.3/crates/origofs-core/tests/acl_cache.rs +433 -0
  48. origofs-0.0.3/crates/origofs-core/tests/acl_delegation.rs +315 -0
  49. origofs-0.0.3/crates/origofs-core/tests/acl_read.rs +490 -0
  50. origofs-0.0.3/crates/origofs-core/tests/atomicity.rs +294 -0
  51. origofs-0.0.3/crates/origofs-core/tests/attribution.rs +861 -0
  52. origofs-0.0.3/crates/origofs-core/tests/cache_tier.rs +363 -0
  53. origofs-0.0.3/crates/origofs-core/tests/chunking.rs +311 -0
  54. origofs-0.0.3/crates/origofs-core/tests/clock.rs +122 -0
  55. origofs-0.0.3/crates/origofs-core/tests/coedit.rs +926 -0
  56. origofs-0.0.3/crates/origofs-core/tests/coedit_live.rs +345 -0
  57. origofs-0.0.3/crates/origofs-core/tests/coedit_relay.rs +135 -0
  58. origofs-0.0.3/crates/origofs-core/tests/coedit_sidecar_gc.rs +189 -0
  59. origofs-0.0.3/crates/origofs-core/tests/coedit_suggest.rs +318 -0
  60. origofs-0.0.3/crates/origofs-core/tests/coedit_tree.rs +615 -0
  61. origofs-0.0.3/crates/origofs-core/tests/collab.rs +157 -0
  62. origofs-0.0.3/crates/origofs-core/tests/concurrency.rs +560 -0
  63. origofs-0.0.3/crates/origofs-core/tests/content_backends.rs +388 -0
  64. origofs-0.0.3/crates/origofs-core/tests/corpus.rs +179 -0
  65. origofs-0.0.3/crates/origofs-core/tests/durability.rs +81 -0
  66. origofs-0.0.3/crates/origofs-core/tests/encryption.rs +190 -0
  67. origofs-0.0.3/crates/origofs-core/tests/error_classification.rs +68 -0
  68. origofs-0.0.3/crates/origofs-core/tests/format.rs +315 -0
  69. origofs-0.0.3/crates/origofs-core/tests/gc.rs +501 -0
  70. origofs-0.0.3/crates/origofs-core/tests/hardening.rs +617 -0
  71. origofs-0.0.3/crates/origofs-core/tests/integrity.rs +117 -0
  72. origofs-0.0.3/crates/origofs-core/tests/materialize.rs +156 -0
  73. origofs-0.0.3/crates/origofs-core/tests/merge.rs +391 -0
  74. origofs-0.0.3/crates/origofs-core/tests/metrics.rs +60 -0
  75. origofs-0.0.3/crates/origofs-core/tests/migration_paths.rs +306 -0
  76. origofs-0.0.3/crates/origofs-core/tests/ownership.rs +328 -0
  77. origofs-0.0.3/crates/origofs-core/tests/pack.rs +431 -0
  78. origofs-0.0.3/crates/origofs-core/tests/pack_format.rs +320 -0
  79. origofs-0.0.3/crates/origofs-core/tests/perf.rs +373 -0
  80. origofs-0.0.3/crates/origofs-core/tests/pg_object_store.rs +310 -0
  81. origofs-0.0.3/crates/origofs-core/tests/pg_tls.rs +137 -0
  82. origofs-0.0.3/crates/origofs-core/tests/portable.rs +496 -0
  83. origofs-0.0.3/crates/origofs-core/tests/posix_gaps.rs +488 -0
  84. origofs-0.0.3/crates/origofs-core/tests/postgres.rs +939 -0
  85. origofs-0.0.3/crates/origofs-core/tests/property.rs +295 -0
  86. origofs-0.0.3/crates/origofs-core/tests/read_concurrency.rs +302 -0
  87. origofs-0.0.3/crates/origofs-core/tests/readdir_paging.rs +378 -0
  88. origofs-0.0.3/crates/origofs-core/tests/recover.rs +78 -0
  89. origofs-0.0.3/crates/origofs-core/tests/recover_versioning.rs +238 -0
  90. origofs-0.0.3/crates/origofs-core/tests/resync.rs +727 -0
  91. origofs-0.0.3/crates/origofs-core/tests/retry.rs +138 -0
  92. origofs-0.0.3/crates/origofs-core/tests/roundtrip.rs +141 -0
  93. origofs-0.0.3/crates/origofs-core/tests/simulation.rs +1228 -0
  94. origofs-0.0.3/crates/origofs-core/tests/splice.rs +619 -0
  95. origofs-0.0.3/crates/origofs-core/tests/storage_consistency.rs +416 -0
  96. origofs-0.0.3/crates/origofs-core/tests/store_descriptor.rs +178 -0
  97. origofs-0.0.3/crates/origofs-core/tests/streaming.rs +137 -0
  98. origofs-0.0.3/crates/origofs-core/tests/streaming_write.rs +340 -0
  99. origofs-0.0.3/crates/origofs-core/tests/suggest_superseded.rs +221 -0
  100. origofs-0.0.3/crates/origofs-core/tests/transactions.rs +98 -0
  101. origofs-0.0.3/crates/origofs-core/tests/trash.rs +420 -0
  102. origofs-0.0.3/crates/origofs-core/tests/upload_concurrency.rs +205 -0
  103. origofs-0.0.3/crates/origofs-core/tests/versioning.rs +183 -0
  104. origofs-0.0.3/crates/origofs-core/tests/vfs_concurrency.rs +157 -0
  105. origofs-0.0.3/crates/origofs-core/tests/write_policy.rs +233 -0
  106. origofs-0.0.3/crates/origofs-py/.gitignore +9 -0
  107. origofs-0.0.3/crates/origofs-py/Cargo.toml +59 -0
  108. origofs-0.0.3/crates/origofs-py/README.md +407 -0
  109. origofs-0.0.3/crates/origofs-py/alembic.ini +51 -0
  110. origofs-0.0.3/crates/origofs-py/examples/collab_app.py +266 -0
  111. origofs-0.0.3/crates/origofs-py/examples/fastapi_app.py +144 -0
  112. origofs-0.0.3/crates/origofs-py/examples/fastapi_router.py +65 -0
  113. origofs-0.0.3/crates/origofs-py/examples/rag_provenance.py +126 -0
  114. origofs-0.0.3/crates/origofs-py/src/lib.rs +5478 -0
  115. origofs-0.0.3/crates/origofs-py/tests/test_acl_reads.py +322 -0
  116. origofs-0.0.3/crates/origofs-py/tests/test_actors.py +116 -0
  117. origofs-0.0.3/crates/origofs-py/tests/test_bindings.py +98 -0
  118. origofs-0.0.3/crates/origofs-py/tests/test_coedit.py +655 -0
  119. origofs-0.0.3/crates/origofs-py/tests/test_coedit_cluster.py +109 -0
  120. origofs-0.0.3/crates/origofs-py/tests/test_coedit_tree.py +399 -0
  121. origofs-0.0.3/crates/origofs-py/tests/test_db_migrations.py +221 -0
  122. origofs-0.0.3/crates/origofs-py/tests/test_fastapi_router.py +1137 -0
  123. origofs-0.0.3/crates/origofs-py/tests/test_fastapi_tenant_scope.py +314 -0
  124. origofs-0.0.3/crates/origofs-py/tests/test_fsspec.py +220 -0
  125. origofs-0.0.3/crates/origofs-py/tests/test_fsspec_compliance.py +82 -0
  126. origofs-0.0.3/crates/origofs-py/tests/test_object_store.py +82 -0
  127. origofs-0.0.3/crates/origofs-py/tests/test_optional_extras.py +111 -0
  128. origofs-0.0.3/crates/origofs-py/tests/test_overlay.py +48 -0
  129. origofs-0.0.3/crates/origofs-py/tests/test_parity.py +1611 -0
  130. origofs-0.0.3/crates/origofs-py/tests/test_rag.py +191 -0
  131. origofs-0.0.3/crates/origofs-py/tests/test_recover.py +56 -0
  132. origofs-0.0.3/crates/origofs-py/tests/test_serve_nfs_shutdown.py +207 -0
  133. origofs-0.0.3/crates/origofs-py/tests/test_streaming.py +223 -0
  134. origofs-0.0.3/crates/origofs-py/tests/test_stub_records.py +283 -0
  135. origofs-0.0.3/crates/origofs-py/tests/test_subscribe.py +69 -0
  136. origofs-0.0.3/crates/origofs-py/tests/test_upath.py +90 -0
  137. origofs-0.0.3/crates/origofs-sdk/Cargo.toml +140 -0
  138. origofs-0.0.3/crates/origofs-sdk/README.md +1068 -0
  139. origofs-0.0.3/crates/origofs-sdk/src/api/coedit.rs +1029 -0
  140. origofs-0.0.3/crates/origofs-sdk/src/api/mod.rs +2186 -0
  141. origofs-0.0.3/crates/origofs-sdk/src/fuse.rs +1788 -0
  142. origofs-0.0.3/crates/origofs-sdk/src/git/export.rs +274 -0
  143. origofs-0.0.3/crates/origofs-sdk/src/git/import.rs +308 -0
  144. origofs-0.0.3/crates/origofs-sdk/src/git/mod.rs +31 -0
  145. origofs-0.0.3/crates/origofs-sdk/src/git/object.rs +376 -0
  146. origofs-0.0.3/crates/origofs-sdk/src/lib.rs +2336 -0
  147. origofs-0.0.3/crates/origofs-sdk/src/mcp.rs +778 -0
  148. origofs-0.0.3/crates/origofs-sdk/src/nfs.rs +435 -0
  149. origofs-0.0.3/crates/origofs-sdk/src/sandbox.rs +1082 -0
  150. origofs-0.0.3/crates/origofs-sdk/tests/api.rs +862 -0
  151. origofs-0.0.3/crates/origofs-sdk/tests/api_coedit_cluster.rs +171 -0
  152. origofs-0.0.3/crates/origofs-sdk/tests/api_coedit_tree_ws.rs +386 -0
  153. origofs-0.0.3/crates/origofs-sdk/tests/api_coedit_ws.rs +576 -0
  154. origofs-0.0.3/crates/origofs-sdk/tests/api_media.rs +244 -0
  155. origofs-0.0.3/crates/origofs-sdk/tests/api_read_acl.rs +389 -0
  156. origofs-0.0.3/crates/origofs-sdk/tests/api_scope.rs +480 -0
  157. origofs-0.0.3/crates/origofs-sdk/tests/api_write_policy.rs +268 -0
  158. origofs-0.0.3/crates/origofs-sdk/tests/backup.rs +145 -0
  159. origofs-0.0.3/crates/origofs-sdk/tests/coedit.rs +81 -0
  160. origofs-0.0.3/crates/origofs-sdk/tests/coedit_acl.rs +161 -0
  161. origofs-0.0.3/crates/origofs-sdk/tests/coedit_coherence.rs +188 -0
  162. origofs-0.0.3/crates/origofs-sdk/tests/coedit_tree_suggest.rs +407 -0
  163. origofs-0.0.3/crates/origofs-sdk/tests/collab.rs +114 -0
  164. origofs-0.0.3/crates/origofs-sdk/tests/diff.rs +105 -0
  165. origofs-0.0.3/crates/origofs-sdk/tests/encrypt.rs +88 -0
  166. origofs-0.0.3/crates/origofs-sdk/tests/encrypt_backends.rs +139 -0
  167. origofs-0.0.3/crates/origofs-sdk/tests/fuse_buffering.rs +417 -0
  168. origofs-0.0.3/crates/origofs-sdk/tests/fuse_mount.rs +347 -0
  169. origofs-0.0.3/crates/origofs-sdk/tests/fuse_teardown.rs +256 -0
  170. origofs-0.0.3/crates/origofs-sdk/tests/git_export_live.rs +75 -0
  171. origofs-0.0.3/crates/origofs-sdk/tests/git_hostile.rs +173 -0
  172. origofs-0.0.3/crates/origofs-sdk/tests/git_interop.rs +275 -0
  173. origofs-0.0.3/crates/origofs-sdk/tests/mcp.rs +753 -0
  174. origofs-0.0.3/crates/origofs-sdk/tests/mcp_coedit.rs +350 -0
  175. origofs-0.0.3/crates/origofs-sdk/tests/metrics.rs +208 -0
  176. origofs-0.0.3/crates/origofs-sdk/tests/migrations.rs +24 -0
  177. origofs-0.0.3/crates/origofs-sdk/tests/multi_workspace.rs +970 -0
  178. origofs-0.0.3/crates/origofs-sdk/tests/nfs.rs +187 -0
  179. origofs-0.0.3/crates/origofs-sdk/tests/pack.rs +87 -0
  180. origofs-0.0.3/crates/origofs-sdk/tests/recover.rs +108 -0
  181. origofs-0.0.3/crates/origofs-sdk/tests/resync.rs +115 -0
  182. origofs-0.0.3/crates/origofs-sdk/tests/sandbox.rs +770 -0
  183. origofs-0.0.3/crates/origofs-sdk/tests/shutdown.rs +142 -0
  184. origofs-0.0.3/crates/origofs-sdk/tests/subscribe.rs +200 -0
  185. origofs-0.0.3/crates/origofs-sdk/tests/suggest.rs +185 -0
  186. origofs-0.0.3/pyproject.toml +101 -0
  187. origofs-0.0.3/python/origofs/__init__.py +76 -0
  188. origofs-0.0.3/python/origofs/__init__.pyi +1467 -0
  189. origofs-0.0.3/python/origofs/_upath.py +54 -0
  190. origofs-0.0.3/python/origofs/converters.py +109 -0
  191. origofs-0.0.3/python/origofs/db/__init__.py +113 -0
  192. origofs-0.0.3/python/origofs/db/migrations/__init__.py +6 -0
  193. origofs-0.0.3/python/origofs/db/migrations/env.py +73 -0
  194. origofs-0.0.3/python/origofs/db/migrations/script.py.mako +26 -0
  195. origofs-0.0.3/python/origofs/db/migrations/versions/0001_initial.py +130 -0
  196. origofs-0.0.3/python/origofs/db/migrations/versions/__init__.py +0 -0
  197. origofs-0.0.3/python/origofs/db/models.py +428 -0
  198. origofs-0.0.3/python/origofs/fastapi.py +1870 -0
  199. origofs-0.0.3/python/origofs/fsspec.py +618 -0
  200. origofs-0.0.3/python/origofs/llamaindex.py +201 -0
  201. origofs-0.0.3/python/origofs/overlay.py +81 -0
  202. origofs-0.0.3/python/origofs/py.typed +0 -0
  203. origofs-0.0.3/python/origofs/rag.py +333 -0
@@ -0,0 +1,4202 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common 0.1.7",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "ahash"
23
+ version = "0.8.12"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.4"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "android_system_properties"
44
+ version = "0.1.5"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
47
+ dependencies = [
48
+ "libc",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "anes"
53
+ version = "0.1.6"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
56
+
57
+ [[package]]
58
+ name = "anstream"
59
+ version = "1.0.0"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
62
+ dependencies = [
63
+ "anstyle",
64
+ "anstyle-parse",
65
+ "anstyle-query",
66
+ "anstyle-wincon",
67
+ "colorchoice",
68
+ "is_terminal_polyfill",
69
+ "utf8parse",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anstyle"
74
+ version = "1.0.14"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
77
+
78
+ [[package]]
79
+ name = "anstyle-parse"
80
+ version = "1.0.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
83
+ dependencies = [
84
+ "utf8parse",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle-query"
89
+ version = "1.1.5"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
92
+ dependencies = [
93
+ "windows-sys 0.61.2",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "anstyle-wincon"
98
+ version = "3.0.11"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
101
+ dependencies = [
102
+ "anstyle",
103
+ "once_cell_polyfill",
104
+ "windows-sys 0.61.2",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "anyhow"
109
+ version = "1.0.104"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
112
+
113
+ [[package]]
114
+ name = "arc-swap"
115
+ version = "1.9.2"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
118
+ dependencies = [
119
+ "rustversion",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "argon2"
124
+ version = "0.5.3"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
127
+ dependencies = [
128
+ "base64ct",
129
+ "blake2",
130
+ "cpufeatures 0.2.17",
131
+ "password-hash",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "arrayref"
136
+ version = "0.3.9"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
139
+
140
+ [[package]]
141
+ name = "arrayvec"
142
+ version = "0.7.8"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
145
+
146
+ [[package]]
147
+ name = "async-lock"
148
+ version = "3.4.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
151
+ dependencies = [
152
+ "event-listener",
153
+ "event-listener-strategy",
154
+ "pin-project-lite",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "async-recursion"
159
+ version = "1.1.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
162
+ dependencies = [
163
+ "proc-macro2",
164
+ "quote",
165
+ "syn 2.0.119",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "async-trait"
170
+ version = "0.1.91"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
173
+ dependencies = [
174
+ "proc-macro2",
175
+ "quote",
176
+ "syn 3.0.3",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "atomic-waker"
181
+ version = "1.1.2"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
184
+
185
+ [[package]]
186
+ name = "autocfg"
187
+ version = "1.5.1"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
190
+
191
+ [[package]]
192
+ name = "axum"
193
+ version = "0.8.9"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
196
+ dependencies = [
197
+ "axum-core",
198
+ "base64",
199
+ "bytes",
200
+ "form_urlencoded",
201
+ "futures-util",
202
+ "http",
203
+ "http-body",
204
+ "http-body-util",
205
+ "hyper",
206
+ "hyper-util",
207
+ "itoa",
208
+ "matchit",
209
+ "memchr",
210
+ "mime",
211
+ "percent-encoding",
212
+ "pin-project-lite",
213
+ "serde_core",
214
+ "serde_json",
215
+ "serde_path_to_error",
216
+ "serde_urlencoded",
217
+ "sha1",
218
+ "sync_wrapper",
219
+ "tokio",
220
+ "tokio-tungstenite 0.29.0",
221
+ "tower",
222
+ "tower-layer",
223
+ "tower-service",
224
+ "tracing",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "axum-core"
229
+ version = "0.5.6"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
232
+ dependencies = [
233
+ "bytes",
234
+ "futures-core",
235
+ "http",
236
+ "http-body",
237
+ "http-body-util",
238
+ "mime",
239
+ "pin-project-lite",
240
+ "sync_wrapper",
241
+ "tower-layer",
242
+ "tower-service",
243
+ "tracing",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "base64"
248
+ version = "0.22.1"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
251
+
252
+ [[package]]
253
+ name = "base64ct"
254
+ version = "1.8.3"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
257
+
258
+ [[package]]
259
+ name = "bit-set"
260
+ version = "0.8.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
263
+ dependencies = [
264
+ "bit-vec",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "bit-vec"
269
+ version = "0.8.0"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
272
+
273
+ [[package]]
274
+ name = "bitflags"
275
+ version = "2.13.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
278
+
279
+ [[package]]
280
+ name = "blake2"
281
+ version = "0.10.6"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
284
+ dependencies = [
285
+ "digest 0.10.7",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "blake3"
290
+ version = "1.8.5"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
293
+ dependencies = [
294
+ "arrayref",
295
+ "arrayvec",
296
+ "cc",
297
+ "cfg-if",
298
+ "constant_time_eq",
299
+ "cpufeatures 0.3.0",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "block-buffer"
304
+ version = "0.10.4"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
307
+ dependencies = [
308
+ "generic-array",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "block-buffer"
313
+ version = "0.12.1"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
316
+ dependencies = [
317
+ "hybrid-array",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "bstr"
322
+ version = "1.13.0"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
325
+ dependencies = [
326
+ "memchr",
327
+ "serde_core",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "bumpalo"
332
+ version = "3.20.3"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
335
+
336
+ [[package]]
337
+ name = "byteorder"
338
+ version = "1.5.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
341
+
342
+ [[package]]
343
+ name = "bytes"
344
+ version = "1.12.1"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
347
+
348
+ [[package]]
349
+ name = "cast"
350
+ version = "0.3.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
353
+
354
+ [[package]]
355
+ name = "cc"
356
+ version = "1.3.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
359
+ dependencies = [
360
+ "find-msvc-tools",
361
+ "shlex",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "cfg-if"
366
+ version = "1.0.4"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
369
+
370
+ [[package]]
371
+ name = "cfg_aliases"
372
+ version = "0.2.2"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
375
+
376
+ [[package]]
377
+ name = "chacha20"
378
+ version = "0.9.1"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
381
+ dependencies = [
382
+ "cfg-if",
383
+ "cipher",
384
+ "cpufeatures 0.2.17",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "chacha20"
389
+ version = "0.10.1"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
392
+ dependencies = [
393
+ "cfg-if",
394
+ "cpufeatures 0.3.0",
395
+ "rand_core 0.10.1",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "chacha20poly1305"
400
+ version = "0.10.1"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
403
+ dependencies = [
404
+ "aead",
405
+ "chacha20 0.9.1",
406
+ "cipher",
407
+ "poly1305",
408
+ "zeroize",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "chrono"
413
+ version = "0.4.45"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
416
+ dependencies = [
417
+ "iana-time-zone",
418
+ "num-traits",
419
+ "serde",
420
+ "windows-link",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "ciborium"
425
+ version = "0.2.2"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
428
+ dependencies = [
429
+ "ciborium-io",
430
+ "ciborium-ll",
431
+ "serde",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "ciborium-io"
436
+ version = "0.2.2"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
439
+
440
+ [[package]]
441
+ name = "ciborium-ll"
442
+ version = "0.2.2"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
445
+ dependencies = [
446
+ "ciborium-io",
447
+ "half",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "cipher"
452
+ version = "0.4.4"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
455
+ dependencies = [
456
+ "crypto-common 0.1.7",
457
+ "inout",
458
+ "zeroize",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "clap"
463
+ version = "4.6.4"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
466
+ dependencies = [
467
+ "clap_builder",
468
+ "clap_derive",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "clap_builder"
473
+ version = "4.6.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
476
+ dependencies = [
477
+ "anstream",
478
+ "anstyle",
479
+ "clap_lex",
480
+ "strsim",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "clap_derive"
485
+ version = "4.6.4"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
488
+ dependencies = [
489
+ "heck",
490
+ "proc-macro2",
491
+ "quote",
492
+ "syn 3.0.3",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "clap_lex"
497
+ version = "1.1.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
500
+
501
+ [[package]]
502
+ name = "cmov"
503
+ version = "0.5.4"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
506
+
507
+ [[package]]
508
+ name = "colorchoice"
509
+ version = "1.0.5"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
512
+
513
+ [[package]]
514
+ name = "const-oid"
515
+ version = "0.9.6"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
518
+
519
+ [[package]]
520
+ name = "const-oid"
521
+ version = "0.10.2"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
524
+
525
+ [[package]]
526
+ name = "constant_time_eq"
527
+ version = "0.4.2"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
530
+
531
+ [[package]]
532
+ name = "core-foundation"
533
+ version = "0.10.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
536
+ dependencies = [
537
+ "core-foundation-sys",
538
+ "libc",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "core-foundation-sys"
543
+ version = "0.8.7"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
546
+
547
+ [[package]]
548
+ name = "cpufeatures"
549
+ version = "0.2.17"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
552
+ dependencies = [
553
+ "libc",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "cpufeatures"
558
+ version = "0.3.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
561
+ dependencies = [
562
+ "libc",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "crc32fast"
567
+ version = "1.5.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
570
+ dependencies = [
571
+ "cfg-if",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "criterion"
576
+ version = "0.5.1"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
579
+ dependencies = [
580
+ "anes",
581
+ "cast",
582
+ "ciborium",
583
+ "clap",
584
+ "criterion-plot",
585
+ "is-terminal",
586
+ "itertools 0.10.5",
587
+ "num-traits",
588
+ "once_cell",
589
+ "oorandom",
590
+ "plotters",
591
+ "rayon",
592
+ "regex",
593
+ "serde",
594
+ "serde_derive",
595
+ "serde_json",
596
+ "tinytemplate",
597
+ "walkdir",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "criterion-plot"
602
+ version = "0.5.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
605
+ dependencies = [
606
+ "cast",
607
+ "itertools 0.10.5",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "crossbeam-deque"
612
+ version = "0.8.7"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
615
+ dependencies = [
616
+ "crossbeam-epoch",
617
+ "crossbeam-utils",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "crossbeam-epoch"
622
+ version = "0.9.20"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
625
+ dependencies = [
626
+ "crossbeam-utils",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "crossbeam-utils"
631
+ version = "0.8.22"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
634
+
635
+ [[package]]
636
+ name = "crunchy"
637
+ version = "0.2.4"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
640
+
641
+ [[package]]
642
+ name = "crypto-common"
643
+ version = "0.1.7"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
646
+ dependencies = [
647
+ "generic-array",
648
+ "rand_core 0.6.4",
649
+ "typenum",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "crypto-common"
654
+ version = "0.2.2"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
657
+ dependencies = [
658
+ "hybrid-array",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "ctutils"
663
+ version = "0.4.2"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
666
+ dependencies = [
667
+ "cmov",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "dashmap"
672
+ version = "6.2.1"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
675
+ dependencies = [
676
+ "cfg-if",
677
+ "crossbeam-utils",
678
+ "hashbrown 0.14.5",
679
+ "lock_api",
680
+ "once_cell",
681
+ "parking_lot_core",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "data-encoding"
686
+ version = "2.11.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
689
+
690
+ [[package]]
691
+ name = "deadpool"
692
+ version = "0.12.3"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
695
+ dependencies = [
696
+ "deadpool-runtime",
697
+ "lazy_static",
698
+ "num_cpus",
699
+ "tokio",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "deadpool-postgres"
704
+ version = "0.14.1"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9"
707
+ dependencies = [
708
+ "async-trait",
709
+ "deadpool",
710
+ "getrandom 0.2.17",
711
+ "tokio",
712
+ "tokio-postgres",
713
+ "tracing",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "deadpool-runtime"
718
+ version = "0.1.4"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
721
+ dependencies = [
722
+ "tokio",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "der"
727
+ version = "0.7.10"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
730
+ dependencies = [
731
+ "const-oid 0.9.6",
732
+ "der_derive",
733
+ "flagset",
734
+ "zeroize",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "der_derive"
739
+ version = "0.7.3"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
742
+ dependencies = [
743
+ "proc-macro2",
744
+ "quote",
745
+ "syn 2.0.119",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "diffy"
750
+ version = "0.5.1"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "10aec8f7f9393bd6a4f2762be0ceb012d3cbe2478987258cc9960de148561914"
753
+ dependencies = [
754
+ "hashbrown 0.17.1",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "digest"
759
+ version = "0.10.7"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
762
+ dependencies = [
763
+ "block-buffer 0.10.4",
764
+ "crypto-common 0.1.7",
765
+ "subtle",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "digest"
770
+ version = "0.11.3"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
773
+ dependencies = [
774
+ "block-buffer 0.12.1",
775
+ "const-oid 0.10.2",
776
+ "crypto-common 0.2.2",
777
+ "ctutils",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "displaydoc"
782
+ version = "0.2.6"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
785
+ dependencies = [
786
+ "proc-macro2",
787
+ "quote",
788
+ "syn 2.0.119",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "either"
793
+ version = "1.16.0"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
796
+
797
+ [[package]]
798
+ name = "equivalent"
799
+ version = "1.0.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
802
+
803
+ [[package]]
804
+ name = "errno"
805
+ version = "0.3.14"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
808
+ dependencies = [
809
+ "libc",
810
+ "windows-sys 0.52.0",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "event-listener"
815
+ version = "5.4.2"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2"
818
+ dependencies = [
819
+ "parking",
820
+ "pin-project-lite",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "event-listener-strategy"
825
+ version = "0.5.4"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
828
+ dependencies = [
829
+ "event-listener",
830
+ "pin-project-lite",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "evmap"
835
+ version = "11.0.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "1b8874945f036109c72242964c1174cf99434e30cfa45bf45fedc983f50046f8"
838
+ dependencies = [
839
+ "hashbag",
840
+ "left-right",
841
+ "smallvec",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "fallible-iterator"
846
+ version = "0.2.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
849
+
850
+ [[package]]
851
+ name = "fallible-iterator"
852
+ version = "0.3.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
855
+
856
+ [[package]]
857
+ name = "fallible-streaming-iterator"
858
+ version = "0.1.9"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
861
+
862
+ [[package]]
863
+ name = "fastcdc"
864
+ version = "3.2.1"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "bf51ceb43e96afbfe4dd5c6f6082af5dfd60e220820b8123792d61963f2ce6bc"
867
+
868
+ [[package]]
869
+ name = "fastrand"
870
+ version = "2.5.0"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
873
+ dependencies = [
874
+ "getrandom 0.4.3",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "filetime"
879
+ version = "0.2.29"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
882
+ dependencies = [
883
+ "cfg-if",
884
+ "libc",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "find-msvc-tools"
889
+ version = "0.1.9"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
892
+
893
+ [[package]]
894
+ name = "flagset"
895
+ version = "0.4.7"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
898
+
899
+ [[package]]
900
+ name = "flate2"
901
+ version = "1.1.9"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
904
+ dependencies = [
905
+ "crc32fast",
906
+ "miniz_oxide",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "fnv"
911
+ version = "1.0.7"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
914
+
915
+ [[package]]
916
+ name = "foldhash"
917
+ version = "0.2.0"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
920
+
921
+ [[package]]
922
+ name = "form_urlencoded"
923
+ version = "1.2.2"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
926
+ dependencies = [
927
+ "percent-encoding",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "fuser"
932
+ version = "0.17.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "80a5eca878900c2e39e9e52fd797954b7fc39eeefc8558257114bfea6a698fcf"
935
+ dependencies = [
936
+ "bitflags",
937
+ "libc",
938
+ "log",
939
+ "memchr",
940
+ "nix",
941
+ "num_enum",
942
+ "page_size",
943
+ "parking_lot",
944
+ "pkg-config",
945
+ "ref-cast",
946
+ "smallvec",
947
+ "zerocopy",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "futures"
952
+ version = "0.3.33"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
955
+ dependencies = [
956
+ "futures-channel",
957
+ "futures-core",
958
+ "futures-executor",
959
+ "futures-io",
960
+ "futures-sink",
961
+ "futures-task",
962
+ "futures-util",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "futures-channel"
967
+ version = "0.3.33"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
970
+ dependencies = [
971
+ "futures-core",
972
+ "futures-sink",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "futures-core"
977
+ version = "0.3.33"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
980
+
981
+ [[package]]
982
+ name = "futures-executor"
983
+ version = "0.3.33"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
986
+ dependencies = [
987
+ "futures-core",
988
+ "futures-task",
989
+ "futures-util",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "futures-io"
994
+ version = "0.3.33"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
997
+
998
+ [[package]]
999
+ name = "futures-macro"
1000
+ version = "0.3.33"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
1003
+ dependencies = [
1004
+ "proc-macro2",
1005
+ "quote",
1006
+ "syn 2.0.119",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "futures-sink"
1011
+ version = "0.3.33"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
1014
+
1015
+ [[package]]
1016
+ name = "futures-task"
1017
+ version = "0.3.33"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
1020
+
1021
+ [[package]]
1022
+ name = "futures-util"
1023
+ version = "0.3.33"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
1026
+ dependencies = [
1027
+ "futures-channel",
1028
+ "futures-core",
1029
+ "futures-io",
1030
+ "futures-macro",
1031
+ "futures-sink",
1032
+ "futures-task",
1033
+ "memchr",
1034
+ "pin-project-lite",
1035
+ "slab",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "generator"
1040
+ version = "0.8.9"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
1043
+ dependencies = [
1044
+ "cc",
1045
+ "cfg-if",
1046
+ "libc",
1047
+ "log",
1048
+ "rustversion",
1049
+ "windows-link",
1050
+ "windows-result",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "generic-array"
1055
+ version = "0.14.7"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1058
+ dependencies = [
1059
+ "typenum",
1060
+ "version_check",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "getrandom"
1065
+ version = "0.2.17"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1068
+ dependencies = [
1069
+ "cfg-if",
1070
+ "js-sys",
1071
+ "libc",
1072
+ "wasi 0.11.1+wasi-snapshot-preview1",
1073
+ "wasm-bindgen",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "getrandom"
1078
+ version = "0.3.4"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1081
+ dependencies = [
1082
+ "cfg-if",
1083
+ "libc",
1084
+ "r-efi 5.3.0",
1085
+ "wasip2",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "getrandom"
1090
+ version = "0.4.3"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1093
+ dependencies = [
1094
+ "cfg-if",
1095
+ "js-sys",
1096
+ "libc",
1097
+ "r-efi 6.0.0",
1098
+ "rand_core 0.10.1",
1099
+ "wasm-bindgen",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "h2"
1104
+ version = "0.4.19"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16"
1107
+ dependencies = [
1108
+ "atomic-waker",
1109
+ "bytes",
1110
+ "fnv",
1111
+ "futures-core",
1112
+ "futures-sink",
1113
+ "http",
1114
+ "indexmap",
1115
+ "slab",
1116
+ "tokio",
1117
+ "tokio-util",
1118
+ "tracing",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "half"
1123
+ version = "2.7.1"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1126
+ dependencies = [
1127
+ "cfg-if",
1128
+ "crunchy",
1129
+ "zerocopy",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "hashbag"
1134
+ version = "0.1.13"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "7040a10f52cba493ddb09926e15d10a9d8a28043708a405931fe4c6f19fac064"
1137
+
1138
+ [[package]]
1139
+ name = "hashbrown"
1140
+ version = "0.14.5"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1143
+ dependencies = [
1144
+ "ahash",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "hashbrown"
1149
+ version = "0.16.1"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1152
+ dependencies = [
1153
+ "foldhash",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "hashbrown"
1158
+ version = "0.17.1"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1161
+ dependencies = [
1162
+ "foldhash",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "hashlink"
1167
+ version = "0.9.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1170
+ dependencies = [
1171
+ "hashbrown 0.14.5",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "heck"
1176
+ version = "0.5.0"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1179
+
1180
+ [[package]]
1181
+ name = "hermit-abi"
1182
+ version = "0.5.2"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1185
+
1186
+ [[package]]
1187
+ name = "hex"
1188
+ version = "0.4.3"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1191
+
1192
+ [[package]]
1193
+ name = "hmac"
1194
+ version = "0.13.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1197
+ dependencies = [
1198
+ "digest 0.11.3",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "http"
1203
+ version = "1.4.2"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1206
+ dependencies = [
1207
+ "bytes",
1208
+ "itoa",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "http-body"
1213
+ version = "1.1.0"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
1216
+ dependencies = [
1217
+ "bytes",
1218
+ "http",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "http-body-util"
1223
+ version = "0.1.4"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
1226
+ dependencies = [
1227
+ "bytes",
1228
+ "futures-core",
1229
+ "http",
1230
+ "http-body",
1231
+ "pin-project-lite",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "httparse"
1236
+ version = "1.10.1"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1239
+
1240
+ [[package]]
1241
+ name = "httpdate"
1242
+ version = "1.0.3"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1245
+
1246
+ [[package]]
1247
+ name = "humantime"
1248
+ version = "2.4.0"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
1251
+
1252
+ [[package]]
1253
+ name = "hybrid-array"
1254
+ version = "0.4.13"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
1257
+ dependencies = [
1258
+ "typenum",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "hyper"
1263
+ version = "1.11.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
1266
+ dependencies = [
1267
+ "atomic-waker",
1268
+ "bytes",
1269
+ "futures-channel",
1270
+ "futures-core",
1271
+ "h2",
1272
+ "http",
1273
+ "http-body",
1274
+ "httparse",
1275
+ "httpdate",
1276
+ "itoa",
1277
+ "pin-project-lite",
1278
+ "smallvec",
1279
+ "tokio",
1280
+ "want",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "hyper-rustls"
1285
+ version = "0.27.9"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1288
+ dependencies = [
1289
+ "http",
1290
+ "hyper",
1291
+ "hyper-util",
1292
+ "rustls",
1293
+ "rustls-native-certs",
1294
+ "tokio",
1295
+ "tokio-rustls",
1296
+ "tower-service",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "hyper-util"
1301
+ version = "0.1.20"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1304
+ dependencies = [
1305
+ "base64",
1306
+ "bytes",
1307
+ "futures-channel",
1308
+ "futures-util",
1309
+ "http",
1310
+ "http-body",
1311
+ "hyper",
1312
+ "ipnet",
1313
+ "libc",
1314
+ "percent-encoding",
1315
+ "pin-project-lite",
1316
+ "socket2",
1317
+ "tokio",
1318
+ "tower-service",
1319
+ "tracing",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "iana-time-zone"
1324
+ version = "0.1.65"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1327
+ dependencies = [
1328
+ "android_system_properties",
1329
+ "core-foundation-sys",
1330
+ "iana-time-zone-haiku",
1331
+ "js-sys",
1332
+ "log",
1333
+ "wasm-bindgen",
1334
+ "windows-core",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "iana-time-zone-haiku"
1339
+ version = "0.1.2"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1342
+ dependencies = [
1343
+ "cc",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "icu_collections"
1348
+ version = "2.2.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1351
+ dependencies = [
1352
+ "displaydoc",
1353
+ "potential_utf",
1354
+ "utf8_iter",
1355
+ "yoke",
1356
+ "zerofrom",
1357
+ "zerovec",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "icu_locale_core"
1362
+ version = "2.2.0"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1365
+ dependencies = [
1366
+ "displaydoc",
1367
+ "litemap",
1368
+ "tinystr",
1369
+ "writeable",
1370
+ "zerovec",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "icu_normalizer"
1375
+ version = "2.2.0"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1378
+ dependencies = [
1379
+ "icu_collections",
1380
+ "icu_normalizer_data",
1381
+ "icu_properties",
1382
+ "icu_provider",
1383
+ "smallvec",
1384
+ "zerovec",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "icu_normalizer_data"
1389
+ version = "2.2.0"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1392
+
1393
+ [[package]]
1394
+ name = "icu_properties"
1395
+ version = "2.2.0"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1398
+ dependencies = [
1399
+ "icu_collections",
1400
+ "icu_locale_core",
1401
+ "icu_properties_data",
1402
+ "icu_provider",
1403
+ "zerotrie",
1404
+ "zerovec",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "icu_properties_data"
1409
+ version = "2.2.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1412
+
1413
+ [[package]]
1414
+ name = "icu_provider"
1415
+ version = "2.2.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1418
+ dependencies = [
1419
+ "displaydoc",
1420
+ "icu_locale_core",
1421
+ "writeable",
1422
+ "yoke",
1423
+ "zerofrom",
1424
+ "zerotrie",
1425
+ "zerovec",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "idna"
1430
+ version = "1.1.0"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1433
+ dependencies = [
1434
+ "idna_adapter",
1435
+ "smallvec",
1436
+ "utf8_iter",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "idna_adapter"
1441
+ version = "1.2.2"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1444
+ dependencies = [
1445
+ "icu_normalizer",
1446
+ "icu_properties",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "indexmap"
1451
+ version = "2.14.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1454
+ dependencies = [
1455
+ "equivalent",
1456
+ "hashbrown 0.17.1",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "inout"
1461
+ version = "0.1.4"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1464
+ dependencies = [
1465
+ "generic-array",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "ipnet"
1470
+ version = "2.12.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1473
+
1474
+ [[package]]
1475
+ name = "is-terminal"
1476
+ version = "0.4.17"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1479
+ dependencies = [
1480
+ "hermit-abi",
1481
+ "libc",
1482
+ "windows-sys 0.52.0",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "is_terminal_polyfill"
1487
+ version = "1.70.2"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1490
+
1491
+ [[package]]
1492
+ name = "itertools"
1493
+ version = "0.10.5"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1496
+ dependencies = [
1497
+ "either",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "itertools"
1502
+ version = "0.14.0"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1505
+ dependencies = [
1506
+ "either",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "itoa"
1511
+ version = "1.0.18"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1514
+
1515
+ [[package]]
1516
+ name = "js-sys"
1517
+ version = "0.3.103"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1520
+ dependencies = [
1521
+ "cfg-if",
1522
+ "futures-util",
1523
+ "wasm-bindgen",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "lazy_static"
1528
+ version = "1.5.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1531
+
1532
+ [[package]]
1533
+ name = "left-right"
1534
+ version = "0.11.8"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "8bc015ded5d9b3054dbbdb63332cdd6ee42352ccef19e911e25117490e2f48ee"
1537
+ dependencies = [
1538
+ "crossbeam-utils",
1539
+ "loom",
1540
+ "slab",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "libc"
1545
+ version = "0.2.189"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1548
+
1549
+ [[package]]
1550
+ name = "libredox"
1551
+ version = "0.1.18"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
1554
+ dependencies = [
1555
+ "libc",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "libsqlite3-sys"
1560
+ version = "0.30.1"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1563
+ dependencies = [
1564
+ "cc",
1565
+ "pkg-config",
1566
+ "vcpkg",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "linux-raw-sys"
1571
+ version = "0.12.1"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1574
+
1575
+ [[package]]
1576
+ name = "litemap"
1577
+ version = "0.8.2"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1580
+
1581
+ [[package]]
1582
+ name = "lock_api"
1583
+ version = "0.4.14"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1586
+ dependencies = [
1587
+ "scopeguard",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "log"
1592
+ version = "0.4.33"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1595
+
1596
+ [[package]]
1597
+ name = "loom"
1598
+ version = "0.7.2"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1601
+ dependencies = [
1602
+ "cfg-if",
1603
+ "generator",
1604
+ "scoped-tls",
1605
+ "tracing",
1606
+ "tracing-subscriber",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "lru-slab"
1611
+ version = "0.1.2"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1614
+
1615
+ [[package]]
1616
+ name = "matchers"
1617
+ version = "0.2.0"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1620
+ dependencies = [
1621
+ "regex-automata",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "matchit"
1626
+ version = "0.8.4"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1629
+
1630
+ [[package]]
1631
+ name = "md-5"
1632
+ version = "0.10.6"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1635
+ dependencies = [
1636
+ "cfg-if",
1637
+ "digest 0.10.7",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "md-5"
1642
+ version = "0.11.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1645
+ dependencies = [
1646
+ "cfg-if",
1647
+ "digest 0.11.3",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "memchr"
1652
+ version = "2.8.3"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1655
+
1656
+ [[package]]
1657
+ name = "memoffset"
1658
+ version = "0.9.1"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1661
+ dependencies = [
1662
+ "autocfg",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "metrics"
1667
+ version = "0.24.6"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "89550ee9f79e88fef3119de263694973a8adb26c21d75322164fb8c493039fe2"
1670
+ dependencies = [
1671
+ "portable-atomic",
1672
+ "rapidhash",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "metrics-exporter-prometheus"
1677
+ version = "0.18.3"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "1db0d8f1fc9e62caebd0319e11eaec5822b0186c171568f0480b46a0137f9108"
1680
+ dependencies = [
1681
+ "base64",
1682
+ "evmap",
1683
+ "indexmap",
1684
+ "metrics",
1685
+ "metrics-util",
1686
+ "quanta",
1687
+ "thiserror 2.0.19",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "metrics-util"
1692
+ version = "0.20.4"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "96f8722f8562635f92f8ed992f26df0532266eb03d5202607c20c0d7e9745e13"
1695
+ dependencies = [
1696
+ "crossbeam-epoch",
1697
+ "crossbeam-utils",
1698
+ "hashbrown 0.16.1",
1699
+ "metrics",
1700
+ "quanta",
1701
+ "rand 0.9.5",
1702
+ "rand_xoshiro",
1703
+ "rapidhash",
1704
+ "sketches-ddsketch",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "mime"
1709
+ version = "0.3.17"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1712
+
1713
+ [[package]]
1714
+ name = "miniz_oxide"
1715
+ version = "0.8.9"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1718
+ dependencies = [
1719
+ "adler2",
1720
+ "simd-adler32",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "mio"
1725
+ version = "1.2.2"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1728
+ dependencies = [
1729
+ "libc",
1730
+ "wasi 0.11.1+wasi-snapshot-preview1",
1731
+ "windows-sys 0.61.2",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "nfsserve"
1736
+ version = "0.11.0"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "ef1424b6d88c60a091931392970999ea3ceab132d968e6a5545c770fad5b97d7"
1739
+ dependencies = [
1740
+ "anyhow",
1741
+ "async-trait",
1742
+ "byteorder",
1743
+ "filetime",
1744
+ "num-derive",
1745
+ "num-traits",
1746
+ "tokio",
1747
+ "tracing",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "nix"
1752
+ version = "0.30.1"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1755
+ dependencies = [
1756
+ "bitflags",
1757
+ "cfg-if",
1758
+ "cfg_aliases",
1759
+ "libc",
1760
+ "memoffset",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "nu-ansi-term"
1765
+ version = "0.50.3"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1768
+ dependencies = [
1769
+ "windows-sys 0.61.2",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "num-derive"
1774
+ version = "0.4.2"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1777
+ dependencies = [
1778
+ "proc-macro2",
1779
+ "quote",
1780
+ "syn 2.0.119",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "num-traits"
1785
+ version = "0.2.19"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1788
+ dependencies = [
1789
+ "autocfg",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "num_cpus"
1794
+ version = "1.17.0"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1797
+ dependencies = [
1798
+ "hermit-abi",
1799
+ "libc",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "num_enum"
1804
+ version = "0.7.6"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1807
+ dependencies = [
1808
+ "num_enum_derive",
1809
+ "rustversion",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "num_enum_derive"
1814
+ version = "0.7.6"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1817
+ dependencies = [
1818
+ "proc-macro-crate",
1819
+ "proc-macro2",
1820
+ "quote",
1821
+ "syn 2.0.119",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "objc2-core-foundation"
1826
+ version = "0.3.2"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1829
+ dependencies = [
1830
+ "bitflags",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "objc2-system-configuration"
1835
+ version = "0.3.2"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
1838
+ dependencies = [
1839
+ "objc2-core-foundation",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "object_store"
1844
+ version = "0.12.5"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "fbfbfff40aeccab00ec8a910b57ca8ecf4319b335c542f2edcd19dd25a1e2a00"
1847
+ dependencies = [
1848
+ "async-trait",
1849
+ "base64",
1850
+ "bytes",
1851
+ "chrono",
1852
+ "form_urlencoded",
1853
+ "futures",
1854
+ "http",
1855
+ "http-body-util",
1856
+ "humantime",
1857
+ "hyper",
1858
+ "itertools 0.14.0",
1859
+ "md-5 0.10.6",
1860
+ "parking_lot",
1861
+ "percent-encoding",
1862
+ "quick-xml",
1863
+ "rand 0.9.5",
1864
+ "reqwest",
1865
+ "ring",
1866
+ "rustls-pemfile",
1867
+ "serde",
1868
+ "serde_json",
1869
+ "serde_urlencoded",
1870
+ "thiserror 2.0.19",
1871
+ "tokio",
1872
+ "tracing",
1873
+ "url",
1874
+ "walkdir",
1875
+ "wasm-bindgen-futures",
1876
+ "web-time",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "once_cell"
1881
+ version = "1.21.4"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1884
+
1885
+ [[package]]
1886
+ name = "once_cell_polyfill"
1887
+ version = "1.70.2"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1890
+
1891
+ [[package]]
1892
+ name = "oorandom"
1893
+ version = "11.1.5"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1896
+
1897
+ [[package]]
1898
+ name = "opaque-debug"
1899
+ version = "0.3.1"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1902
+
1903
+ [[package]]
1904
+ name = "openssl-probe"
1905
+ version = "0.2.1"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1908
+
1909
+ [[package]]
1910
+ name = "origofs-cli"
1911
+ version = "0.0.3"
1912
+ dependencies = [
1913
+ "anyhow",
1914
+ "clap",
1915
+ "libc",
1916
+ "metrics-exporter-prometheus",
1917
+ "origofs-sdk",
1918
+ "serde",
1919
+ "serde_json",
1920
+ "tempfile",
1921
+ "tokio",
1922
+ "toml",
1923
+ "tracing",
1924
+ "tracing-subscriber",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "origofs-core"
1929
+ version = "0.0.3"
1930
+ dependencies = [
1931
+ "argon2",
1932
+ "async-recursion",
1933
+ "async-trait",
1934
+ "blake3",
1935
+ "bytes",
1936
+ "chacha20poly1305",
1937
+ "criterion",
1938
+ "deadpool-postgres",
1939
+ "diffy",
1940
+ "fastcdc",
1941
+ "futures",
1942
+ "hex",
1943
+ "libc",
1944
+ "metrics",
1945
+ "object_store",
1946
+ "parking_lot",
1947
+ "proptest",
1948
+ "rusqlite",
1949
+ "rustls",
1950
+ "rustls-native-certs",
1951
+ "serde_json",
1952
+ "similar",
1953
+ "tempfile",
1954
+ "thiserror 2.0.19",
1955
+ "tokio",
1956
+ "tokio-postgres",
1957
+ "tokio-postgres-rustls",
1958
+ "tracing",
1959
+ "yrs",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "origofs-py"
1964
+ version = "0.0.3"
1965
+ dependencies = [
1966
+ "fuser",
1967
+ "origofs-core",
1968
+ "origofs-sdk",
1969
+ "pyo3",
1970
+ "pyo3-async-runtimes",
1971
+ "tokio",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "origofs-sdk"
1976
+ version = "0.0.3"
1977
+ dependencies = [
1978
+ "anyhow",
1979
+ "async-recursion",
1980
+ "async-trait",
1981
+ "axum",
1982
+ "bytes",
1983
+ "flate2",
1984
+ "fuser",
1985
+ "futures",
1986
+ "getrandom 0.2.17",
1987
+ "hex",
1988
+ "http-body-util",
1989
+ "libc",
1990
+ "metrics-exporter-prometheus",
1991
+ "nfsserve",
1992
+ "origofs-core",
1993
+ "serde",
1994
+ "serde_json",
1995
+ "sha1",
1996
+ "sha2 0.10.9",
1997
+ "tempfile",
1998
+ "thiserror 2.0.19",
1999
+ "tokio",
2000
+ "tokio-postgres",
2001
+ "tokio-tungstenite 0.24.0",
2002
+ "tower",
2003
+ "tower-http",
2004
+ "tracing",
2005
+ "yrs",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "page_size"
2010
+ version = "0.6.0"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
2013
+ dependencies = [
2014
+ "libc",
2015
+ "winapi",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "parking"
2020
+ version = "2.2.1"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2023
+
2024
+ [[package]]
2025
+ name = "parking_lot"
2026
+ version = "0.12.5"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2029
+ dependencies = [
2030
+ "lock_api",
2031
+ "parking_lot_core",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "parking_lot_core"
2036
+ version = "0.9.12"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2039
+ dependencies = [
2040
+ "cfg-if",
2041
+ "libc",
2042
+ "redox_syscall",
2043
+ "smallvec",
2044
+ "windows-link",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "password-hash"
2049
+ version = "0.5.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
2052
+ dependencies = [
2053
+ "base64ct",
2054
+ "rand_core 0.6.4",
2055
+ "subtle",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "percent-encoding"
2060
+ version = "2.3.2"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2063
+
2064
+ [[package]]
2065
+ name = "phf"
2066
+ version = "0.13.1"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
2069
+ dependencies = [
2070
+ "phf_shared",
2071
+ "serde",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "phf_shared"
2076
+ version = "0.13.1"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
2079
+ dependencies = [
2080
+ "siphasher",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "pin-project-lite"
2085
+ version = "0.2.17"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2088
+
2089
+ [[package]]
2090
+ name = "pkg-config"
2091
+ version = "0.3.33"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2094
+
2095
+ [[package]]
2096
+ name = "plotters"
2097
+ version = "0.3.7"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2100
+ dependencies = [
2101
+ "num-traits",
2102
+ "plotters-backend",
2103
+ "plotters-svg",
2104
+ "wasm-bindgen",
2105
+ "web-sys",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "plotters-backend"
2110
+ version = "0.3.7"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2113
+
2114
+ [[package]]
2115
+ name = "plotters-svg"
2116
+ version = "0.3.7"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2119
+ dependencies = [
2120
+ "plotters-backend",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "poly1305"
2125
+ version = "0.8.0"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
2128
+ dependencies = [
2129
+ "cpufeatures 0.2.17",
2130
+ "opaque-debug",
2131
+ "universal-hash",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "portable-atomic"
2136
+ version = "1.14.0"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
2139
+
2140
+ [[package]]
2141
+ name = "postgres-protocol"
2142
+ version = "0.6.12"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "08808e3c483c46e999108051c78334f473d5adb59d78bb80a1268c7e6aa6c514"
2145
+ dependencies = [
2146
+ "base64",
2147
+ "byteorder",
2148
+ "bytes",
2149
+ "fallible-iterator 0.2.0",
2150
+ "hmac",
2151
+ "md-5 0.11.0",
2152
+ "memchr",
2153
+ "rand 0.10.2",
2154
+ "sha2 0.11.0",
2155
+ "stringprep",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "postgres-types"
2160
+ version = "0.2.14"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "851ca9db4932932d69f3ea811b1abe63087a0f740a47692619dd40d4899b68be"
2163
+ dependencies = [
2164
+ "bytes",
2165
+ "fallible-iterator 0.2.0",
2166
+ "postgres-protocol",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "potential_utf"
2171
+ version = "0.1.5"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2174
+ dependencies = [
2175
+ "zerovec",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "ppv-lite86"
2180
+ version = "0.2.21"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2183
+ dependencies = [
2184
+ "zerocopy",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "proc-macro-crate"
2189
+ version = "3.5.0"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2192
+ dependencies = [
2193
+ "toml_edit 0.25.13+spec-1.1.0",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "proc-macro2"
2198
+ version = "1.0.107"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
2201
+ dependencies = [
2202
+ "unicode-ident",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "proptest"
2207
+ version = "1.11.0"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2210
+ dependencies = [
2211
+ "bit-set",
2212
+ "bit-vec",
2213
+ "bitflags",
2214
+ "num-traits",
2215
+ "rand 0.9.5",
2216
+ "rand_chacha 0.9.0",
2217
+ "rand_xorshift",
2218
+ "regex-syntax",
2219
+ "rusty-fork",
2220
+ "tempfile",
2221
+ "unarray",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "pyo3"
2226
+ version = "0.29.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
2229
+ dependencies = [
2230
+ "libc",
2231
+ "once_cell",
2232
+ "portable-atomic",
2233
+ "pyo3-build-config",
2234
+ "pyo3-ffi",
2235
+ "pyo3-macros",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "pyo3-async-runtimes"
2240
+ version = "0.29.0"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
2243
+ dependencies = [
2244
+ "futures-channel",
2245
+ "futures-util",
2246
+ "once_cell",
2247
+ "pin-project-lite",
2248
+ "pyo3",
2249
+ "tokio",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "pyo3-build-config"
2254
+ version = "0.29.0"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
2257
+ dependencies = [
2258
+ "target-lexicon",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "pyo3-ffi"
2263
+ version = "0.29.0"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
2266
+ dependencies = [
2267
+ "libc",
2268
+ "pyo3-build-config",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "pyo3-macros"
2273
+ version = "0.29.0"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
2276
+ dependencies = [
2277
+ "proc-macro2",
2278
+ "pyo3-macros-backend",
2279
+ "quote",
2280
+ "syn 2.0.119",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "pyo3-macros-backend"
2285
+ version = "0.29.0"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
2288
+ dependencies = [
2289
+ "heck",
2290
+ "proc-macro2",
2291
+ "quote",
2292
+ "syn 2.0.119",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "quanta"
2297
+ version = "0.12.6"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
2300
+ dependencies = [
2301
+ "crossbeam-utils",
2302
+ "libc",
2303
+ "once_cell",
2304
+ "raw-cpuid",
2305
+ "wasi 0.11.1+wasi-snapshot-preview1",
2306
+ "web-sys",
2307
+ "winapi",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "quick-error"
2312
+ version = "1.2.3"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2315
+
2316
+ [[package]]
2317
+ name = "quick-xml"
2318
+ version = "0.38.4"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2321
+ dependencies = [
2322
+ "memchr",
2323
+ "serde",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "quinn"
2328
+ version = "0.11.11"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2331
+ dependencies = [
2332
+ "bytes",
2333
+ "cfg_aliases",
2334
+ "pin-project-lite",
2335
+ "quinn-proto",
2336
+ "quinn-udp",
2337
+ "rustc-hash",
2338
+ "rustls",
2339
+ "socket2",
2340
+ "thiserror 2.0.19",
2341
+ "tokio",
2342
+ "tracing",
2343
+ "web-time",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "quinn-proto"
2348
+ version = "0.11.16"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2351
+ dependencies = [
2352
+ "bytes",
2353
+ "getrandom 0.4.3",
2354
+ "lru-slab",
2355
+ "rand 0.10.2",
2356
+ "rand_pcg",
2357
+ "ring",
2358
+ "rustc-hash",
2359
+ "rustls",
2360
+ "rustls-pki-types",
2361
+ "slab",
2362
+ "thiserror 2.0.19",
2363
+ "tinyvec",
2364
+ "tracing",
2365
+ "web-time",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "quinn-udp"
2370
+ version = "0.5.15"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2373
+ dependencies = [
2374
+ "cfg_aliases",
2375
+ "libc",
2376
+ "once_cell",
2377
+ "socket2",
2378
+ "tracing",
2379
+ "windows-sys 0.52.0",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "quote"
2384
+ version = "1.0.47"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
2387
+ dependencies = [
2388
+ "proc-macro2",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "r-efi"
2393
+ version = "5.3.0"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2396
+
2397
+ [[package]]
2398
+ name = "r-efi"
2399
+ version = "6.0.0"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2402
+
2403
+ [[package]]
2404
+ name = "rand"
2405
+ version = "0.8.7"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
2408
+ dependencies = [
2409
+ "libc",
2410
+ "rand_chacha 0.3.1",
2411
+ "rand_core 0.6.4",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "rand"
2416
+ version = "0.9.5"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
2419
+ dependencies = [
2420
+ "rand_chacha 0.9.0",
2421
+ "rand_core 0.9.5",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "rand"
2426
+ version = "0.10.2"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2429
+ dependencies = [
2430
+ "chacha20 0.10.1",
2431
+ "getrandom 0.4.3",
2432
+ "rand_core 0.10.1",
2433
+ ]
2434
+
2435
+ [[package]]
2436
+ name = "rand_chacha"
2437
+ version = "0.3.1"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2440
+ dependencies = [
2441
+ "ppv-lite86",
2442
+ "rand_core 0.6.4",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "rand_chacha"
2447
+ version = "0.9.0"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2450
+ dependencies = [
2451
+ "ppv-lite86",
2452
+ "rand_core 0.9.5",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "rand_core"
2457
+ version = "0.6.4"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2460
+ dependencies = [
2461
+ "getrandom 0.2.17",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "rand_core"
2466
+ version = "0.9.5"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2469
+ dependencies = [
2470
+ "getrandom 0.3.4",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "rand_core"
2475
+ version = "0.10.1"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2478
+
2479
+ [[package]]
2480
+ name = "rand_pcg"
2481
+ version = "0.10.2"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
2484
+ dependencies = [
2485
+ "rand_core 0.10.1",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "rand_xorshift"
2490
+ version = "0.4.0"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2493
+ dependencies = [
2494
+ "rand_core 0.9.5",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "rand_xoshiro"
2499
+ version = "0.7.0"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
2502
+ dependencies = [
2503
+ "rand_core 0.9.5",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "rapidhash"
2508
+ version = "4.5.1"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "5da7e78a036ce858e8d55b7e7dc8ba3a88b78350fd2155d3591bbd966b58589e"
2511
+ dependencies = [
2512
+ "rustversion",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "raw-cpuid"
2517
+ version = "11.6.0"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2520
+ dependencies = [
2521
+ "bitflags",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "rayon"
2526
+ version = "1.12.0"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2529
+ dependencies = [
2530
+ "either",
2531
+ "rayon-core",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "rayon-core"
2536
+ version = "1.13.0"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2539
+ dependencies = [
2540
+ "crossbeam-deque",
2541
+ "crossbeam-utils",
2542
+ ]
2543
+
2544
+ [[package]]
2545
+ name = "redox_syscall"
2546
+ version = "0.5.18"
2547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2548
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2549
+ dependencies = [
2550
+ "bitflags",
2551
+ ]
2552
+
2553
+ [[package]]
2554
+ name = "ref-cast"
2555
+ version = "1.0.26"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
2558
+ dependencies = [
2559
+ "ref-cast-impl",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "ref-cast-impl"
2564
+ version = "1.0.26"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
2567
+ dependencies = [
2568
+ "proc-macro2",
2569
+ "quote",
2570
+ "syn 3.0.3",
2571
+ ]
2572
+
2573
+ [[package]]
2574
+ name = "regex"
2575
+ version = "1.13.1"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
2578
+ dependencies = [
2579
+ "aho-corasick",
2580
+ "memchr",
2581
+ "regex-automata",
2582
+ "regex-syntax",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "regex-automata"
2587
+ version = "0.4.16"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
2590
+ dependencies = [
2591
+ "aho-corasick",
2592
+ "memchr",
2593
+ "regex-syntax",
2594
+ ]
2595
+
2596
+ [[package]]
2597
+ name = "regex-syntax"
2598
+ version = "0.8.11"
2599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2600
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2601
+
2602
+ [[package]]
2603
+ name = "reqwest"
2604
+ version = "0.12.28"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2607
+ dependencies = [
2608
+ "base64",
2609
+ "bytes",
2610
+ "futures-core",
2611
+ "futures-util",
2612
+ "h2",
2613
+ "http",
2614
+ "http-body",
2615
+ "http-body-util",
2616
+ "hyper",
2617
+ "hyper-rustls",
2618
+ "hyper-util",
2619
+ "js-sys",
2620
+ "log",
2621
+ "percent-encoding",
2622
+ "pin-project-lite",
2623
+ "quinn",
2624
+ "rustls",
2625
+ "rustls-native-certs",
2626
+ "rustls-pki-types",
2627
+ "serde",
2628
+ "serde_json",
2629
+ "serde_urlencoded",
2630
+ "sync_wrapper",
2631
+ "tokio",
2632
+ "tokio-rustls",
2633
+ "tokio-util",
2634
+ "tower",
2635
+ "tower-http",
2636
+ "tower-service",
2637
+ "url",
2638
+ "wasm-bindgen",
2639
+ "wasm-bindgen-futures",
2640
+ "wasm-streams",
2641
+ "web-sys",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "ring"
2646
+ version = "0.17.14"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2649
+ dependencies = [
2650
+ "cc",
2651
+ "cfg-if",
2652
+ "getrandom 0.2.17",
2653
+ "libc",
2654
+ "untrusted",
2655
+ "windows-sys 0.52.0",
2656
+ ]
2657
+
2658
+ [[package]]
2659
+ name = "rusqlite"
2660
+ version = "0.32.1"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
2663
+ dependencies = [
2664
+ "bitflags",
2665
+ "fallible-iterator 0.3.0",
2666
+ "fallible-streaming-iterator",
2667
+ "hashlink",
2668
+ "libsqlite3-sys",
2669
+ "smallvec",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "rustc-hash"
2674
+ version = "2.1.3"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2677
+
2678
+ [[package]]
2679
+ name = "rustix"
2680
+ version = "1.1.4"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2683
+ dependencies = [
2684
+ "bitflags",
2685
+ "errno",
2686
+ "libc",
2687
+ "linux-raw-sys",
2688
+ "windows-sys 0.52.0",
2689
+ ]
2690
+
2691
+ [[package]]
2692
+ name = "rustls"
2693
+ version = "0.23.42"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
2696
+ dependencies = [
2697
+ "once_cell",
2698
+ "ring",
2699
+ "rustls-pki-types",
2700
+ "rustls-webpki",
2701
+ "subtle",
2702
+ "zeroize",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "rustls-native-certs"
2707
+ version = "0.8.4"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2710
+ dependencies = [
2711
+ "openssl-probe",
2712
+ "rustls-pki-types",
2713
+ "schannel",
2714
+ "security-framework",
2715
+ ]
2716
+
2717
+ [[package]]
2718
+ name = "rustls-pemfile"
2719
+ version = "2.2.0"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2722
+ dependencies = [
2723
+ "rustls-pki-types",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "rustls-pki-types"
2728
+ version = "1.15.0"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2731
+ dependencies = [
2732
+ "web-time",
2733
+ "zeroize",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "rustls-webpki"
2738
+ version = "0.103.13"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2741
+ dependencies = [
2742
+ "ring",
2743
+ "rustls-pki-types",
2744
+ "untrusted",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "rustversion"
2749
+ version = "1.0.23"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
2752
+
2753
+ [[package]]
2754
+ name = "rusty-fork"
2755
+ version = "0.3.1"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2758
+ dependencies = [
2759
+ "fnv",
2760
+ "quick-error",
2761
+ "tempfile",
2762
+ "wait-timeout",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "ryu"
2767
+ version = "1.0.23"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2770
+
2771
+ [[package]]
2772
+ name = "same-file"
2773
+ version = "1.0.6"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2776
+ dependencies = [
2777
+ "winapi-util",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "schannel"
2782
+ version = "0.1.29"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2785
+ dependencies = [
2786
+ "windows-sys 0.61.2",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "scoped-tls"
2791
+ version = "1.0.1"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2794
+
2795
+ [[package]]
2796
+ name = "scopeguard"
2797
+ version = "1.2.0"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2800
+
2801
+ [[package]]
2802
+ name = "security-framework"
2803
+ version = "3.7.0"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2806
+ dependencies = [
2807
+ "bitflags",
2808
+ "core-foundation",
2809
+ "core-foundation-sys",
2810
+ "libc",
2811
+ "security-framework-sys",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "security-framework-sys"
2816
+ version = "2.17.0"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2819
+ dependencies = [
2820
+ "core-foundation-sys",
2821
+ "libc",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "serde"
2826
+ version = "1.0.229"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
2829
+ dependencies = [
2830
+ "serde_core",
2831
+ "serde_derive",
2832
+ ]
2833
+
2834
+ [[package]]
2835
+ name = "serde_core"
2836
+ version = "1.0.229"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
2839
+ dependencies = [
2840
+ "serde_derive",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "serde_derive"
2845
+ version = "1.0.229"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
2848
+ dependencies = [
2849
+ "proc-macro2",
2850
+ "quote",
2851
+ "syn 3.0.3",
2852
+ ]
2853
+
2854
+ [[package]]
2855
+ name = "serde_json"
2856
+ version = "1.0.151"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
2859
+ dependencies = [
2860
+ "itoa",
2861
+ "memchr",
2862
+ "serde",
2863
+ "serde_core",
2864
+ "zmij",
2865
+ ]
2866
+
2867
+ [[package]]
2868
+ name = "serde_path_to_error"
2869
+ version = "0.1.20"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2872
+ dependencies = [
2873
+ "itoa",
2874
+ "serde",
2875
+ "serde_core",
2876
+ ]
2877
+
2878
+ [[package]]
2879
+ name = "serde_spanned"
2880
+ version = "0.6.9"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2883
+ dependencies = [
2884
+ "serde",
2885
+ ]
2886
+
2887
+ [[package]]
2888
+ name = "serde_urlencoded"
2889
+ version = "0.7.1"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2892
+ dependencies = [
2893
+ "form_urlencoded",
2894
+ "itoa",
2895
+ "ryu",
2896
+ "serde",
2897
+ ]
2898
+
2899
+ [[package]]
2900
+ name = "sha1"
2901
+ version = "0.10.7"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
2904
+ dependencies = [
2905
+ "cfg-if",
2906
+ "cpufeatures 0.2.17",
2907
+ "digest 0.10.7",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "sha2"
2912
+ version = "0.10.9"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2915
+ dependencies = [
2916
+ "cfg-if",
2917
+ "cpufeatures 0.2.17",
2918
+ "digest 0.10.7",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "sha2"
2923
+ version = "0.11.0"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2926
+ dependencies = [
2927
+ "cfg-if",
2928
+ "cpufeatures 0.3.0",
2929
+ "digest 0.11.3",
2930
+ ]
2931
+
2932
+ [[package]]
2933
+ name = "sharded-slab"
2934
+ version = "0.1.7"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2937
+ dependencies = [
2938
+ "lazy_static",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "shlex"
2943
+ version = "2.0.1"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2946
+
2947
+ [[package]]
2948
+ name = "signal-hook-registry"
2949
+ version = "1.4.8"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2952
+ dependencies = [
2953
+ "errno",
2954
+ "libc",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "simd-adler32"
2959
+ version = "0.3.10"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2962
+
2963
+ [[package]]
2964
+ name = "similar"
2965
+ version = "3.1.1"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
2968
+ dependencies = [
2969
+ "bstr",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "siphasher"
2974
+ version = "1.0.3"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2977
+
2978
+ [[package]]
2979
+ name = "sketches-ddsketch"
2980
+ version = "0.3.1"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "0c6f73aeb92d671e0cc4dca167e59b2deb6387c375391bc99ee743f326994a2b"
2983
+
2984
+ [[package]]
2985
+ name = "slab"
2986
+ version = "0.4.12"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2989
+
2990
+ [[package]]
2991
+ name = "smallstr"
2992
+ version = "0.3.1"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "862077b1e764f04c251fe82a2ef562fd78d7cadaeb072ca7c2bcaf7217b1ff3b"
2995
+ dependencies = [
2996
+ "smallvec",
2997
+ ]
2998
+
2999
+ [[package]]
3000
+ name = "smallvec"
3001
+ version = "1.15.2"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3004
+
3005
+ [[package]]
3006
+ name = "socket2"
3007
+ version = "0.6.5"
3008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3009
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
3010
+ dependencies = [
3011
+ "libc",
3012
+ "windows-sys 0.61.2",
3013
+ ]
3014
+
3015
+ [[package]]
3016
+ name = "spki"
3017
+ version = "0.7.3"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3020
+ dependencies = [
3021
+ "base64ct",
3022
+ "der",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "stable_deref_trait"
3027
+ version = "1.2.1"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3030
+
3031
+ [[package]]
3032
+ name = "stringprep"
3033
+ version = "0.1.5"
3034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3035
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
3036
+ dependencies = [
3037
+ "unicode-bidi",
3038
+ "unicode-normalization",
3039
+ "unicode-properties",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "strsim"
3044
+ version = "0.11.1"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3047
+
3048
+ [[package]]
3049
+ name = "subtle"
3050
+ version = "2.6.1"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3053
+
3054
+ [[package]]
3055
+ name = "syn"
3056
+ version = "2.0.119"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
3059
+ dependencies = [
3060
+ "proc-macro2",
3061
+ "quote",
3062
+ "unicode-ident",
3063
+ ]
3064
+
3065
+ [[package]]
3066
+ name = "syn"
3067
+ version = "3.0.3"
3068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3069
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
3070
+ dependencies = [
3071
+ "proc-macro2",
3072
+ "quote",
3073
+ "unicode-ident",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "sync_wrapper"
3078
+ version = "1.0.2"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3081
+ dependencies = [
3082
+ "futures-core",
3083
+ ]
3084
+
3085
+ [[package]]
3086
+ name = "synstructure"
3087
+ version = "0.13.2"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3090
+ dependencies = [
3091
+ "proc-macro2",
3092
+ "quote",
3093
+ "syn 2.0.119",
3094
+ ]
3095
+
3096
+ [[package]]
3097
+ name = "target-lexicon"
3098
+ version = "0.13.5"
3099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3100
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3101
+
3102
+ [[package]]
3103
+ name = "tempfile"
3104
+ version = "3.27.0"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3107
+ dependencies = [
3108
+ "fastrand",
3109
+ "getrandom 0.4.3",
3110
+ "once_cell",
3111
+ "rustix",
3112
+ "windows-sys 0.52.0",
3113
+ ]
3114
+
3115
+ [[package]]
3116
+ name = "thiserror"
3117
+ version = "1.0.69"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3120
+ dependencies = [
3121
+ "thiserror-impl 1.0.69",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "thiserror"
3126
+ version = "2.0.19"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
3129
+ dependencies = [
3130
+ "thiserror-impl 2.0.19",
3131
+ ]
3132
+
3133
+ [[package]]
3134
+ name = "thiserror-impl"
3135
+ version = "1.0.69"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3138
+ dependencies = [
3139
+ "proc-macro2",
3140
+ "quote",
3141
+ "syn 2.0.119",
3142
+ ]
3143
+
3144
+ [[package]]
3145
+ name = "thiserror-impl"
3146
+ version = "2.0.19"
3147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3148
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
3149
+ dependencies = [
3150
+ "proc-macro2",
3151
+ "quote",
3152
+ "syn 3.0.3",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "thread_local"
3157
+ version = "1.1.10"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
3160
+ dependencies = [
3161
+ "cfg-if",
3162
+ ]
3163
+
3164
+ [[package]]
3165
+ name = "tinystr"
3166
+ version = "0.8.3"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3169
+ dependencies = [
3170
+ "displaydoc",
3171
+ "zerovec",
3172
+ ]
3173
+
3174
+ [[package]]
3175
+ name = "tinytemplate"
3176
+ version = "1.2.1"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3179
+ dependencies = [
3180
+ "serde",
3181
+ "serde_json",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "tinyvec"
3186
+ version = "1.12.0"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
3189
+ dependencies = [
3190
+ "tinyvec_macros",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "tinyvec_macros"
3195
+ version = "0.1.1"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3198
+
3199
+ [[package]]
3200
+ name = "tls_codec"
3201
+ version = "0.4.2"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
3204
+ dependencies = [
3205
+ "tls_codec_derive",
3206
+ "zeroize",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "tls_codec_derive"
3211
+ version = "0.4.2"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
3214
+ dependencies = [
3215
+ "proc-macro2",
3216
+ "quote",
3217
+ "syn 2.0.119",
3218
+ ]
3219
+
3220
+ [[package]]
3221
+ name = "tokio"
3222
+ version = "1.53.1"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
3225
+ dependencies = [
3226
+ "bytes",
3227
+ "libc",
3228
+ "mio",
3229
+ "pin-project-lite",
3230
+ "signal-hook-registry",
3231
+ "socket2",
3232
+ "tokio-macros",
3233
+ "windows-sys 0.61.2",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "tokio-macros"
3238
+ version = "2.7.1"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
3241
+ dependencies = [
3242
+ "proc-macro2",
3243
+ "quote",
3244
+ "syn 2.0.119",
3245
+ ]
3246
+
3247
+ [[package]]
3248
+ name = "tokio-postgres"
3249
+ version = "0.7.18"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "a528f7d280f6d5b9cd149635c8705b0dd049754bc67d81d31fa25169a93809d3"
3252
+ dependencies = [
3253
+ "async-trait",
3254
+ "byteorder",
3255
+ "bytes",
3256
+ "fallible-iterator 0.2.0",
3257
+ "futures-channel",
3258
+ "futures-util",
3259
+ "log",
3260
+ "parking_lot",
3261
+ "percent-encoding",
3262
+ "phf",
3263
+ "pin-project-lite",
3264
+ "postgres-protocol",
3265
+ "postgres-types",
3266
+ "rand 0.10.2",
3267
+ "socket2",
3268
+ "tokio",
3269
+ "tokio-util",
3270
+ "whoami",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "tokio-postgres-rustls"
3275
+ version = "0.13.0"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "27d684bad428a0f2481f42241f821db42c54e2dc81d8c00db8536c506b0a0144"
3278
+ dependencies = [
3279
+ "const-oid 0.9.6",
3280
+ "ring",
3281
+ "rustls",
3282
+ "tokio",
3283
+ "tokio-postgres",
3284
+ "tokio-rustls",
3285
+ "x509-cert",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "tokio-rustls"
3290
+ version = "0.26.4"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3293
+ dependencies = [
3294
+ "rustls",
3295
+ "tokio",
3296
+ ]
3297
+
3298
+ [[package]]
3299
+ name = "tokio-tungstenite"
3300
+ version = "0.24.0"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
3303
+ dependencies = [
3304
+ "futures-util",
3305
+ "log",
3306
+ "tokio",
3307
+ "tungstenite 0.24.0",
3308
+ ]
3309
+
3310
+ [[package]]
3311
+ name = "tokio-tungstenite"
3312
+ version = "0.29.0"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
3315
+ dependencies = [
3316
+ "futures-util",
3317
+ "log",
3318
+ "tokio",
3319
+ "tungstenite 0.29.0",
3320
+ ]
3321
+
3322
+ [[package]]
3323
+ name = "tokio-util"
3324
+ version = "0.7.19"
3325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3326
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
3327
+ dependencies = [
3328
+ "bytes",
3329
+ "futures-core",
3330
+ "futures-sink",
3331
+ "libc",
3332
+ "pin-project-lite",
3333
+ "tokio",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "toml"
3338
+ version = "0.8.23"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3341
+ dependencies = [
3342
+ "serde",
3343
+ "serde_spanned",
3344
+ "toml_datetime 0.6.11",
3345
+ "toml_edit 0.22.27",
3346
+ ]
3347
+
3348
+ [[package]]
3349
+ name = "toml_datetime"
3350
+ version = "0.6.11"
3351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3352
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3353
+ dependencies = [
3354
+ "serde",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "toml_datetime"
3359
+ version = "1.1.1+spec-1.1.0"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3362
+ dependencies = [
3363
+ "serde_core",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "toml_edit"
3368
+ version = "0.22.27"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3371
+ dependencies = [
3372
+ "indexmap",
3373
+ "serde",
3374
+ "serde_spanned",
3375
+ "toml_datetime 0.6.11",
3376
+ "toml_write",
3377
+ "winnow 0.7.15",
3378
+ ]
3379
+
3380
+ [[package]]
3381
+ name = "toml_edit"
3382
+ version = "0.25.13+spec-1.1.0"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
3385
+ dependencies = [
3386
+ "indexmap",
3387
+ "toml_datetime 1.1.1+spec-1.1.0",
3388
+ "toml_parser",
3389
+ "winnow 1.0.4",
3390
+ ]
3391
+
3392
+ [[package]]
3393
+ name = "toml_parser"
3394
+ version = "1.1.2+spec-1.1.0"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3397
+ dependencies = [
3398
+ "winnow 1.0.4",
3399
+ ]
3400
+
3401
+ [[package]]
3402
+ name = "toml_write"
3403
+ version = "0.1.2"
3404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3405
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3406
+
3407
+ [[package]]
3408
+ name = "tower"
3409
+ version = "0.5.3"
3410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3411
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3412
+ dependencies = [
3413
+ "futures-core",
3414
+ "futures-util",
3415
+ "pin-project-lite",
3416
+ "sync_wrapper",
3417
+ "tokio",
3418
+ "tokio-util",
3419
+ "tower-layer",
3420
+ "tower-service",
3421
+ "tracing",
3422
+ ]
3423
+
3424
+ [[package]]
3425
+ name = "tower-http"
3426
+ version = "0.6.11"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3429
+ dependencies = [
3430
+ "bitflags",
3431
+ "bytes",
3432
+ "futures-util",
3433
+ "http",
3434
+ "http-body",
3435
+ "http-body-util",
3436
+ "pin-project-lite",
3437
+ "tokio",
3438
+ "tower",
3439
+ "tower-layer",
3440
+ "tower-service",
3441
+ "tracing",
3442
+ "url",
3443
+ "uuid",
3444
+ ]
3445
+
3446
+ [[package]]
3447
+ name = "tower-layer"
3448
+ version = "0.3.3"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3451
+
3452
+ [[package]]
3453
+ name = "tower-service"
3454
+ version = "0.3.3"
3455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3457
+
3458
+ [[package]]
3459
+ name = "tracing"
3460
+ version = "0.1.44"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3463
+ dependencies = [
3464
+ "log",
3465
+ "pin-project-lite",
3466
+ "tracing-attributes",
3467
+ "tracing-core",
3468
+ ]
3469
+
3470
+ [[package]]
3471
+ name = "tracing-attributes"
3472
+ version = "0.1.31"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3475
+ dependencies = [
3476
+ "proc-macro2",
3477
+ "quote",
3478
+ "syn 2.0.119",
3479
+ ]
3480
+
3481
+ [[package]]
3482
+ name = "tracing-core"
3483
+ version = "0.1.36"
3484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3485
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3486
+ dependencies = [
3487
+ "once_cell",
3488
+ "valuable",
3489
+ ]
3490
+
3491
+ [[package]]
3492
+ name = "tracing-log"
3493
+ version = "0.2.0"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3496
+ dependencies = [
3497
+ "log",
3498
+ "once_cell",
3499
+ "tracing-core",
3500
+ ]
3501
+
3502
+ [[package]]
3503
+ name = "tracing-serde"
3504
+ version = "0.2.0"
3505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3506
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
3507
+ dependencies = [
3508
+ "serde",
3509
+ "tracing-core",
3510
+ ]
3511
+
3512
+ [[package]]
3513
+ name = "tracing-subscriber"
3514
+ version = "0.3.23"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3517
+ dependencies = [
3518
+ "matchers",
3519
+ "nu-ansi-term",
3520
+ "once_cell",
3521
+ "regex-automata",
3522
+ "serde",
3523
+ "serde_json",
3524
+ "sharded-slab",
3525
+ "smallvec",
3526
+ "thread_local",
3527
+ "tracing",
3528
+ "tracing-core",
3529
+ "tracing-log",
3530
+ "tracing-serde",
3531
+ ]
3532
+
3533
+ [[package]]
3534
+ name = "try-lock"
3535
+ version = "0.2.5"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3538
+
3539
+ [[package]]
3540
+ name = "tungstenite"
3541
+ version = "0.24.0"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
3544
+ dependencies = [
3545
+ "byteorder",
3546
+ "bytes",
3547
+ "data-encoding",
3548
+ "http",
3549
+ "httparse",
3550
+ "log",
3551
+ "rand 0.8.7",
3552
+ "sha1",
3553
+ "thiserror 1.0.69",
3554
+ "utf-8",
3555
+ ]
3556
+
3557
+ [[package]]
3558
+ name = "tungstenite"
3559
+ version = "0.29.0"
3560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3561
+ checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
3562
+ dependencies = [
3563
+ "bytes",
3564
+ "data-encoding",
3565
+ "http",
3566
+ "httparse",
3567
+ "log",
3568
+ "rand 0.9.5",
3569
+ "sha1",
3570
+ "thiserror 2.0.19",
3571
+ ]
3572
+
3573
+ [[package]]
3574
+ name = "typenum"
3575
+ version = "1.20.1"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3578
+
3579
+ [[package]]
3580
+ name = "unarray"
3581
+ version = "0.1.4"
3582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3583
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3584
+
3585
+ [[package]]
3586
+ name = "unicode-bidi"
3587
+ version = "0.3.18"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3590
+
3591
+ [[package]]
3592
+ name = "unicode-ident"
3593
+ version = "1.0.24"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3596
+
3597
+ [[package]]
3598
+ name = "unicode-normalization"
3599
+ version = "0.1.25"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3602
+ dependencies = [
3603
+ "tinyvec",
3604
+ ]
3605
+
3606
+ [[package]]
3607
+ name = "unicode-properties"
3608
+ version = "0.1.4"
3609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3610
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3611
+
3612
+ [[package]]
3613
+ name = "universal-hash"
3614
+ version = "0.5.1"
3615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3616
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3617
+ dependencies = [
3618
+ "crypto-common 0.1.7",
3619
+ "subtle",
3620
+ ]
3621
+
3622
+ [[package]]
3623
+ name = "untrusted"
3624
+ version = "0.9.0"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3627
+
3628
+ [[package]]
3629
+ name = "url"
3630
+ version = "2.5.8"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3633
+ dependencies = [
3634
+ "form_urlencoded",
3635
+ "idna",
3636
+ "percent-encoding",
3637
+ "serde",
3638
+ ]
3639
+
3640
+ [[package]]
3641
+ name = "utf-8"
3642
+ version = "0.7.6"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3645
+
3646
+ [[package]]
3647
+ name = "utf8_iter"
3648
+ version = "1.0.4"
3649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3650
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3651
+
3652
+ [[package]]
3653
+ name = "utf8parse"
3654
+ version = "0.2.2"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3657
+
3658
+ [[package]]
3659
+ name = "uuid"
3660
+ version = "1.24.0"
3661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3662
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
3663
+ dependencies = [
3664
+ "getrandom 0.4.3",
3665
+ "js-sys",
3666
+ "wasm-bindgen",
3667
+ ]
3668
+
3669
+ [[package]]
3670
+ name = "valuable"
3671
+ version = "0.1.1"
3672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3673
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3674
+
3675
+ [[package]]
3676
+ name = "vcpkg"
3677
+ version = "0.2.15"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3680
+
3681
+ [[package]]
3682
+ name = "version_check"
3683
+ version = "0.9.5"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3686
+
3687
+ [[package]]
3688
+ name = "wait-timeout"
3689
+ version = "0.2.1"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3692
+ dependencies = [
3693
+ "libc",
3694
+ ]
3695
+
3696
+ [[package]]
3697
+ name = "walkdir"
3698
+ version = "2.5.0"
3699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3700
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3701
+ dependencies = [
3702
+ "same-file",
3703
+ "winapi-util",
3704
+ ]
3705
+
3706
+ [[package]]
3707
+ name = "want"
3708
+ version = "0.3.1"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3711
+ dependencies = [
3712
+ "try-lock",
3713
+ ]
3714
+
3715
+ [[package]]
3716
+ name = "wasi"
3717
+ version = "0.11.1+wasi-snapshot-preview1"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3720
+
3721
+ [[package]]
3722
+ name = "wasi"
3723
+ version = "0.14.7+wasi-0.2.4"
3724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3725
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
3726
+ dependencies = [
3727
+ "wasip2",
3728
+ ]
3729
+
3730
+ [[package]]
3731
+ name = "wasip2"
3732
+ version = "1.0.4+wasi-0.2.12"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3735
+ dependencies = [
3736
+ "wit-bindgen",
3737
+ ]
3738
+
3739
+ [[package]]
3740
+ name = "wasite"
3741
+ version = "1.0.2"
3742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3743
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
3744
+ dependencies = [
3745
+ "wasi 0.14.7+wasi-0.2.4",
3746
+ ]
3747
+
3748
+ [[package]]
3749
+ name = "wasm-bindgen"
3750
+ version = "0.2.126"
3751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3752
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3753
+ dependencies = [
3754
+ "cfg-if",
3755
+ "once_cell",
3756
+ "rustversion",
3757
+ "wasm-bindgen-macro",
3758
+ "wasm-bindgen-shared",
3759
+ ]
3760
+
3761
+ [[package]]
3762
+ name = "wasm-bindgen-futures"
3763
+ version = "0.4.76"
3764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3765
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
3766
+ dependencies = [
3767
+ "js-sys",
3768
+ "wasm-bindgen",
3769
+ ]
3770
+
3771
+ [[package]]
3772
+ name = "wasm-bindgen-macro"
3773
+ version = "0.2.126"
3774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3775
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3776
+ dependencies = [
3777
+ "quote",
3778
+ "wasm-bindgen-macro-support",
3779
+ ]
3780
+
3781
+ [[package]]
3782
+ name = "wasm-bindgen-macro-support"
3783
+ version = "0.2.126"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3786
+ dependencies = [
3787
+ "bumpalo",
3788
+ "proc-macro2",
3789
+ "quote",
3790
+ "syn 2.0.119",
3791
+ "wasm-bindgen-shared",
3792
+ ]
3793
+
3794
+ [[package]]
3795
+ name = "wasm-bindgen-shared"
3796
+ version = "0.2.126"
3797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3798
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
3799
+ dependencies = [
3800
+ "unicode-ident",
3801
+ ]
3802
+
3803
+ [[package]]
3804
+ name = "wasm-streams"
3805
+ version = "0.4.2"
3806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3807
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3808
+ dependencies = [
3809
+ "futures-util",
3810
+ "js-sys",
3811
+ "wasm-bindgen",
3812
+ "wasm-bindgen-futures",
3813
+ "web-sys",
3814
+ ]
3815
+
3816
+ [[package]]
3817
+ name = "web-sys"
3818
+ version = "0.3.103"
3819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3820
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
3821
+ dependencies = [
3822
+ "js-sys",
3823
+ "wasm-bindgen",
3824
+ ]
3825
+
3826
+ [[package]]
3827
+ name = "web-time"
3828
+ version = "1.1.0"
3829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3830
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3831
+ dependencies = [
3832
+ "js-sys",
3833
+ "wasm-bindgen",
3834
+ ]
3835
+
3836
+ [[package]]
3837
+ name = "whoami"
3838
+ version = "2.1.2"
3839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3840
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
3841
+ dependencies = [
3842
+ "libc",
3843
+ "libredox",
3844
+ "objc2-system-configuration",
3845
+ "wasite",
3846
+ "web-sys",
3847
+ ]
3848
+
3849
+ [[package]]
3850
+ name = "winapi"
3851
+ version = "0.3.9"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3854
+ dependencies = [
3855
+ "winapi-i686-pc-windows-gnu",
3856
+ "winapi-x86_64-pc-windows-gnu",
3857
+ ]
3858
+
3859
+ [[package]]
3860
+ name = "winapi-i686-pc-windows-gnu"
3861
+ version = "0.4.0"
3862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3863
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3864
+
3865
+ [[package]]
3866
+ name = "winapi-util"
3867
+ version = "0.1.11"
3868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3869
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3870
+ dependencies = [
3871
+ "windows-sys 0.52.0",
3872
+ ]
3873
+
3874
+ [[package]]
3875
+ name = "winapi-x86_64-pc-windows-gnu"
3876
+ version = "0.4.0"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3879
+
3880
+ [[package]]
3881
+ name = "windows-core"
3882
+ version = "0.62.2"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3885
+ dependencies = [
3886
+ "windows-implement",
3887
+ "windows-interface",
3888
+ "windows-link",
3889
+ "windows-result",
3890
+ "windows-strings",
3891
+ ]
3892
+
3893
+ [[package]]
3894
+ name = "windows-implement"
3895
+ version = "0.60.2"
3896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3897
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3898
+ dependencies = [
3899
+ "proc-macro2",
3900
+ "quote",
3901
+ "syn 2.0.119",
3902
+ ]
3903
+
3904
+ [[package]]
3905
+ name = "windows-interface"
3906
+ version = "0.59.3"
3907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3908
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3909
+ dependencies = [
3910
+ "proc-macro2",
3911
+ "quote",
3912
+ "syn 2.0.119",
3913
+ ]
3914
+
3915
+ [[package]]
3916
+ name = "windows-link"
3917
+ version = "0.2.1"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3920
+
3921
+ [[package]]
3922
+ name = "windows-result"
3923
+ version = "0.4.1"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3926
+ dependencies = [
3927
+ "windows-link",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "windows-strings"
3932
+ version = "0.5.1"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3935
+ dependencies = [
3936
+ "windows-link",
3937
+ ]
3938
+
3939
+ [[package]]
3940
+ name = "windows-sys"
3941
+ version = "0.52.0"
3942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3943
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3944
+ dependencies = [
3945
+ "windows-targets",
3946
+ ]
3947
+
3948
+ [[package]]
3949
+ name = "windows-sys"
3950
+ version = "0.61.2"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3953
+ dependencies = [
3954
+ "windows-link",
3955
+ ]
3956
+
3957
+ [[package]]
3958
+ name = "windows-targets"
3959
+ version = "0.52.6"
3960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3961
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3962
+ dependencies = [
3963
+ "windows_aarch64_gnullvm",
3964
+ "windows_aarch64_msvc",
3965
+ "windows_i686_gnu",
3966
+ "windows_i686_gnullvm",
3967
+ "windows_i686_msvc",
3968
+ "windows_x86_64_gnu",
3969
+ "windows_x86_64_gnullvm",
3970
+ "windows_x86_64_msvc",
3971
+ ]
3972
+
3973
+ [[package]]
3974
+ name = "windows_aarch64_gnullvm"
3975
+ version = "0.52.6"
3976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3977
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3978
+
3979
+ [[package]]
3980
+ name = "windows_aarch64_msvc"
3981
+ version = "0.52.6"
3982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3983
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3984
+
3985
+ [[package]]
3986
+ name = "windows_i686_gnu"
3987
+ version = "0.52.6"
3988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3989
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3990
+
3991
+ [[package]]
3992
+ name = "windows_i686_gnullvm"
3993
+ version = "0.52.6"
3994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3995
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3996
+
3997
+ [[package]]
3998
+ name = "windows_i686_msvc"
3999
+ version = "0.52.6"
4000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4001
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4002
+
4003
+ [[package]]
4004
+ name = "windows_x86_64_gnu"
4005
+ version = "0.52.6"
4006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4007
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4008
+
4009
+ [[package]]
4010
+ name = "windows_x86_64_gnullvm"
4011
+ version = "0.52.6"
4012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4013
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4014
+
4015
+ [[package]]
4016
+ name = "windows_x86_64_msvc"
4017
+ version = "0.52.6"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4020
+
4021
+ [[package]]
4022
+ name = "winnow"
4023
+ version = "0.7.15"
4024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4025
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4026
+ dependencies = [
4027
+ "memchr",
4028
+ ]
4029
+
4030
+ [[package]]
4031
+ name = "winnow"
4032
+ version = "1.0.4"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
4035
+ dependencies = [
4036
+ "memchr",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "wit-bindgen"
4041
+ version = "0.57.1"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4044
+
4045
+ [[package]]
4046
+ name = "writeable"
4047
+ version = "0.6.3"
4048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4049
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4050
+
4051
+ [[package]]
4052
+ name = "x509-cert"
4053
+ version = "0.2.5"
4054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4055
+ checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
4056
+ dependencies = [
4057
+ "const-oid 0.9.6",
4058
+ "der",
4059
+ "spki",
4060
+ "tls_codec",
4061
+ ]
4062
+
4063
+ [[package]]
4064
+ name = "yoke"
4065
+ version = "0.8.3"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4068
+ dependencies = [
4069
+ "stable_deref_trait",
4070
+ "yoke-derive",
4071
+ "zerofrom",
4072
+ ]
4073
+
4074
+ [[package]]
4075
+ name = "yoke-derive"
4076
+ version = "0.8.2"
4077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4078
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4079
+ dependencies = [
4080
+ "proc-macro2",
4081
+ "quote",
4082
+ "syn 2.0.119",
4083
+ "synstructure",
4084
+ ]
4085
+
4086
+ [[package]]
4087
+ name = "yrs"
4088
+ version = "0.23.5"
4089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4090
+ checksum = "197c2b4b298f35c3ba4d549884ac872a961112095b29f173ab45e3d5cf609018"
4091
+ dependencies = [
4092
+ "arc-swap",
4093
+ "async-lock",
4094
+ "async-trait",
4095
+ "dashmap",
4096
+ "fastrand",
4097
+ "serde",
4098
+ "serde_json",
4099
+ "smallstr",
4100
+ "smallvec",
4101
+ "thiserror 2.0.19",
4102
+ ]
4103
+
4104
+ [[package]]
4105
+ name = "zerocopy"
4106
+ version = "0.8.55"
4107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4108
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
4109
+ dependencies = [
4110
+ "zerocopy-derive",
4111
+ ]
4112
+
4113
+ [[package]]
4114
+ name = "zerocopy-derive"
4115
+ version = "0.8.55"
4116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4117
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
4118
+ dependencies = [
4119
+ "proc-macro2",
4120
+ "quote",
4121
+ "syn 2.0.119",
4122
+ ]
4123
+
4124
+ [[package]]
4125
+ name = "zerofrom"
4126
+ version = "0.1.8"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4129
+ dependencies = [
4130
+ "zerofrom-derive",
4131
+ ]
4132
+
4133
+ [[package]]
4134
+ name = "zerofrom-derive"
4135
+ version = "0.1.7"
4136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4137
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4138
+ dependencies = [
4139
+ "proc-macro2",
4140
+ "quote",
4141
+ "syn 2.0.119",
4142
+ "synstructure",
4143
+ ]
4144
+
4145
+ [[package]]
4146
+ name = "zeroize"
4147
+ version = "1.9.0"
4148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4149
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4150
+ dependencies = [
4151
+ "zeroize_derive",
4152
+ ]
4153
+
4154
+ [[package]]
4155
+ name = "zeroize_derive"
4156
+ version = "1.5.0"
4157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4158
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
4159
+ dependencies = [
4160
+ "proc-macro2",
4161
+ "quote",
4162
+ "syn 2.0.119",
4163
+ ]
4164
+
4165
+ [[package]]
4166
+ name = "zerotrie"
4167
+ version = "0.2.4"
4168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4169
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4170
+ dependencies = [
4171
+ "displaydoc",
4172
+ "yoke",
4173
+ "zerofrom",
4174
+ ]
4175
+
4176
+ [[package]]
4177
+ name = "zerovec"
4178
+ version = "0.11.6"
4179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4180
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4181
+ dependencies = [
4182
+ "yoke",
4183
+ "zerofrom",
4184
+ "zerovec-derive",
4185
+ ]
4186
+
4187
+ [[package]]
4188
+ name = "zerovec-derive"
4189
+ version = "0.11.3"
4190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4191
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4192
+ dependencies = [
4193
+ "proc-macro2",
4194
+ "quote",
4195
+ "syn 2.0.119",
4196
+ ]
4197
+
4198
+ [[package]]
4199
+ name = "zmij"
4200
+ version = "1.0.23"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"