django-vpg 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. django_vpg-0.1.0/Cargo.lock +1916 -0
  2. django_vpg-0.1.0/Cargo.toml +32 -0
  3. django_vpg-0.1.0/LICENSE +22 -0
  4. django_vpg-0.1.0/PKG-INFO +201 -0
  5. django_vpg-0.1.0/README.md +170 -0
  6. django_vpg-0.1.0/crates/vpg-core/Cargo.toml +44 -0
  7. django_vpg-0.1.0/crates/vpg-core/src/codecs.rs +1267 -0
  8. django_vpg-0.1.0/crates/vpg-core/src/copy_in.rs +152 -0
  9. django_vpg-0.1.0/crates/vpg-core/src/copy_text.rs +227 -0
  10. django_vpg-0.1.0/crates/vpg-core/src/lib.rs +62 -0
  11. django_vpg-0.1.0/crates/vpg-core/src/params.rs +838 -0
  12. django_vpg-0.1.0/crates/vpg-core/src/pool.rs +284 -0
  13. django_vpg-0.1.0/crates/vpg-core/src/query.rs +1158 -0
  14. django_vpg-0.1.0/crates/vpg-core/src/result.rs +176 -0
  15. django_vpg-0.1.0/crates/vpg-core/src/runtime.rs +121 -0
  16. django_vpg-0.1.0/crates/vpg-core/src/stmt_gate.rs +148 -0
  17. django_vpg-0.1.0/crates/vpg-core/src/tls.rs +296 -0
  18. django_vpg-0.1.0/crates/vpg-core/src/values.rs +268 -0
  19. django_vpg-0.1.0/crates/vpg-core/tests/wire.rs +908 -0
  20. django_vpg-0.1.0/crates/vpg-pyo3/Cargo.toml +42 -0
  21. django_vpg-0.1.0/crates/vpg-pyo3/src/awaitable.rs +716 -0
  22. django_vpg-0.1.0/crates/vpg-pyo3/src/copy_encode.rs +335 -0
  23. django_vpg-0.1.0/crates/vpg-pyo3/src/copy_in.rs +91 -0
  24. django_vpg-0.1.0/crates/vpg-pyo3/src/lib.rs +824 -0
  25. django_vpg-0.1.0/crates/vpg-pyo3/src/marshal.rs +1057 -0
  26. django_vpg-0.1.0/crates/vpg-pyo3/src/transaction.rs +529 -0
  27. django_vpg-0.1.0/django_vpg/__init__.py +83 -0
  28. django_vpg-0.1.0/django_vpg/backend/__init__.py +38 -0
  29. django_vpg-0.1.0/django_vpg/backend/async_base.py +529 -0
  30. django_vpg-0.1.0/django_vpg/backend/base.py +374 -0
  31. django_vpg-0.1.0/django_vpg/backend/operations.py +40 -0
  32. django_vpg-0.1.0/django_vpg/backend/schema.py +265 -0
  33. django_vpg-0.1.0/django_vpg/dbapi.py +1784 -0
  34. django_vpg-0.1.0/pyproject.toml +74 -0
  35. django_vpg-0.1.0/vendor/README.md +21 -0
  36. django_vpg-0.1.0/vendor/tokio-postgres/.cargo-ok +1 -0
  37. django_vpg-0.1.0/vendor/tokio-postgres/.cargo_vcs_info.json +6 -0
  38. django_vpg-0.1.0/vendor/tokio-postgres/CHANGELOG.md +378 -0
  39. django_vpg-0.1.0/vendor/tokio-postgres/Cargo.toml +235 -0
  40. django_vpg-0.1.0/vendor/tokio-postgres/Cargo.toml.orig +104 -0
  41. django_vpg-0.1.0/vendor/tokio-postgres/GT_PATCH.md +143 -0
  42. django_vpg-0.1.0/vendor/tokio-postgres/LICENSE-APACHE +201 -0
  43. django_vpg-0.1.0/vendor/tokio-postgres/LICENSE-MIT +22 -0
  44. django_vpg-0.1.0/vendor/tokio-postgres/README.md +46 -0
  45. django_vpg-0.1.0/vendor/tokio-postgres/benches/bench.rs +58 -0
  46. django_vpg-0.1.0/vendor/tokio-postgres/src/binary_copy.rs +272 -0
  47. django_vpg-0.1.0/vendor/tokio-postgres/src/bind.rs +38 -0
  48. django_vpg-0.1.0/vendor/tokio-postgres/src/cancel_query.rs +52 -0
  49. django_vpg-0.1.0/vendor/tokio-postgres/src/cancel_query_raw.rs +31 -0
  50. django_vpg-0.1.0/vendor/tokio-postgres/src/cancel_token.rs +67 -0
  51. django_vpg-0.1.0/vendor/tokio-postgres/src/client.rs +803 -0
  52. django_vpg-0.1.0/vendor/tokio-postgres/src/codec.rs +98 -0
  53. django_vpg-0.1.0/vendor/tokio-postgres/src/config.rs +1205 -0
  54. django_vpg-0.1.0/vendor/tokio-postgres/src/connect.rs +229 -0
  55. django_vpg-0.1.0/vendor/tokio-postgres/src/connect_raw.rs +368 -0
  56. django_vpg-0.1.0/vendor/tokio-postgres/src/connect_socket.rs +73 -0
  57. django_vpg-0.1.0/vendor/tokio-postgres/src/connect_tls.rs +60 -0
  58. django_vpg-0.1.0/vendor/tokio-postgres/src/connection.rs +370 -0
  59. django_vpg-0.1.0/vendor/tokio-postgres/src/copy_in.rs +225 -0
  60. django_vpg-0.1.0/vendor/tokio-postgres/src/copy_out.rs +57 -0
  61. django_vpg-0.1.0/vendor/tokio-postgres/src/error/mod.rs +521 -0
  62. django_vpg-0.1.0/vendor/tokio-postgres/src/error/sqlstate.rs +1670 -0
  63. django_vpg-0.1.0/vendor/tokio-postgres/src/generic_client.rs +376 -0
  64. django_vpg-0.1.0/vendor/tokio-postgres/src/gt_buf_cap.rs +46 -0
  65. django_vpg-0.1.0/vendor/tokio-postgres/src/keepalive.rs +38 -0
  66. django_vpg-0.1.0/vendor/tokio-postgres/src/lib.rs +269 -0
  67. django_vpg-0.1.0/vendor/tokio-postgres/src/maybe_tls_stream.rs +71 -0
  68. django_vpg-0.1.0/vendor/tokio-postgres/src/portal.rs +50 -0
  69. django_vpg-0.1.0/vendor/tokio-postgres/src/prepare.rs +267 -0
  70. django_vpg-0.1.0/vendor/tokio-postgres/src/query.rs +382 -0
  71. django_vpg-0.1.0/vendor/tokio-postgres/src/row.rs +354 -0
  72. django_vpg-0.1.0/vendor/tokio-postgres/src/simple_query.rs +115 -0
  73. django_vpg-0.1.0/vendor/tokio-postgres/src/socket.rs +75 -0
  74. django_vpg-0.1.0/vendor/tokio-postgres/src/statement.rs +122 -0
  75. django_vpg-0.1.0/vendor/tokio-postgres/src/tls.rs +164 -0
  76. django_vpg-0.1.0/vendor/tokio-postgres/src/to_statement.rs +59 -0
  77. django_vpg-0.1.0/vendor/tokio-postgres/src/transaction.rs +348 -0
  78. django_vpg-0.1.0/vendor/tokio-postgres/src/transaction_builder.rs +140 -0
  79. django_vpg-0.1.0/vendor/tokio-postgres/src/types.rs +6 -0
  80. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/binary_copy.rs +201 -0
  81. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/main.rs +1362 -0
  82. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/parse.rs +144 -0
  83. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/runtime.rs +135 -0
  84. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/bit_vec_06.rs +31 -0
  85. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/bit_vec_07.rs +31 -0
  86. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/bit_vec_08.rs +31 -0
  87. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/bit_vec_09.rs +31 -0
  88. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/chrono_04.rs +187 -0
  89. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/eui48_1.rs +18 -0
  90. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/geo_types_06.rs +60 -0
  91. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/geo_types_07.rs +61 -0
  92. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/jiff_01.rs +169 -0
  93. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/jiff_02.rs +169 -0
  94. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/mod.rs +771 -0
  95. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/serde_json_1.rs +41 -0
  96. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/smol_str_01.rs +19 -0
  97. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/time_02.rs +150 -0
  98. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/time_03.rs +182 -0
  99. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/uuid_08.rs +18 -0
  100. django_vpg-0.1.0/vendor/tokio-postgres/tests/test/types/uuid_1.rs +18 -0
  101. django_vpg-0.1.0/vendor/tokio-postgres.diff +109 -0
@@ -0,0 +1,1916 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.17",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "android_system_properties"
18
+ version = "0.1.5"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
21
+ dependencies = [
22
+ "libc",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "arrayvec"
27
+ version = "0.7.8"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
30
+
31
+ [[package]]
32
+ name = "async-trait"
33
+ version = "0.1.89"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
36
+ dependencies = [
37
+ "proc-macro2",
38
+ "quote",
39
+ "syn 2.0.119",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "autocfg"
44
+ version = "1.5.1"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
47
+
48
+ [[package]]
49
+ name = "aws-lc-rs"
50
+ version = "1.17.1"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
53
+ dependencies = [
54
+ "aws-lc-sys",
55
+ "zeroize",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "aws-lc-sys"
60
+ version = "0.42.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
63
+ dependencies = [
64
+ "cc",
65
+ "cmake",
66
+ "dunce",
67
+ "fs_extra",
68
+ "pkg-config",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "base64"
73
+ version = "0.22.1"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
76
+
77
+ [[package]]
78
+ name = "base64ct"
79
+ version = "1.8.3"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
82
+
83
+ [[package]]
84
+ name = "bitflags"
85
+ version = "2.13.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
88
+
89
+ [[package]]
90
+ name = "bitvec"
91
+ version = "1.1.1"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
94
+ dependencies = [
95
+ "funty",
96
+ "radium",
97
+ "tap",
98
+ "wyz",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "block-buffer"
103
+ version = "0.12.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
106
+ dependencies = [
107
+ "hybrid-array",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "borsh"
112
+ version = "1.8.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
115
+ dependencies = [
116
+ "borsh-derive",
117
+ "bytes",
118
+ "cfg_aliases",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "borsh-derive"
123
+ version = "1.8.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
126
+ dependencies = [
127
+ "once_cell",
128
+ "proc-macro-crate",
129
+ "proc-macro2",
130
+ "quote",
131
+ "syn 2.0.119",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "bumpalo"
136
+ version = "3.20.3"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
139
+
140
+ [[package]]
141
+ name = "bytecheck"
142
+ version = "0.6.12"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
145
+ dependencies = [
146
+ "bytecheck_derive",
147
+ "ptr_meta",
148
+ "simdutf8",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "bytecheck_derive"
153
+ version = "0.6.12"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
156
+ dependencies = [
157
+ "proc-macro2",
158
+ "quote",
159
+ "syn 1.0.109",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "byteorder"
164
+ version = "1.5.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
167
+
168
+ [[package]]
169
+ name = "bytes"
170
+ version = "1.12.1"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
173
+
174
+ [[package]]
175
+ name = "cc"
176
+ version = "1.2.67"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
179
+ dependencies = [
180
+ "find-msvc-tools",
181
+ "jobserver",
182
+ "libc",
183
+ "shlex",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "cfg-if"
188
+ version = "1.0.4"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
191
+
192
+ [[package]]
193
+ name = "cfg_aliases"
194
+ version = "0.2.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
197
+
198
+ [[package]]
199
+ name = "chacha20"
200
+ version = "0.10.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
203
+ dependencies = [
204
+ "cfg-if",
205
+ "cpufeatures",
206
+ "rand_core 0.10.1",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "chrono"
211
+ version = "0.4.45"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
214
+ dependencies = [
215
+ "iana-time-zone",
216
+ "js-sys",
217
+ "num-traits",
218
+ "wasm-bindgen",
219
+ "windows-link",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "cmake"
224
+ version = "0.1.58"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
227
+ dependencies = [
228
+ "cc",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "cmov"
233
+ version = "0.5.4"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
236
+
237
+ [[package]]
238
+ name = "const-oid"
239
+ version = "0.9.6"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
242
+
243
+ [[package]]
244
+ name = "const-oid"
245
+ version = "0.10.2"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
248
+
249
+ [[package]]
250
+ name = "core-foundation"
251
+ version = "0.10.1"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
254
+ dependencies = [
255
+ "core-foundation-sys",
256
+ "libc",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "core-foundation-sys"
261
+ version = "0.8.7"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
264
+
265
+ [[package]]
266
+ name = "cpufeatures"
267
+ version = "0.3.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
270
+ dependencies = [
271
+ "libc",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "crypto-common"
276
+ version = "0.2.2"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
279
+ dependencies = [
280
+ "hybrid-array",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "ctutils"
285
+ version = "0.4.2"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
288
+ dependencies = [
289
+ "cmov",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "deadpool"
294
+ version = "0.12.3"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
297
+ dependencies = [
298
+ "deadpool-runtime",
299
+ "lazy_static",
300
+ "num_cpus",
301
+ "tokio",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "deadpool-postgres"
306
+ version = "0.14.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "3d697d376cbfa018c23eb4caab1fd1883dd9c906a8c034e8d9a3cb06a7e0bef9"
309
+ dependencies = [
310
+ "async-trait",
311
+ "deadpool",
312
+ "getrandom 0.2.17",
313
+ "tokio",
314
+ "tokio-postgres",
315
+ "tracing",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "deadpool-runtime"
320
+ version = "0.1.4"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
323
+ dependencies = [
324
+ "tokio",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "der"
329
+ version = "0.7.10"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
332
+ dependencies = [
333
+ "const-oid 0.9.6",
334
+ "der_derive",
335
+ "flagset",
336
+ "zeroize",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "der_derive"
341
+ version = "0.7.3"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
344
+ dependencies = [
345
+ "proc-macro2",
346
+ "quote",
347
+ "syn 2.0.119",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "digest"
352
+ version = "0.11.3"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
355
+ dependencies = [
356
+ "block-buffer",
357
+ "const-oid 0.10.2",
358
+ "crypto-common",
359
+ "ctutils",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "dunce"
364
+ version = "1.0.5"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
367
+
368
+ [[package]]
369
+ name = "equivalent"
370
+ version = "1.0.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
373
+
374
+ [[package]]
375
+ name = "fallible-iterator"
376
+ version = "0.2.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
379
+
380
+ [[package]]
381
+ name = "find-msvc-tools"
382
+ version = "0.1.9"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
385
+
386
+ [[package]]
387
+ name = "flagset"
388
+ version = "0.4.7"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
391
+
392
+ [[package]]
393
+ name = "fs_extra"
394
+ version = "1.3.0"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
397
+
398
+ [[package]]
399
+ name = "funty"
400
+ version = "2.0.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
403
+
404
+ [[package]]
405
+ name = "futures-channel"
406
+ version = "0.3.32"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
409
+ dependencies = [
410
+ "futures-core",
411
+ "futures-sink",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "futures-core"
416
+ version = "0.3.32"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
419
+
420
+ [[package]]
421
+ name = "futures-macro"
422
+ version = "0.3.32"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
425
+ dependencies = [
426
+ "proc-macro2",
427
+ "quote",
428
+ "syn 2.0.119",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "futures-sink"
433
+ version = "0.3.32"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
436
+
437
+ [[package]]
438
+ name = "futures-task"
439
+ version = "0.3.32"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
442
+
443
+ [[package]]
444
+ name = "futures-util"
445
+ version = "0.3.32"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
448
+ dependencies = [
449
+ "futures-core",
450
+ "futures-macro",
451
+ "futures-sink",
452
+ "futures-task",
453
+ "pin-project-lite",
454
+ "slab",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "getrandom"
459
+ version = "0.2.17"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
462
+ dependencies = [
463
+ "cfg-if",
464
+ "js-sys",
465
+ "libc",
466
+ "wasi 0.11.1+wasi-snapshot-preview1",
467
+ "wasm-bindgen",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "getrandom"
472
+ version = "0.4.3"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
475
+ dependencies = [
476
+ "cfg-if",
477
+ "libc",
478
+ "r-efi",
479
+ "rand_core 0.10.1",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "hashbrown"
484
+ version = "0.12.3"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
487
+ dependencies = [
488
+ "ahash",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "hashbrown"
493
+ version = "0.17.1"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
496
+
497
+ [[package]]
498
+ name = "heck"
499
+ version = "0.5.0"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
502
+
503
+ [[package]]
504
+ name = "hermit-abi"
505
+ version = "0.5.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
508
+
509
+ [[package]]
510
+ name = "hmac"
511
+ version = "0.13.0"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
514
+ dependencies = [
515
+ "digest",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "hybrid-array"
520
+ version = "0.4.13"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
523
+ dependencies = [
524
+ "typenum",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "iana-time-zone"
529
+ version = "0.1.65"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
532
+ dependencies = [
533
+ "android_system_properties",
534
+ "core-foundation-sys",
535
+ "iana-time-zone-haiku",
536
+ "js-sys",
537
+ "log",
538
+ "wasm-bindgen",
539
+ "windows-core",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "iana-time-zone-haiku"
544
+ version = "0.1.2"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
547
+ dependencies = [
548
+ "cc",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "indexmap"
553
+ version = "2.14.0"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
556
+ dependencies = [
557
+ "equivalent",
558
+ "hashbrown 0.17.1",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "itoa"
563
+ version = "1.0.18"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
566
+
567
+ [[package]]
568
+ name = "jobserver"
569
+ version = "0.1.35"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
572
+ dependencies = [
573
+ "getrandom 0.4.3",
574
+ "libc",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "js-sys"
579
+ version = "0.3.103"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
582
+ dependencies = [
583
+ "cfg-if",
584
+ "futures-util",
585
+ "wasm-bindgen",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "lazy_static"
590
+ version = "1.5.0"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
593
+
594
+ [[package]]
595
+ name = "libc"
596
+ version = "0.2.186"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
599
+
600
+ [[package]]
601
+ name = "libredox"
602
+ version = "0.1.18"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
605
+ dependencies = [
606
+ "libc",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "lock_api"
611
+ version = "0.4.14"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
614
+ dependencies = [
615
+ "scopeguard",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "log"
620
+ version = "0.4.33"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
623
+
624
+ [[package]]
625
+ name = "md-5"
626
+ version = "0.11.0"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
629
+ dependencies = [
630
+ "cfg-if",
631
+ "digest",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "memchr"
636
+ version = "2.8.3"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
639
+
640
+ [[package]]
641
+ name = "mio"
642
+ version = "1.2.2"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
645
+ dependencies = [
646
+ "libc",
647
+ "wasi 0.11.1+wasi-snapshot-preview1",
648
+ "windows-sys 0.61.2",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "num-traits"
653
+ version = "0.2.19"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
656
+ dependencies = [
657
+ "autocfg",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "num_cpus"
662
+ version = "1.17.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
665
+ dependencies = [
666
+ "hermit-abi",
667
+ "libc",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "objc2-core-foundation"
672
+ version = "0.3.2"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
675
+ dependencies = [
676
+ "bitflags",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "objc2-system-configuration"
681
+ version = "0.3.2"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
684
+ dependencies = [
685
+ "objc2-core-foundation",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "once_cell"
690
+ version = "1.21.4"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
693
+
694
+ [[package]]
695
+ name = "openssl-probe"
696
+ version = "0.2.1"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
699
+
700
+ [[package]]
701
+ name = "parking_lot"
702
+ version = "0.12.5"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
705
+ dependencies = [
706
+ "lock_api",
707
+ "parking_lot_core",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "parking_lot_core"
712
+ version = "0.9.12"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
715
+ dependencies = [
716
+ "cfg-if",
717
+ "libc",
718
+ "redox_syscall",
719
+ "smallvec",
720
+ "windows-link",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "percent-encoding"
725
+ version = "2.3.2"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
728
+
729
+ [[package]]
730
+ name = "phf"
731
+ version = "0.13.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
734
+ dependencies = [
735
+ "phf_shared",
736
+ "serde",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "phf_shared"
741
+ version = "0.13.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
744
+ dependencies = [
745
+ "siphasher",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "pin-project-lite"
750
+ version = "0.2.17"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
753
+
754
+ [[package]]
755
+ name = "pkg-config"
756
+ version = "0.3.33"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
759
+
760
+ [[package]]
761
+ name = "portable-atomic"
762
+ version = "1.14.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
765
+
766
+ [[package]]
767
+ name = "postgres-protocol"
768
+ version = "0.6.12"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "08808e3c483c46e999108051c78334f473d5adb59d78bb80a1268c7e6aa6c514"
771
+ dependencies = [
772
+ "base64",
773
+ "byteorder",
774
+ "bytes",
775
+ "fallible-iterator",
776
+ "hmac",
777
+ "md-5",
778
+ "memchr",
779
+ "rand 0.10.2",
780
+ "sha2",
781
+ "stringprep",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "postgres-types"
786
+ version = "0.2.14"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "851ca9db4932932d69f3ea811b1abe63087a0f740a47692619dd40d4899b68be"
789
+ dependencies = [
790
+ "bytes",
791
+ "chrono",
792
+ "fallible-iterator",
793
+ "postgres-protocol",
794
+ "serde_core",
795
+ "serde_json",
796
+ "uuid",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "ppv-lite86"
801
+ version = "0.2.21"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
804
+ dependencies = [
805
+ "zerocopy",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "proc-macro-crate"
810
+ version = "3.5.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
813
+ dependencies = [
814
+ "toml_edit",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "proc-macro2"
819
+ version = "1.0.106"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
822
+ dependencies = [
823
+ "unicode-ident",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "ptr_meta"
828
+ version = "0.1.4"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
831
+ dependencies = [
832
+ "ptr_meta_derive",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "ptr_meta_derive"
837
+ version = "0.1.4"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
840
+ dependencies = [
841
+ "proc-macro2",
842
+ "quote",
843
+ "syn 1.0.109",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "pyo3"
848
+ version = "0.28.3"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
851
+ dependencies = [
852
+ "libc",
853
+ "once_cell",
854
+ "portable-atomic",
855
+ "pyo3-build-config",
856
+ "pyo3-ffi",
857
+ "pyo3-macros",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "pyo3-build-config"
862
+ version = "0.28.3"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
865
+ dependencies = [
866
+ "target-lexicon",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "pyo3-ffi"
871
+ version = "0.28.3"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
874
+ dependencies = [
875
+ "libc",
876
+ "pyo3-build-config",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "pyo3-macros"
881
+ version = "0.28.3"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
884
+ dependencies = [
885
+ "proc-macro2",
886
+ "pyo3-macros-backend",
887
+ "quote",
888
+ "syn 2.0.119",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "pyo3-macros-backend"
893
+ version = "0.28.3"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
896
+ dependencies = [
897
+ "heck",
898
+ "proc-macro2",
899
+ "pyo3-build-config",
900
+ "quote",
901
+ "syn 2.0.119",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "quote"
906
+ version = "1.0.46"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
909
+ dependencies = [
910
+ "proc-macro2",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "r-efi"
915
+ version = "6.0.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
918
+
919
+ [[package]]
920
+ name = "radium"
921
+ version = "0.7.0"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
924
+
925
+ [[package]]
926
+ name = "rand"
927
+ version = "0.8.7"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
930
+ dependencies = [
931
+ "libc",
932
+ "rand_chacha",
933
+ "rand_core 0.6.4",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "rand"
938
+ version = "0.10.2"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
941
+ dependencies = [
942
+ "chacha20",
943
+ "getrandom 0.4.3",
944
+ "rand_core 0.10.1",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "rand_chacha"
949
+ version = "0.3.1"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
952
+ dependencies = [
953
+ "ppv-lite86",
954
+ "rand_core 0.6.4",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "rand_core"
959
+ version = "0.6.4"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
962
+ dependencies = [
963
+ "getrandom 0.2.17",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "rand_core"
968
+ version = "0.10.1"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
971
+
972
+ [[package]]
973
+ name = "redox_syscall"
974
+ version = "0.5.18"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
977
+ dependencies = [
978
+ "bitflags",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "rend"
983
+ version = "0.4.2"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
986
+ dependencies = [
987
+ "bytecheck",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "ring"
992
+ version = "0.17.14"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
995
+ dependencies = [
996
+ "cc",
997
+ "cfg-if",
998
+ "getrandom 0.2.17",
999
+ "libc",
1000
+ "untrusted",
1001
+ "windows-sys 0.52.0",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "rkyv"
1006
+ version = "0.7.46"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
1009
+ dependencies = [
1010
+ "bitvec",
1011
+ "bytecheck",
1012
+ "bytes",
1013
+ "hashbrown 0.12.3",
1014
+ "ptr_meta",
1015
+ "rend",
1016
+ "rkyv_derive",
1017
+ "seahash",
1018
+ "tinyvec",
1019
+ "uuid",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "rkyv_derive"
1024
+ version = "0.7.46"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
1027
+ dependencies = [
1028
+ "proc-macro2",
1029
+ "quote",
1030
+ "syn 1.0.109",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "rust_decimal"
1035
+ version = "1.42.1"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a"
1038
+ dependencies = [
1039
+ "arrayvec",
1040
+ "borsh",
1041
+ "bytes",
1042
+ "num-traits",
1043
+ "postgres-types",
1044
+ "rand 0.8.7",
1045
+ "rkyv",
1046
+ "serde",
1047
+ "serde_json",
1048
+ "wasm-bindgen",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "rustls"
1053
+ version = "0.23.42"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
1056
+ dependencies = [
1057
+ "aws-lc-rs",
1058
+ "log",
1059
+ "once_cell",
1060
+ "ring",
1061
+ "rustls-pki-types",
1062
+ "rustls-webpki",
1063
+ "subtle",
1064
+ "zeroize",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "rustls-native-certs"
1069
+ version = "0.8.4"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
1072
+ dependencies = [
1073
+ "openssl-probe",
1074
+ "rustls-pki-types",
1075
+ "schannel",
1076
+ "security-framework",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "rustls-pemfile"
1081
+ version = "2.2.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1084
+ dependencies = [
1085
+ "rustls-pki-types",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "rustls-pki-types"
1090
+ version = "1.15.0"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
1093
+ dependencies = [
1094
+ "zeroize",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "rustls-webpki"
1099
+ version = "0.103.13"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1102
+ dependencies = [
1103
+ "aws-lc-rs",
1104
+ "ring",
1105
+ "rustls-pki-types",
1106
+ "untrusted",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "rustversion"
1111
+ version = "1.0.23"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1114
+
1115
+ [[package]]
1116
+ name = "schannel"
1117
+ version = "0.1.29"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1120
+ dependencies = [
1121
+ "windows-sys 0.61.2",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "scopeguard"
1126
+ version = "1.2.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1129
+
1130
+ [[package]]
1131
+ name = "seahash"
1132
+ version = "4.1.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1135
+
1136
+ [[package]]
1137
+ name = "security-framework"
1138
+ version = "3.7.0"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1141
+ dependencies = [
1142
+ "bitflags",
1143
+ "core-foundation",
1144
+ "core-foundation-sys",
1145
+ "libc",
1146
+ "security-framework-sys",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "security-framework-sys"
1151
+ version = "2.17.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1154
+ dependencies = [
1155
+ "core-foundation-sys",
1156
+ "libc",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "serde"
1161
+ version = "1.0.228"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1164
+ dependencies = [
1165
+ "serde_core",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "serde_core"
1170
+ version = "1.0.228"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1173
+ dependencies = [
1174
+ "serde_derive",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "serde_derive"
1179
+ version = "1.0.228"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1182
+ dependencies = [
1183
+ "proc-macro2",
1184
+ "quote",
1185
+ "syn 2.0.119",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "serde_json"
1190
+ version = "1.0.150"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1193
+ dependencies = [
1194
+ "itoa",
1195
+ "memchr",
1196
+ "serde",
1197
+ "serde_core",
1198
+ "zmij",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "sha2"
1203
+ version = "0.11.0"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1206
+ dependencies = [
1207
+ "cfg-if",
1208
+ "cpufeatures",
1209
+ "digest",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "shlex"
1214
+ version = "2.0.1"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1217
+
1218
+ [[package]]
1219
+ name = "simdutf8"
1220
+ version = "0.1.5"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1223
+
1224
+ [[package]]
1225
+ name = "siphasher"
1226
+ version = "1.0.3"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1229
+
1230
+ [[package]]
1231
+ name = "slab"
1232
+ version = "0.4.12"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1235
+
1236
+ [[package]]
1237
+ name = "smallvec"
1238
+ version = "1.15.2"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1241
+
1242
+ [[package]]
1243
+ name = "socket2"
1244
+ version = "0.6.5"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1247
+ dependencies = [
1248
+ "libc",
1249
+ "windows-sys 0.61.2",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "spki"
1254
+ version = "0.7.3"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1257
+ dependencies = [
1258
+ "base64ct",
1259
+ "der",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "stringprep"
1264
+ version = "0.1.5"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1267
+ dependencies = [
1268
+ "unicode-bidi",
1269
+ "unicode-normalization",
1270
+ "unicode-properties",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "subtle"
1275
+ version = "2.6.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1278
+
1279
+ [[package]]
1280
+ name = "syn"
1281
+ version = "1.0.109"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1284
+ dependencies = [
1285
+ "proc-macro2",
1286
+ "quote",
1287
+ "unicode-ident",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "syn"
1292
+ version = "2.0.119"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1295
+ dependencies = [
1296
+ "proc-macro2",
1297
+ "quote",
1298
+ "unicode-ident",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "tap"
1303
+ version = "1.0.1"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1306
+
1307
+ [[package]]
1308
+ name = "target-lexicon"
1309
+ version = "0.13.5"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1312
+
1313
+ [[package]]
1314
+ name = "tinyvec"
1315
+ version = "1.12.0"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
1318
+ dependencies = [
1319
+ "tinyvec_macros",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "tinyvec_macros"
1324
+ version = "0.1.1"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1327
+
1328
+ [[package]]
1329
+ name = "tls_codec"
1330
+ version = "0.4.2"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
1333
+ dependencies = [
1334
+ "tls_codec_derive",
1335
+ "zeroize",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "tls_codec_derive"
1340
+ version = "0.4.2"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
1343
+ dependencies = [
1344
+ "proc-macro2",
1345
+ "quote",
1346
+ "syn 2.0.119",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "tokio"
1351
+ version = "1.53.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
1354
+ dependencies = [
1355
+ "bytes",
1356
+ "libc",
1357
+ "mio",
1358
+ "pin-project-lite",
1359
+ "socket2",
1360
+ "tokio-macros",
1361
+ "windows-sys 0.61.2",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "tokio-macros"
1366
+ version = "2.7.1"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
1369
+ dependencies = [
1370
+ "proc-macro2",
1371
+ "quote",
1372
+ "syn 2.0.119",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "tokio-postgres"
1377
+ version = "0.7.18"
1378
+ dependencies = [
1379
+ "async-trait",
1380
+ "byteorder",
1381
+ "bytes",
1382
+ "fallible-iterator",
1383
+ "futures-channel",
1384
+ "futures-util",
1385
+ "log",
1386
+ "parking_lot",
1387
+ "percent-encoding",
1388
+ "phf",
1389
+ "pin-project-lite",
1390
+ "postgres-protocol",
1391
+ "postgres-types",
1392
+ "rand 0.10.2",
1393
+ "socket2",
1394
+ "tokio",
1395
+ "tokio-util",
1396
+ "whoami",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "tokio-postgres-rustls"
1401
+ version = "0.13.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "27d684bad428a0f2481f42241f821db42c54e2dc81d8c00db8536c506b0a0144"
1404
+ dependencies = [
1405
+ "const-oid 0.9.6",
1406
+ "ring",
1407
+ "rustls",
1408
+ "tokio",
1409
+ "tokio-postgres",
1410
+ "tokio-rustls",
1411
+ "x509-cert",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "tokio-rustls"
1416
+ version = "0.26.4"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1419
+ dependencies = [
1420
+ "rustls",
1421
+ "tokio",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "tokio-util"
1426
+ version = "0.7.18"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1429
+ dependencies = [
1430
+ "bytes",
1431
+ "futures-core",
1432
+ "futures-sink",
1433
+ "pin-project-lite",
1434
+ "tokio",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "toml_datetime"
1439
+ version = "1.1.1+spec-1.1.0"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1442
+ dependencies = [
1443
+ "serde_core",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "toml_edit"
1448
+ version = "0.25.13+spec-1.1.0"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
1451
+ dependencies = [
1452
+ "indexmap",
1453
+ "toml_datetime",
1454
+ "toml_parser",
1455
+ "winnow",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "toml_parser"
1460
+ version = "1.1.2+spec-1.1.0"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1463
+ dependencies = [
1464
+ "winnow",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "tracing"
1469
+ version = "0.1.44"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1472
+ dependencies = [
1473
+ "pin-project-lite",
1474
+ "tracing-attributes",
1475
+ "tracing-core",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "tracing-attributes"
1480
+ version = "0.1.31"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1483
+ dependencies = [
1484
+ "proc-macro2",
1485
+ "quote",
1486
+ "syn 2.0.119",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "tracing-core"
1491
+ version = "0.1.36"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1494
+ dependencies = [
1495
+ "once_cell",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "typenum"
1500
+ version = "1.20.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1503
+
1504
+ [[package]]
1505
+ name = "unicode-bidi"
1506
+ version = "0.3.18"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1509
+
1510
+ [[package]]
1511
+ name = "unicode-ident"
1512
+ version = "1.0.24"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1515
+
1516
+ [[package]]
1517
+ name = "unicode-normalization"
1518
+ version = "0.1.25"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1521
+ dependencies = [
1522
+ "tinyvec",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "unicode-properties"
1527
+ version = "0.1.4"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
1530
+
1531
+ [[package]]
1532
+ name = "untrusted"
1533
+ version = "0.9.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1536
+
1537
+ [[package]]
1538
+ name = "uuid"
1539
+ version = "1.24.0"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
1542
+ dependencies = [
1543
+ "getrandom 0.4.3",
1544
+ "js-sys",
1545
+ "wasm-bindgen",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "version_check"
1550
+ version = "0.9.5"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1553
+
1554
+ [[package]]
1555
+ name = "vpg-core"
1556
+ version = "0.1.0"
1557
+ dependencies = [
1558
+ "bytes",
1559
+ "chrono",
1560
+ "deadpool",
1561
+ "deadpool-postgres",
1562
+ "futures-util",
1563
+ "rust_decimal",
1564
+ "rustls",
1565
+ "rustls-native-certs",
1566
+ "rustls-pemfile",
1567
+ "serde_json",
1568
+ "tokio",
1569
+ "tokio-postgres",
1570
+ "tokio-postgres-rustls",
1571
+ "uuid",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "vpg-pyo3"
1576
+ version = "0.1.0"
1577
+ dependencies = [
1578
+ "bytes",
1579
+ "chrono",
1580
+ "deadpool",
1581
+ "deadpool-postgres",
1582
+ "futures-util",
1583
+ "pyo3",
1584
+ "rust_decimal",
1585
+ "rustls",
1586
+ "serde_json",
1587
+ "tokio",
1588
+ "tokio-postgres",
1589
+ "uuid",
1590
+ "vpg-core",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "wasi"
1595
+ version = "0.11.1+wasi-snapshot-preview1"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1598
+
1599
+ [[package]]
1600
+ name = "wasi"
1601
+ version = "0.14.7+wasi-0.2.4"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
1604
+ dependencies = [
1605
+ "wasip2",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "wasip2"
1610
+ version = "1.0.4+wasi-0.2.12"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1613
+ dependencies = [
1614
+ "wit-bindgen",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "wasite"
1619
+ version = "1.0.2"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
1622
+ dependencies = [
1623
+ "wasi 0.14.7+wasi-0.2.4",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "wasm-bindgen"
1628
+ version = "0.2.126"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1631
+ dependencies = [
1632
+ "cfg-if",
1633
+ "once_cell",
1634
+ "rustversion",
1635
+ "serde",
1636
+ "wasm-bindgen-macro",
1637
+ "wasm-bindgen-shared",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "wasm-bindgen-macro"
1642
+ version = "0.2.126"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1645
+ dependencies = [
1646
+ "quote",
1647
+ "wasm-bindgen-macro-support",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "wasm-bindgen-macro-support"
1652
+ version = "0.2.126"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1655
+ dependencies = [
1656
+ "bumpalo",
1657
+ "proc-macro2",
1658
+ "quote",
1659
+ "syn 2.0.119",
1660
+ "wasm-bindgen-shared",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "wasm-bindgen-shared"
1665
+ version = "0.2.126"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1668
+ dependencies = [
1669
+ "unicode-ident",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "web-sys"
1674
+ version = "0.3.103"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1677
+ dependencies = [
1678
+ "js-sys",
1679
+ "wasm-bindgen",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "whoami"
1684
+ version = "2.1.2"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
1687
+ dependencies = [
1688
+ "libc",
1689
+ "libredox",
1690
+ "objc2-system-configuration",
1691
+ "wasite",
1692
+ "web-sys",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "windows-core"
1697
+ version = "0.62.2"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1700
+ dependencies = [
1701
+ "windows-implement",
1702
+ "windows-interface",
1703
+ "windows-link",
1704
+ "windows-result",
1705
+ "windows-strings",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "windows-implement"
1710
+ version = "0.60.2"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1713
+ dependencies = [
1714
+ "proc-macro2",
1715
+ "quote",
1716
+ "syn 2.0.119",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "windows-interface"
1721
+ version = "0.59.3"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1724
+ dependencies = [
1725
+ "proc-macro2",
1726
+ "quote",
1727
+ "syn 2.0.119",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "windows-link"
1732
+ version = "0.2.1"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1735
+
1736
+ [[package]]
1737
+ name = "windows-result"
1738
+ version = "0.4.1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1741
+ dependencies = [
1742
+ "windows-link",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "windows-strings"
1747
+ version = "0.5.1"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1750
+ dependencies = [
1751
+ "windows-link",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "windows-sys"
1756
+ version = "0.52.0"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1759
+ dependencies = [
1760
+ "windows-targets",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "windows-sys"
1765
+ version = "0.61.2"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1768
+ dependencies = [
1769
+ "windows-link",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "windows-targets"
1774
+ version = "0.52.6"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1777
+ dependencies = [
1778
+ "windows_aarch64_gnullvm",
1779
+ "windows_aarch64_msvc",
1780
+ "windows_i686_gnu",
1781
+ "windows_i686_gnullvm",
1782
+ "windows_i686_msvc",
1783
+ "windows_x86_64_gnu",
1784
+ "windows_x86_64_gnullvm",
1785
+ "windows_x86_64_msvc",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "windows_aarch64_gnullvm"
1790
+ version = "0.52.6"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1793
+
1794
+ [[package]]
1795
+ name = "windows_aarch64_msvc"
1796
+ version = "0.52.6"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1799
+
1800
+ [[package]]
1801
+ name = "windows_i686_gnu"
1802
+ version = "0.52.6"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1805
+
1806
+ [[package]]
1807
+ name = "windows_i686_gnullvm"
1808
+ version = "0.52.6"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1811
+
1812
+ [[package]]
1813
+ name = "windows_i686_msvc"
1814
+ version = "0.52.6"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1817
+
1818
+ [[package]]
1819
+ name = "windows_x86_64_gnu"
1820
+ version = "0.52.6"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1823
+
1824
+ [[package]]
1825
+ name = "windows_x86_64_gnullvm"
1826
+ version = "0.52.6"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1829
+
1830
+ [[package]]
1831
+ name = "windows_x86_64_msvc"
1832
+ version = "0.52.6"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1835
+
1836
+ [[package]]
1837
+ name = "winnow"
1838
+ version = "1.0.4"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
1841
+ dependencies = [
1842
+ "memchr",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "wit-bindgen"
1847
+ version = "0.57.1"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1850
+
1851
+ [[package]]
1852
+ name = "wyz"
1853
+ version = "0.5.1"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1856
+ dependencies = [
1857
+ "tap",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "x509-cert"
1862
+ version = "0.2.5"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
1865
+ dependencies = [
1866
+ "const-oid 0.9.6",
1867
+ "der",
1868
+ "spki",
1869
+ "tls_codec",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "zerocopy"
1874
+ version = "0.8.54"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1877
+ dependencies = [
1878
+ "zerocopy-derive",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "zerocopy-derive"
1883
+ version = "0.8.54"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1886
+ dependencies = [
1887
+ "proc-macro2",
1888
+ "quote",
1889
+ "syn 2.0.119",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "zeroize"
1894
+ version = "1.9.0"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1897
+ dependencies = [
1898
+ "zeroize_derive",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "zeroize_derive"
1903
+ version = "1.5.0"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
1906
+ dependencies = [
1907
+ "proc-macro2",
1908
+ "quote",
1909
+ "syn 2.0.119",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "zmij"
1914
+ version = "1.0.23"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"