psqlpy 0.11.2__tar.gz → 0.11.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.

Potentially problematic release.


This version of psqlpy might be problematic. Click here for more details.

Files changed (167) hide show
  1. {psqlpy-0.11.2 → psqlpy-0.11.3}/Cargo.lock +367 -312
  2. psqlpy-0.11.3/Cargo.toml +65 -0
  3. {psqlpy-0.11.2 → psqlpy-0.11.3}/PKG-INFO +1 -1
  4. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/sidebar.ts +1 -0
  5. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/connection.md +1 -1
  6. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/results.md +22 -2
  7. psqlpy-0.11.3/docs/usage/frameworks/panther.md +48 -0
  8. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/__init__.pyi +108 -3
  9. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/conftest.py +45 -38
  10. psqlpy-0.11.3/python/tests/test_query_results.py +76 -0
  11. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_value_converter.py +29 -0
  12. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/impls.rs +77 -32
  13. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/common.rs +66 -52
  14. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/connection.rs +14 -3
  15. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/query_result.rs +54 -7
  16. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/funcs.rs +1 -1
  17. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/serde_value.rs +68 -59
  18. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/to_python.rs +50 -38
  19. psqlpy-0.11.2/Cargo.toml +0 -65
  20. {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/actions/setup_postgres/action.yaml +0 -0
  21. {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/pull_request_template.md +0 -0
  22. {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/workflows/release.yml +0 -0
  23. {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/workflows/release_docs.yaml +0 -0
  24. {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/workflows/test.yaml +0 -0
  25. {psqlpy-0.11.2 → psqlpy-0.11.3}/.gitignore +0 -0
  26. {psqlpy-0.11.2 → psqlpy-0.11.3}/.pre-commit-config.yaml +0 -0
  27. {psqlpy-0.11.2 → psqlpy-0.11.3}/LICENSE +0 -0
  28. {psqlpy-0.11.2 → psqlpy-0.11.3}/README.md +0 -0
  29. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/config.ts +0 -0
  30. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/public/logo.png +0 -0
  31. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/styles/config.scss +0 -0
  32. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/styles/index.scss +0 -0
  33. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/styles/palette.scss +0 -0
  34. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/README.md +0 -0
  35. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/benchmarks.md +0 -0
  36. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/components_overview.md +0 -0
  37. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/connection_pool.md +0 -0
  38. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/connection_pool_builder.md +0 -0
  39. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/cursor.md +0 -0
  40. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/exceptions.md +0 -0
  41. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/listener.md +0 -0
  42. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/prepared_statement.md +0 -0
  43. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/transaction.md +0 -0
  44. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/contribute.md +0 -0
  45. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/external_connection_pools.md +0 -0
  46. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/faq.md +0 -0
  47. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/integrations/opentelemetry.md +0 -0
  48. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/integrations/taskiq.md +0 -0
  49. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/introduction/components_overview.md +0 -0
  50. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/introduction/introduction.md +0 -0
  51. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/introduction/lets_start.md +0 -0
  52. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/aiohttp.md +0 -0
  53. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/blacksheep.md +0 -0
  54. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/fastapi.md +0 -0
  55. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/frameworks.md +0 -0
  56. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/litestar.md +0 -0
  57. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/robyn.md +0 -0
  58. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/parameters.md +0 -0
  59. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/row_factories/predefined_row_factories.md +0 -0
  60. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/row_factories/row_factories.md +0 -0
  61. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/advanced_type_usage.md +0 -0
  62. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/array_types.md +0 -0
  63. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/extra_types.md +0 -0
  64. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/supported_types.md +0 -0
  65. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/types.md +0 -0
  66. {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/usage.md +0 -0
  67. {psqlpy-0.11.2 → psqlpy-0.11.3}/examples/aiohttp/start_example.py +0 -0
  68. {psqlpy-0.11.2 → psqlpy-0.11.3}/examples/fastapi/advanced_example.py +0 -0
  69. {psqlpy-0.11.2 → psqlpy-0.11.3}/examples/fastapi/start_example.py +0 -0
  70. {psqlpy-0.11.2 → psqlpy-0.11.3}/package.json +0 -0
  71. {psqlpy-0.11.2 → psqlpy-0.11.3}/pnpm-lock.yaml +0 -0
  72. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/.gitignore +0 -0
  73. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/.pre-commit-config.yaml +0 -0
  74. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/Dockerfile +0 -0
  75. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/README.md +0 -0
  76. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/alembic.ini +0 -0
  77. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/poetry.lock +0 -0
  78. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/__init__.py +0 -0
  79. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/api/__init__.py +0 -0
  80. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/api/piccolo.py +0 -0
  81. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/api/plain_queries.py +0 -0
  82. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/app.py +0 -0
  83. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/helpers.py +0 -0
  84. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/lifecycle.py +0 -0
  85. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/README +0 -0
  86. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/env.py +0 -0
  87. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/script.py.mako +0 -0
  88. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/versions/06d989926550_basic_user_table.py +0 -0
  89. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/versions/d162c084f522_big_af_table.py +0 -0
  90. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/mocker.py +0 -0
  91. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/models/__init__.py +0 -0
  92. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/models/piccolo.py +0 -0
  93. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/models/sqlalchemy.py +0 -0
  94. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/piccolo_conf.py +0 -0
  95. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/settings.py +0 -0
  96. {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/pyproject.toml +0 -0
  97. {psqlpy-0.11.2 → psqlpy-0.11.3}/pyproject.toml +0 -0
  98. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/__init__.py +0 -0
  99. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/exceptions.pyi +0 -0
  100. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/extra_types.pyi +0 -0
  101. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/row_factories.pyi +0 -0
  102. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/exceptions.py +0 -0
  103. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/extra_types.py +0 -0
  104. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/py.typed +0 -0
  105. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/row_factories.py +0 -0
  106. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/__init__.py +0 -0
  107. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/helpers.py +0 -0
  108. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_binary_copy.py +0 -0
  109. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_connection.py +0 -0
  110. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_connection_pool.py +0 -0
  111. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_connection_pool_builder.py +0 -0
  112. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_cursor.py +0 -0
  113. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_data/MTcars.parquet +0 -0
  114. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_kwargs_parameters.py +0 -0
  115. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_listener.py +0 -0
  116. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_row_factories.py +0 -0
  117. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_ssl_mode.py +0 -0
  118. {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_transaction.py +0 -0
  119. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/common.rs +0 -0
  120. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/mod.rs +0 -0
  121. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/structs.rs +0 -0
  122. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/traits.rs +0 -0
  123. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/connection_pool.rs +0 -0
  124. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/connection_pool_builder.rs +0 -0
  125. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/cursor.rs +0 -0
  126. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/listener/core.rs +0 -0
  127. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/listener/mod.rs +0 -0
  128. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/listener/structs.rs +0 -0
  129. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/mod.rs +0 -0
  130. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/prepared_statement.rs +0 -0
  131. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/transaction.rs +0 -0
  132. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/utils.rs +0 -0
  133. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/exceptions/mod.rs +0 -0
  134. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/exceptions/python_errors.rs +0 -0
  135. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/exceptions/rust_errors.rs +0 -0
  136. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/extra_types.rs +0 -0
  137. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/format_helpers.rs +0 -0
  138. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/lib.rs +0 -0
  139. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/options.rs +0 -0
  140. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/row_factories.rs +0 -0
  141. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/runtime.rs +0 -0
  142. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/cache.rs +0 -0
  143. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/mod.rs +0 -0
  144. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/parameters.rs +0 -0
  145. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/query.rs +0 -0
  146. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/statement.rs +0 -0
  147. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/statement_builder.rs +0 -0
  148. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/utils.rs +0 -0
  149. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/transaction/impls.rs +0 -0
  150. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/transaction/mod.rs +0 -0
  151. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/transaction/structs.rs +0 -0
  152. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/additional_types.rs +0 -0
  153. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/consts.rs +0 -0
  154. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/converter_impls.rs +0 -0
  155. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/enums.rs +0 -0
  156. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/impls.rs +0 -0
  157. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/mod.rs +0 -0
  158. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/from_python.rs +0 -0
  159. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/mod.rs +0 -0
  160. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/decimal.rs +0 -0
  161. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/interval.rs +0 -0
  162. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/mod.rs +0 -0
  163. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/uuid.rs +0 -0
  164. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/traits.rs +0 -0
  165. {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/utils.rs +0 -0
  166. {psqlpy-0.11.2 → psqlpy-0.11.3}/tox.ini +0 -0
  167. {psqlpy-0.11.2 → psqlpy-0.11.3}/tsconfig.json +0 -0
@@ -4,18 +4,18 @@ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "addr2line"
7
- version = "0.22.0"
7
+ version = "0.24.2"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
10
  dependencies = [
11
11
  "gimli",
12
12
  ]
13
13
 
14
14
  [[package]]
15
- name = "adler"
16
- version = "1.0.2"
15
+ name = "adler2"
16
+ version = "2.0.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
19
 
20
20
  [[package]]
21
21
  name = "ahash"
@@ -23,7 +23,7 @@ version = "0.7.8"
23
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
24
  checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
25
25
  dependencies = [
26
- "getrandom",
26
+ "getrandom 0.2.16",
27
27
  "once_cell",
28
28
  "version_check",
29
29
  ]
@@ -69,40 +69,40 @@ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
69
69
 
70
70
  [[package]]
71
71
  name = "arrayvec"
72
- version = "0.7.4"
72
+ version = "0.7.6"
73
73
  source = "registry+https://github.com/rust-lang/crates.io-index"
74
- checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
74
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
75
75
 
76
76
  [[package]]
77
77
  name = "async-trait"
78
- version = "0.1.81"
78
+ version = "0.1.88"
79
79
  source = "registry+https://github.com/rust-lang/crates.io-index"
80
- checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
80
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
81
81
  dependencies = [
82
82
  "proc-macro2",
83
83
  "quote",
84
- "syn 2.0.72",
84
+ "syn 2.0.104",
85
85
  ]
86
86
 
87
87
  [[package]]
88
88
  name = "autocfg"
89
- version = "1.3.0"
89
+ version = "1.5.0"
90
90
  source = "registry+https://github.com/rust-lang/crates.io-index"
91
- checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
91
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
92
92
 
93
93
  [[package]]
94
94
  name = "backtrace"
95
- version = "0.3.73"
95
+ version = "0.3.75"
96
96
  source = "registry+https://github.com/rust-lang/crates.io-index"
97
- checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
97
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
98
98
  dependencies = [
99
99
  "addr2line",
100
- "cc",
101
100
  "cfg-if",
102
101
  "libc",
103
102
  "miniz_oxide",
104
103
  "object",
105
104
  "rustc-demangle",
105
+ "windows-targets",
106
106
  ]
107
107
 
108
108
  [[package]]
@@ -113,15 +113,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
113
113
 
114
114
  [[package]]
115
115
  name = "bitflags"
116
- version = "1.3.2"
116
+ version = "2.9.1"
117
117
  source = "registry+https://github.com/rust-lang/crates.io-index"
118
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
119
-
120
- [[package]]
121
- name = "bitflags"
122
- version = "2.6.0"
123
- source = "registry+https://github.com/rust-lang/crates.io-index"
124
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
118
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
125
119
 
126
120
  [[package]]
127
121
  name = "bitvec"
@@ -146,9 +140,9 @@ dependencies = [
146
140
 
147
141
  [[package]]
148
142
  name = "borsh"
149
- version = "1.5.1"
143
+ version = "1.5.7"
150
144
  source = "registry+https://github.com/rust-lang/crates.io-index"
151
- checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed"
145
+ checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
152
146
  dependencies = [
153
147
  "borsh-derive",
154
148
  "cfg_aliases",
@@ -156,23 +150,22 @@ dependencies = [
156
150
 
157
151
  [[package]]
158
152
  name = "borsh-derive"
159
- version = "1.5.1"
153
+ version = "1.5.7"
160
154
  source = "registry+https://github.com/rust-lang/crates.io-index"
161
- checksum = "c3ef8005764f53cd4dca619f5bf64cafd4664dada50ece25e4d81de54c80cc0b"
155
+ checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3"
162
156
  dependencies = [
163
157
  "once_cell",
164
158
  "proc-macro-crate",
165
159
  "proc-macro2",
166
160
  "quote",
167
- "syn 2.0.72",
168
- "syn_derive",
161
+ "syn 2.0.104",
169
162
  ]
170
163
 
171
164
  [[package]]
172
165
  name = "bumpalo"
173
- version = "3.16.0"
166
+ version = "3.19.0"
174
167
  source = "registry+https://github.com/rust-lang/crates.io-index"
175
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
168
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
176
169
 
177
170
  [[package]]
178
171
  name = "bytecheck"
@@ -204,21 +197,24 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
204
197
 
205
198
  [[package]]
206
199
  name = "bytes"
207
- version = "1.7.1"
200
+ version = "1.10.1"
208
201
  source = "registry+https://github.com/rust-lang/crates.io-index"
209
- checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
202
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
210
203
 
211
204
  [[package]]
212
205
  name = "cc"
213
- version = "1.1.7"
206
+ version = "1.2.27"
214
207
  source = "registry+https://github.com/rust-lang/crates.io-index"
215
- checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc"
208
+ checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
209
+ dependencies = [
210
+ "shlex",
211
+ ]
216
212
 
217
213
  [[package]]
218
214
  name = "cfg-if"
219
- version = "1.0.0"
215
+ version = "1.0.1"
220
216
  source = "registry+https://github.com/rust-lang/crates.io-index"
221
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
217
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
222
218
 
223
219
  [[package]]
224
220
  name = "cfg_aliases"
@@ -228,16 +224,16 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
228
224
 
229
225
  [[package]]
230
226
  name = "chrono"
231
- version = "0.4.38"
227
+ version = "0.4.41"
232
228
  source = "registry+https://github.com/rust-lang/crates.io-index"
233
- checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
229
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
234
230
  dependencies = [
235
231
  "android-tzdata",
236
232
  "iana-time-zone",
237
233
  "js-sys",
238
234
  "num-traits",
239
235
  "wasm-bindgen",
240
- "windows-targets",
236
+ "windows-link",
241
237
  ]
242
238
 
243
239
  [[package]]
@@ -264,15 +260,15 @@ dependencies = [
264
260
 
265
261
  [[package]]
266
262
  name = "core-foundation-sys"
267
- version = "0.8.6"
263
+ version = "0.8.7"
268
264
  source = "registry+https://github.com/rust-lang/crates.io-index"
269
- checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
265
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
270
266
 
271
267
  [[package]]
272
268
  name = "cpufeatures"
273
- version = "0.2.12"
269
+ version = "0.2.17"
274
270
  source = "registry+https://github.com/rust-lang/crates.io-index"
275
- checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
271
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
276
272
  dependencies = [
277
273
  "libc",
278
274
  ]
@@ -290,7 +286,7 @@ dependencies = [
290
286
  [[package]]
291
287
  name = "deadpool"
292
288
  version = "0.12.1"
293
- source = "git+https://github.com/chandr-andr/deadpool.git?branch=psqlpy#1eab0a5ed96086495847c6069f6b2125f66b46ba"
289
+ source = "git+https://github.com/psqlpy-python/deadpool.git?branch=psqlpy#c6121f18f69be055f90c94312d1d12cb62e34c11"
294
290
  dependencies = [
295
291
  "deadpool-runtime",
296
292
  "num_cpus",
@@ -300,11 +296,11 @@ dependencies = [
300
296
  [[package]]
301
297
  name = "deadpool-postgres"
302
298
  version = "0.14.0"
303
- source = "git+https://github.com/chandr-andr/deadpool.git?branch=psqlpy#1eab0a5ed96086495847c6069f6b2125f66b46ba"
299
+ source = "git+https://github.com/psqlpy-python/deadpool.git?branch=psqlpy#c6121f18f69be055f90c94312d1d12cb62e34c11"
304
300
  dependencies = [
305
301
  "async-trait",
306
302
  "deadpool",
307
- "getrandom",
303
+ "getrandom 0.2.16",
308
304
  "tokio",
309
305
  "tokio-postgres",
310
306
  "tracing",
@@ -313,7 +309,7 @@ dependencies = [
313
309
  [[package]]
314
310
  name = "deadpool-runtime"
315
311
  version = "0.1.4"
316
- source = "git+https://github.com/chandr-andr/deadpool.git?branch=psqlpy#1eab0a5ed96086495847c6069f6b2125f66b46ba"
312
+ source = "git+https://github.com/psqlpy-python/deadpool.git?branch=psqlpy#c6121f18f69be055f90c94312d1d12cb62e34c11"
317
313
  dependencies = [
318
314
  "tokio",
319
315
  ]
@@ -331,15 +327,15 @@ dependencies = [
331
327
 
332
328
  [[package]]
333
329
  name = "either"
334
- version = "1.13.0"
330
+ version = "1.15.0"
335
331
  source = "registry+https://github.com/rust-lang/crates.io-index"
336
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
332
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
337
333
 
338
334
  [[package]]
339
335
  name = "equivalent"
340
- version = "1.0.1"
336
+ version = "1.0.2"
341
337
  source = "registry+https://github.com/rust-lang/crates.io-index"
342
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
338
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
343
339
 
344
340
  [[package]]
345
341
  name = "fallible-iterator"
@@ -424,7 +420,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
424
420
  dependencies = [
425
421
  "proc-macro2",
426
422
  "quote",
427
- "syn 2.0.72",
423
+ "syn 2.0.104",
428
424
  ]
429
425
 
430
426
  [[package]]
@@ -469,9 +465,9 @@ dependencies = [
469
465
 
470
466
  [[package]]
471
467
  name = "geo-types"
472
- version = "0.7.13"
468
+ version = "0.7.16"
473
469
  source = "registry+https://github.com/rust-lang/crates.io-index"
474
- checksum = "9ff16065e5720f376fbced200a5ae0f47ace85fd70b7e54269790281353b6d61"
470
+ checksum = "62ddb1950450d67efee2bbc5e429c68d052a822de3aad010d28b351fbb705224"
475
471
  dependencies = [
476
472
  "approx",
477
473
  "num-traits",
@@ -480,22 +476,34 @@ dependencies = [
480
476
 
481
477
  [[package]]
482
478
  name = "getrandom"
483
- version = "0.2.15"
479
+ version = "0.2.16"
484
480
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
481
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
486
482
  dependencies = [
487
483
  "cfg-if",
488
484
  "js-sys",
489
485
  "libc",
490
- "wasi",
486
+ "wasi 0.11.1+wasi-snapshot-preview1",
491
487
  "wasm-bindgen",
492
488
  ]
493
489
 
490
+ [[package]]
491
+ name = "getrandom"
492
+ version = "0.3.3"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
495
+ dependencies = [
496
+ "cfg-if",
497
+ "libc",
498
+ "r-efi",
499
+ "wasi 0.14.2+wasi-0.2.4",
500
+ ]
501
+
494
502
  [[package]]
495
503
  name = "gimli"
496
- version = "0.29.0"
504
+ version = "0.31.1"
497
505
  source = "registry+https://github.com/rust-lang/crates.io-index"
498
- checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
506
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
499
507
 
500
508
  [[package]]
501
509
  name = "hashbrown"
@@ -508,9 +516,9 @@ dependencies = [
508
516
 
509
517
  [[package]]
510
518
  name = "hashbrown"
511
- version = "0.14.5"
519
+ version = "0.15.4"
512
520
  source = "registry+https://github.com/rust-lang/crates.io-index"
513
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
521
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
514
522
 
515
523
  [[package]]
516
524
  name = "heck"
@@ -520,9 +528,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
520
528
 
521
529
  [[package]]
522
530
  name = "hermit-abi"
523
- version = "0.3.9"
531
+ version = "0.5.2"
524
532
  source = "registry+https://github.com/rust-lang/crates.io-index"
525
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
533
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
526
534
 
527
535
  [[package]]
528
536
  name = "hmac"
@@ -535,14 +543,15 @@ dependencies = [
535
543
 
536
544
  [[package]]
537
545
  name = "iana-time-zone"
538
- version = "0.1.60"
546
+ version = "0.1.63"
539
547
  source = "registry+https://github.com/rust-lang/crates.io-index"
540
- checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
548
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
541
549
  dependencies = [
542
550
  "android_system_properties",
543
551
  "core-foundation-sys",
544
552
  "iana-time-zone-haiku",
545
553
  "js-sys",
554
+ "log",
546
555
  "wasm-bindgen",
547
556
  "windows-core",
548
557
  ]
@@ -558,25 +567,25 @@ dependencies = [
558
567
 
559
568
  [[package]]
560
569
  name = "indexmap"
561
- version = "2.5.0"
570
+ version = "2.10.0"
562
571
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
- checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
572
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
564
573
  dependencies = [
565
574
  "equivalent",
566
- "hashbrown 0.14.5",
575
+ "hashbrown 0.15.4",
567
576
  ]
568
577
 
569
578
  [[package]]
570
579
  name = "indoc"
571
- version = "2.0.5"
580
+ version = "2.0.6"
572
581
  source = "registry+https://github.com/rust-lang/crates.io-index"
573
- checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
582
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
574
583
 
575
584
  [[package]]
576
585
  name = "inventory"
577
- version = "0.3.17"
586
+ version = "0.3.20"
578
587
  source = "registry+https://github.com/rust-lang/crates.io-index"
579
- checksum = "3b31349d02fe60f80bbbab1a9402364cad7460626d6030494b08ac4a2075bf81"
588
+ checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
580
589
  dependencies = [
581
590
  "rustversion",
582
591
  ]
@@ -592,36 +601,37 @@ dependencies = [
592
601
 
593
602
  [[package]]
594
603
  name = "itoa"
595
- version = "1.0.11"
604
+ version = "1.0.15"
596
605
  source = "registry+https://github.com/rust-lang/crates.io-index"
597
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
606
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
598
607
 
599
608
  [[package]]
600
609
  name = "js-sys"
601
- version = "0.3.69"
610
+ version = "0.3.77"
602
611
  source = "registry+https://github.com/rust-lang/crates.io-index"
603
- checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
612
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
604
613
  dependencies = [
614
+ "once_cell",
605
615
  "wasm-bindgen",
606
616
  ]
607
617
 
608
618
  [[package]]
609
619
  name = "libc"
610
- version = "0.2.155"
620
+ version = "0.2.174"
611
621
  source = "registry+https://github.com/rust-lang/crates.io-index"
612
- checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
622
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
613
623
 
614
624
  [[package]]
615
625
  name = "libm"
616
- version = "0.2.8"
626
+ version = "0.2.15"
617
627
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
628
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
619
629
 
620
630
  [[package]]
621
631
  name = "lock_api"
622
- version = "0.4.12"
632
+ version = "0.4.13"
623
633
  source = "registry+https://github.com/rust-lang/crates.io-index"
624
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
634
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
625
635
  dependencies = [
626
636
  "autocfg",
627
637
  "scopeguard",
@@ -629,9 +639,9 @@ dependencies = [
629
639
 
630
640
  [[package]]
631
641
  name = "log"
632
- version = "0.4.22"
642
+ version = "0.4.27"
633
643
  source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
644
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
635
645
 
636
646
  [[package]]
637
647
  name = "macaddr"
@@ -651,9 +661,9 @@ dependencies = [
651
661
 
652
662
  [[package]]
653
663
  name = "memchr"
654
- version = "2.7.4"
664
+ version = "2.7.5"
655
665
  source = "registry+https://github.com/rust-lang/crates.io-index"
656
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
666
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
657
667
 
658
668
  [[package]]
659
669
  name = "memoffset"
@@ -666,23 +676,22 @@ dependencies = [
666
676
 
667
677
  [[package]]
668
678
  name = "miniz_oxide"
669
- version = "0.7.4"
679
+ version = "0.8.9"
670
680
  source = "registry+https://github.com/rust-lang/crates.io-index"
671
- checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
681
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
672
682
  dependencies = [
673
- "adler",
683
+ "adler2",
674
684
  ]
675
685
 
676
686
  [[package]]
677
687
  name = "mio"
678
- version = "1.0.1"
688
+ version = "1.0.4"
679
689
  source = "registry+https://github.com/rust-lang/crates.io-index"
680
- checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
690
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
681
691
  dependencies = [
682
- "hermit-abi",
683
692
  "libc",
684
- "wasi",
685
- "windows-sys",
693
+ "wasi 0.11.1+wasi-snapshot-preview1",
694
+ "windows-sys 0.59.0",
686
695
  ]
687
696
 
688
697
  [[package]]
@@ -697,9 +706,9 @@ dependencies = [
697
706
 
698
707
  [[package]]
699
708
  name = "num_cpus"
700
- version = "1.16.0"
709
+ version = "1.17.0"
701
710
  source = "registry+https://github.com/rust-lang/crates.io-index"
702
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
711
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
703
712
  dependencies = [
704
713
  "hermit-abi",
705
714
  "libc",
@@ -707,18 +716,18 @@ dependencies = [
707
716
 
708
717
  [[package]]
709
718
  name = "object"
710
- version = "0.36.2"
719
+ version = "0.36.7"
711
720
  source = "registry+https://github.com/rust-lang/crates.io-index"
712
- checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e"
721
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
713
722
  dependencies = [
714
723
  "memchr",
715
724
  ]
716
725
 
717
726
  [[package]]
718
727
  name = "once_cell"
719
- version = "1.20.3"
728
+ version = "1.21.3"
720
729
  source = "registry+https://github.com/rust-lang/crates.io-index"
721
- checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
730
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
722
731
 
723
732
  [[package]]
724
733
  name = "openssl"
@@ -726,7 +735,7 @@ version = "0.10.64"
726
735
  source = "registry+https://github.com/rust-lang/crates.io-index"
727
736
  checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
728
737
  dependencies = [
729
- "bitflags 2.6.0",
738
+ "bitflags",
730
739
  "cfg-if",
731
740
  "foreign-types",
732
741
  "libc",
@@ -743,7 +752,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
743
752
  dependencies = [
744
753
  "proc-macro2",
745
754
  "quote",
746
- "syn 2.0.72",
755
+ "syn 2.0.104",
747
756
  ]
748
757
 
749
758
  [[package]]
@@ -770,9 +779,9 @@ dependencies = [
770
779
 
771
780
  [[package]]
772
781
  name = "parking_lot"
773
- version = "0.12.3"
782
+ version = "0.12.4"
774
783
  source = "registry+https://github.com/rust-lang/crates.io-index"
775
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
784
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
776
785
  dependencies = [
777
786
  "lock_api",
778
787
  "parking_lot_core",
@@ -780,13 +789,13 @@ dependencies = [
780
789
 
781
790
  [[package]]
782
791
  name = "parking_lot_core"
783
- version = "0.9.10"
792
+ version = "0.9.11"
784
793
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
794
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
786
795
  dependencies = [
787
796
  "cfg-if",
788
797
  "libc",
789
- "redox_syscall 0.5.3",
798
+ "redox_syscall",
790
799
  "smallvec",
791
800
  "windows-targets",
792
801
  ]
@@ -809,7 +818,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
809
818
  [[package]]
810
819
  name = "pg_interval"
811
820
  version = "0.4.2"
812
- source = "git+https://github.com/chandr-andr/rust-postgres-interval.git?branch=psqlpy#901cb1226daa5cc045b44f658c2952bdfdd263ad"
821
+ source = "git+https://github.com/psqlpy-python/rust-postgres-interval.git?branch=psqlpy#7b407180ddc6653157163152efa29798163ffde2"
813
822
  dependencies = [
814
823
  "bytes",
815
824
  "chrono",
@@ -819,7 +828,7 @@ dependencies = [
819
828
  [[package]]
820
829
  name = "pgvector"
821
830
  version = "0.4.0"
822
- source = "git+https://github.com/chandr-andr/pgvector-rust.git?branch=psqlpy#b97529995981b66f3ebb5f0b0eb2f3c7447461c3"
831
+ source = "git+https://github.com/psqlpy-python/pgvector-rust.git?branch=psqlpy#311434c6963b8074dee693ce6e73651d1eafc349"
823
832
  dependencies = [
824
833
  "bytes",
825
834
  "postgres-types",
@@ -827,18 +836,18 @@ dependencies = [
827
836
 
828
837
  [[package]]
829
838
  name = "phf"
830
- version = "0.11.2"
839
+ version = "0.11.3"
831
840
  source = "registry+https://github.com/rust-lang/crates.io-index"
832
- checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
841
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
833
842
  dependencies = [
834
843
  "phf_shared",
835
844
  ]
836
845
 
837
846
  [[package]]
838
847
  name = "phf_codegen"
839
- version = "0.11.2"
848
+ version = "0.11.3"
840
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
841
- checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
850
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
842
851
  dependencies = [
843
852
  "phf_generator",
844
853
  "phf_shared",
@@ -846,9 +855,9 @@ dependencies = [
846
855
 
847
856
  [[package]]
848
857
  name = "phf_generator"
849
- version = "0.11.2"
858
+ version = "0.11.3"
850
859
  source = "registry+https://github.com/rust-lang/crates.io-index"
851
- checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
860
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
852
861
  dependencies = [
853
862
  "phf_shared",
854
863
  "rand",
@@ -856,18 +865,18 @@ dependencies = [
856
865
 
857
866
  [[package]]
858
867
  name = "phf_shared"
859
- version = "0.11.2"
868
+ version = "0.11.3"
860
869
  source = "registry+https://github.com/rust-lang/crates.io-index"
861
- checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
870
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
862
871
  dependencies = [
863
872
  "siphasher",
864
873
  ]
865
874
 
866
875
  [[package]]
867
876
  name = "pin-project-lite"
868
- version = "0.2.14"
877
+ version = "0.2.16"
869
878
  source = "registry+https://github.com/rust-lang/crates.io-index"
870
- checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
879
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
871
880
 
872
881
  [[package]]
873
882
  name = "pin-utils"
@@ -877,31 +886,31 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
877
886
 
878
887
  [[package]]
879
888
  name = "pkg-config"
880
- version = "0.3.30"
889
+ version = "0.3.32"
881
890
  source = "registry+https://github.com/rust-lang/crates.io-index"
882
- checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
891
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
883
892
 
884
893
  [[package]]
885
894
  name = "portable-atomic"
886
- version = "1.7.0"
895
+ version = "1.11.1"
887
896
  source = "registry+https://github.com/rust-lang/crates.io-index"
888
- checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
897
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
889
898
 
890
899
  [[package]]
891
900
  name = "postgres-derive"
892
901
  version = "0.4.5"
893
- source = "git+https://github.com/chandr-andr/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
902
+ source = "git+https://github.com/psqlpy-python/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
894
903
  dependencies = [
895
904
  "heck",
896
905
  "proc-macro2",
897
906
  "quote",
898
- "syn 2.0.72",
907
+ "syn 2.0.104",
899
908
  ]
900
909
 
901
910
  [[package]]
902
911
  name = "postgres-openssl"
903
912
  version = "0.5.0"
904
- source = "git+https://github.com/chandr-andr/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
913
+ source = "git+https://github.com/psqlpy-python/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
905
914
  dependencies = [
906
915
  "openssl",
907
916
  "tokio",
@@ -912,7 +921,7 @@ dependencies = [
912
921
  [[package]]
913
922
  name = "postgres-protocol"
914
923
  version = "0.6.7"
915
- source = "git+https://github.com/chandr-andr/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
924
+ source = "git+https://github.com/psqlpy-python/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
916
925
  dependencies = [
917
926
  "base64",
918
927
  "byteorder",
@@ -929,7 +938,7 @@ dependencies = [
929
938
  [[package]]
930
939
  name = "postgres-types"
931
940
  version = "0.2.7"
932
- source = "git+https://github.com/chandr-andr/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
941
+ source = "git+https://github.com/psqlpy-python/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
933
942
  dependencies = [
934
943
  "array-init",
935
944
  "bytes",
@@ -946,7 +955,7 @@ dependencies = [
946
955
  [[package]]
947
956
  name = "postgres_array"
948
957
  version = "0.11.1"
949
- source = "git+https://github.com/chandr-andr/rust-postgres-array.git?branch=psqlpy#44383e9808edabb595df5d157eecca6f73100023"
958
+ source = "git+https://github.com/psqlpy-python/rust-postgres-array.git?branch=psqlpy#510ffe38b8c34c7fed6b59f0b4e38f85f0040900"
950
959
  dependencies = [
951
960
  "bytes",
952
961
  "fallible-iterator",
@@ -956,57 +965,34 @@ dependencies = [
956
965
 
957
966
  [[package]]
958
967
  name = "ppv-lite86"
959
- version = "0.2.20"
968
+ version = "0.2.21"
960
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
961
- checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
970
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
962
971
  dependencies = [
963
972
  "zerocopy",
964
973
  ]
965
974
 
966
975
  [[package]]
967
976
  name = "proc-macro-crate"
968
- version = "3.2.0"
977
+ version = "3.3.0"
969
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
970
- checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
979
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
971
980
  dependencies = [
972
981
  "toml_edit",
973
982
  ]
974
983
 
975
- [[package]]
976
- name = "proc-macro-error"
977
- version = "1.0.4"
978
- source = "registry+https://github.com/rust-lang/crates.io-index"
979
- checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
980
- dependencies = [
981
- "proc-macro-error-attr",
982
- "proc-macro2",
983
- "quote",
984
- "version_check",
985
- ]
986
-
987
- [[package]]
988
- name = "proc-macro-error-attr"
989
- version = "1.0.4"
990
- source = "registry+https://github.com/rust-lang/crates.io-index"
991
- checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
992
- dependencies = [
993
- "proc-macro2",
994
- "quote",
995
- "version_check",
996
- ]
997
-
998
984
  [[package]]
999
985
  name = "proc-macro2"
1000
- version = "1.0.86"
986
+ version = "1.0.95"
1001
987
  source = "registry+https://github.com/rust-lang/crates.io-index"
1002
- checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
988
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1003
989
  dependencies = [
1004
990
  "unicode-ident",
1005
991
  ]
1006
992
 
1007
993
  [[package]]
1008
994
  name = "psqlpy"
1009
- version = "0.11.2"
995
+ version = "0.11.3"
1010
996
  dependencies = [
1011
997
  "byteorder",
1012
998
  "bytes",
@@ -1077,14 +1063,14 @@ dependencies = [
1077
1063
  "pyo3-build-config",
1078
1064
  "pyo3-ffi",
1079
1065
  "pyo3-macros",
1080
- "rust_decimal 1.35.0",
1066
+ "rust_decimal 1.37.2",
1081
1067
  "unindent",
1082
1068
  ]
1083
1069
 
1084
1070
  [[package]]
1085
1071
  name = "pyo3-async-runtimes"
1086
1072
  version = "0.25.0"
1087
- source = "git+https://github.com/chandr-andr/pyo3-async-runtimes.git?branch=psqlpy#74cd232b0606cd9e0dcab291bd10a8cadf69a1ed"
1073
+ source = "git+https://github.com/psqlpy-python/pyo3-async-runtimes.git?branch=psqlpy#74cd232b0606cd9e0dcab291bd10a8cadf69a1ed"
1088
1074
  dependencies = [
1089
1075
  "futures",
1090
1076
  "once_cell",
@@ -1122,7 +1108,7 @@ dependencies = [
1122
1108
  "proc-macro2",
1123
1109
  "pyo3-macros-backend",
1124
1110
  "quote",
1125
- "syn 2.0.72",
1111
+ "syn 2.0.104",
1126
1112
  ]
1127
1113
 
1128
1114
  [[package]]
@@ -1135,18 +1121,24 @@ dependencies = [
1135
1121
  "proc-macro2",
1136
1122
  "pyo3-build-config",
1137
1123
  "quote",
1138
- "syn 2.0.72",
1124
+ "syn 2.0.104",
1139
1125
  ]
1140
1126
 
1141
1127
  [[package]]
1142
1128
  name = "quote"
1143
- version = "1.0.36"
1129
+ version = "1.0.40"
1144
1130
  source = "registry+https://github.com/rust-lang/crates.io-index"
1145
- checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
1131
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1146
1132
  dependencies = [
1147
1133
  "proc-macro2",
1148
1134
  ]
1149
1135
 
1136
+ [[package]]
1137
+ name = "r-efi"
1138
+ version = "5.3.0"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1141
+
1150
1142
  [[package]]
1151
1143
  name = "radium"
1152
1144
  version = "0.7.0"
@@ -1180,25 +1172,16 @@ version = "0.6.4"
1180
1172
  source = "registry+https://github.com/rust-lang/crates.io-index"
1181
1173
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1182
1174
  dependencies = [
1183
- "getrandom",
1184
- ]
1185
-
1186
- [[package]]
1187
- name = "redox_syscall"
1188
- version = "0.4.1"
1189
- source = "registry+https://github.com/rust-lang/crates.io-index"
1190
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1191
- dependencies = [
1192
- "bitflags 1.3.2",
1175
+ "getrandom 0.2.16",
1193
1176
  ]
1194
1177
 
1195
1178
  [[package]]
1196
1179
  name = "redox_syscall"
1197
- version = "0.5.3"
1180
+ version = "0.5.13"
1198
1181
  source = "registry+https://github.com/rust-lang/crates.io-index"
1199
- checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
1182
+ checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
1200
1183
  dependencies = [
1201
- "bitflags 2.6.0",
1184
+ "bitflags",
1202
1185
  ]
1203
1186
 
1204
1187
  [[package]]
@@ -1268,20 +1251,10 @@ dependencies = [
1268
1251
  "syn 1.0.109",
1269
1252
  ]
1270
1253
 
1271
- [[package]]
1272
- name = "rust_decimal"
1273
- version = "1.35.0"
1274
- source = "registry+https://github.com/rust-lang/crates.io-index"
1275
- checksum = "1790d1c4c0ca81211399e0e0af16333276f375209e71a37b67698a373db5b47a"
1276
- dependencies = [
1277
- "arrayvec",
1278
- "num-traits",
1279
- ]
1280
-
1281
1254
  [[package]]
1282
1255
  name = "rust_decimal"
1283
1256
  version = "1.36.0"
1284
- source = "git+https://github.com/chandr-andr/rust-decimal.git?branch=psqlpy#b262d1ead78f1114305674600a7e162305d6ae47"
1257
+ source = "git+https://github.com/psqlpy-python/rust-decimal.git?branch=psqlpy#df8c0eee39c08ea3b5d7f0f24249137c67baaae5"
1285
1258
  dependencies = [
1286
1259
  "arrayvec",
1287
1260
  "borsh",
@@ -1294,23 +1267,33 @@ dependencies = [
1294
1267
  "serde_json",
1295
1268
  ]
1296
1269
 
1270
+ [[package]]
1271
+ name = "rust_decimal"
1272
+ version = "1.37.2"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
1275
+ dependencies = [
1276
+ "arrayvec",
1277
+ "num-traits",
1278
+ ]
1279
+
1297
1280
  [[package]]
1298
1281
  name = "rustc-demangle"
1299
- version = "0.1.24"
1282
+ version = "0.1.25"
1300
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
1301
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1284
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
1302
1285
 
1303
1286
  [[package]]
1304
1287
  name = "rustversion"
1305
- version = "1.0.20"
1288
+ version = "1.0.21"
1306
1289
  source = "registry+https://github.com/rust-lang/crates.io-index"
1307
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
1290
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1308
1291
 
1309
1292
  [[package]]
1310
1293
  name = "ryu"
1311
- version = "1.0.18"
1294
+ version = "1.0.20"
1312
1295
  source = "registry+https://github.com/rust-lang/crates.io-index"
1313
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1296
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1314
1297
 
1315
1298
  [[package]]
1316
1299
  name = "scopeguard"
@@ -1326,29 +1309,29 @@ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1326
1309
 
1327
1310
  [[package]]
1328
1311
  name = "serde"
1329
- version = "1.0.205"
1312
+ version = "1.0.219"
1330
1313
  source = "registry+https://github.com/rust-lang/crates.io-index"
1331
- checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150"
1314
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1332
1315
  dependencies = [
1333
1316
  "serde_derive",
1334
1317
  ]
1335
1318
 
1336
1319
  [[package]]
1337
1320
  name = "serde_derive"
1338
- version = "1.0.205"
1321
+ version = "1.0.219"
1339
1322
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1"
1323
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1341
1324
  dependencies = [
1342
1325
  "proc-macro2",
1343
1326
  "quote",
1344
- "syn 2.0.72",
1327
+ "syn 2.0.104",
1345
1328
  ]
1346
1329
 
1347
1330
  [[package]]
1348
1331
  name = "serde_json"
1349
- version = "1.0.122"
1332
+ version = "1.0.140"
1350
1333
  source = "registry+https://github.com/rust-lang/crates.io-index"
1351
- checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da"
1334
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1352
1335
  dependencies = [
1353
1336
  "itoa",
1354
1337
  "memchr",
@@ -1358,59 +1341,62 @@ dependencies = [
1358
1341
 
1359
1342
  [[package]]
1360
1343
  name = "sha2"
1361
- version = "0.10.8"
1344
+ version = "0.10.9"
1362
1345
  source = "registry+https://github.com/rust-lang/crates.io-index"
1363
- checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1346
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1364
1347
  dependencies = [
1365
1348
  "cfg-if",
1366
1349
  "cpufeatures",
1367
1350
  "digest",
1368
1351
  ]
1369
1352
 
1353
+ [[package]]
1354
+ name = "shlex"
1355
+ version = "1.3.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1358
+
1370
1359
  [[package]]
1371
1360
  name = "signal-hook-registry"
1372
- version = "1.4.2"
1361
+ version = "1.4.5"
1373
1362
  source = "registry+https://github.com/rust-lang/crates.io-index"
1374
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1363
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
1375
1364
  dependencies = [
1376
1365
  "libc",
1377
1366
  ]
1378
1367
 
1379
1368
  [[package]]
1380
1369
  name = "simdutf8"
1381
- version = "0.1.4"
1370
+ version = "0.1.5"
1382
1371
  source = "registry+https://github.com/rust-lang/crates.io-index"
1383
- checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
1372
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1384
1373
 
1385
1374
  [[package]]
1386
1375
  name = "siphasher"
1387
- version = "0.3.11"
1376
+ version = "1.0.1"
1388
1377
  source = "registry+https://github.com/rust-lang/crates.io-index"
1389
- checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
1378
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1390
1379
 
1391
1380
  [[package]]
1392
1381
  name = "slab"
1393
- version = "0.4.9"
1382
+ version = "0.4.10"
1394
1383
  source = "registry+https://github.com/rust-lang/crates.io-index"
1395
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1396
- dependencies = [
1397
- "autocfg",
1398
- ]
1384
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
1399
1385
 
1400
1386
  [[package]]
1401
1387
  name = "smallvec"
1402
- version = "1.13.2"
1388
+ version = "1.15.1"
1403
1389
  source = "registry+https://github.com/rust-lang/crates.io-index"
1404
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1390
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1405
1391
 
1406
1392
  [[package]]
1407
1393
  name = "socket2"
1408
- version = "0.5.7"
1394
+ version = "0.5.10"
1409
1395
  source = "registry+https://github.com/rust-lang/crates.io-index"
1410
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
1396
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1411
1397
  dependencies = [
1412
1398
  "libc",
1413
- "windows-sys",
1399
+ "windows-sys 0.52.0",
1414
1400
  ]
1415
1401
 
1416
1402
  [[package]]
@@ -1443,27 +1429,15 @@ dependencies = [
1443
1429
 
1444
1430
  [[package]]
1445
1431
  name = "syn"
1446
- version = "2.0.72"
1432
+ version = "2.0.104"
1447
1433
  source = "registry+https://github.com/rust-lang/crates.io-index"
1448
- checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
1434
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1449
1435
  dependencies = [
1450
1436
  "proc-macro2",
1451
1437
  "quote",
1452
1438
  "unicode-ident",
1453
1439
  ]
1454
1440
 
1455
- [[package]]
1456
- name = "syn_derive"
1457
- version = "0.1.8"
1458
- source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b"
1460
- dependencies = [
1461
- "proc-macro-error",
1462
- "proc-macro2",
1463
- "quote",
1464
- "syn 2.0.72",
1465
- ]
1466
-
1467
1441
  [[package]]
1468
1442
  name = "tap"
1469
1443
  version = "1.0.1"
@@ -1478,29 +1452,29 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1478
1452
 
1479
1453
  [[package]]
1480
1454
  name = "thiserror"
1481
- version = "1.0.63"
1455
+ version = "1.0.69"
1482
1456
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
1457
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1484
1458
  dependencies = [
1485
1459
  "thiserror-impl",
1486
1460
  ]
1487
1461
 
1488
1462
  [[package]]
1489
1463
  name = "thiserror-impl"
1490
- version = "1.0.63"
1464
+ version = "1.0.69"
1491
1465
  source = "registry+https://github.com/rust-lang/crates.io-index"
1492
- checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
1466
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1493
1467
  dependencies = [
1494
1468
  "proc-macro2",
1495
1469
  "quote",
1496
- "syn 2.0.72",
1470
+ "syn 2.0.104",
1497
1471
  ]
1498
1472
 
1499
1473
  [[package]]
1500
1474
  name = "tinyvec"
1501
- version = "1.8.0"
1475
+ version = "1.9.0"
1502
1476
  source = "registry+https://github.com/rust-lang/crates.io-index"
1503
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
1477
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
1504
1478
  dependencies = [
1505
1479
  "tinyvec_macros",
1506
1480
  ]
@@ -1513,9 +1487,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1513
1487
 
1514
1488
  [[package]]
1515
1489
  name = "tokio"
1516
- version = "1.39.2"
1490
+ version = "1.45.1"
1517
1491
  source = "registry+https://github.com/rust-lang/crates.io-index"
1518
- checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
1492
+ checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
1519
1493
  dependencies = [
1520
1494
  "backtrace",
1521
1495
  "bytes",
@@ -1526,27 +1500,26 @@ dependencies = [
1526
1500
  "signal-hook-registry",
1527
1501
  "socket2",
1528
1502
  "tokio-macros",
1529
- "windows-sys",
1503
+ "windows-sys 0.52.0",
1530
1504
  ]
1531
1505
 
1532
1506
  [[package]]
1533
1507
  name = "tokio-macros"
1534
- version = "2.4.0"
1508
+ version = "2.5.0"
1535
1509
  source = "registry+https://github.com/rust-lang/crates.io-index"
1536
- checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
1510
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1537
1511
  dependencies = [
1538
1512
  "proc-macro2",
1539
1513
  "quote",
1540
- "syn 2.0.72",
1514
+ "syn 2.0.104",
1541
1515
  ]
1542
1516
 
1543
1517
  [[package]]
1544
1518
  name = "tokio-openssl"
1545
- version = "0.6.4"
1519
+ version = "0.6.5"
1546
1520
  source = "registry+https://github.com/rust-lang/crates.io-index"
1547
- checksum = "6ffab79df67727f6acf57f1ff743091873c24c579b1e2ce4d8f53e47ded4d63d"
1521
+ checksum = "59df6849caa43bb7567f9a36f863c447d95a11d5903c9cc334ba32576a27eadd"
1548
1522
  dependencies = [
1549
- "futures-util",
1550
1523
  "openssl",
1551
1524
  "openssl-sys",
1552
1525
  "tokio",
@@ -1555,7 +1528,7 @@ dependencies = [
1555
1528
  [[package]]
1556
1529
  name = "tokio-postgres"
1557
1530
  version = "0.7.11"
1558
- source = "git+https://github.com/chandr-andr/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
1531
+ source = "git+https://github.com/psqlpy-python/rust-postgres.git?branch=psqlpy#5780895bfa8a0b9142df225b65bc6e59f7dbee61"
1559
1532
  dependencies = [
1560
1533
  "async-trait",
1561
1534
  "byteorder",
@@ -1579,9 +1552,9 @@ dependencies = [
1579
1552
 
1580
1553
  [[package]]
1581
1554
  name = "tokio-util"
1582
- version = "0.7.11"
1555
+ version = "0.7.15"
1583
1556
  source = "registry+https://github.com/rust-lang/crates.io-index"
1584
- checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
1557
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
1585
1558
  dependencies = [
1586
1559
  "bytes",
1587
1560
  "futures-core",
@@ -1592,15 +1565,15 @@ dependencies = [
1592
1565
 
1593
1566
  [[package]]
1594
1567
  name = "toml_datetime"
1595
- version = "0.6.8"
1568
+ version = "0.6.11"
1596
1569
  source = "registry+https://github.com/rust-lang/crates.io-index"
1597
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
1570
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1598
1571
 
1599
1572
  [[package]]
1600
1573
  name = "toml_edit"
1601
- version = "0.22.20"
1574
+ version = "0.22.27"
1602
1575
  source = "registry+https://github.com/rust-lang/crates.io-index"
1603
- checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
1576
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1604
1577
  dependencies = [
1605
1578
  "indexmap",
1606
1579
  "toml_datetime",
@@ -1609,9 +1582,9 @@ dependencies = [
1609
1582
 
1610
1583
  [[package]]
1611
1584
  name = "tracing"
1612
- version = "0.1.40"
1585
+ version = "0.1.41"
1613
1586
  source = "registry+https://github.com/rust-lang/crates.io-index"
1614
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
1587
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1615
1588
  dependencies = [
1616
1589
  "pin-project-lite",
1617
1590
  "tracing-attributes",
@@ -1620,70 +1593,72 @@ dependencies = [
1620
1593
 
1621
1594
  [[package]]
1622
1595
  name = "tracing-attributes"
1623
- version = "0.1.27"
1596
+ version = "0.1.30"
1624
1597
  source = "registry+https://github.com/rust-lang/crates.io-index"
1625
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
1598
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
1626
1599
  dependencies = [
1627
1600
  "proc-macro2",
1628
1601
  "quote",
1629
- "syn 2.0.72",
1602
+ "syn 2.0.104",
1630
1603
  ]
1631
1604
 
1632
1605
  [[package]]
1633
1606
  name = "tracing-core"
1634
- version = "0.1.32"
1607
+ version = "0.1.34"
1635
1608
  source = "registry+https://github.com/rust-lang/crates.io-index"
1636
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
1609
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1637
1610
  dependencies = [
1638
1611
  "once_cell",
1639
1612
  ]
1640
1613
 
1641
1614
  [[package]]
1642
1615
  name = "typenum"
1643
- version = "1.17.0"
1616
+ version = "1.18.0"
1644
1617
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1618
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1646
1619
 
1647
1620
  [[package]]
1648
1621
  name = "unicode-bidi"
1649
- version = "0.3.15"
1622
+ version = "0.3.18"
1650
1623
  source = "registry+https://github.com/rust-lang/crates.io-index"
1651
- checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
1624
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1652
1625
 
1653
1626
  [[package]]
1654
1627
  name = "unicode-ident"
1655
- version = "1.0.12"
1628
+ version = "1.0.18"
1656
1629
  source = "registry+https://github.com/rust-lang/crates.io-index"
1657
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1630
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1658
1631
 
1659
1632
  [[package]]
1660
1633
  name = "unicode-normalization"
1661
- version = "0.1.23"
1634
+ version = "0.1.24"
1662
1635
  source = "registry+https://github.com/rust-lang/crates.io-index"
1663
- checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
1636
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
1664
1637
  dependencies = [
1665
1638
  "tinyvec",
1666
1639
  ]
1667
1640
 
1668
1641
  [[package]]
1669
1642
  name = "unicode-properties"
1670
- version = "0.1.1"
1643
+ version = "0.1.3"
1671
1644
  source = "registry+https://github.com/rust-lang/crates.io-index"
1672
- checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291"
1645
+ checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
1673
1646
 
1674
1647
  [[package]]
1675
1648
  name = "unindent"
1676
- version = "0.2.3"
1649
+ version = "0.2.4"
1677
1650
  source = "registry+https://github.com/rust-lang/crates.io-index"
1678
- checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1651
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1679
1652
 
1680
1653
  [[package]]
1681
1654
  name = "uuid"
1682
- version = "1.10.0"
1655
+ version = "1.17.0"
1683
1656
  source = "registry+https://github.com/rust-lang/crates.io-index"
1684
- checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
1657
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
1685
1658
  dependencies = [
1686
- "getrandom",
1659
+ "getrandom 0.3.3",
1660
+ "js-sys",
1661
+ "wasm-bindgen",
1687
1662
  ]
1688
1663
 
1689
1664
  [[package]]
@@ -1700,9 +1675,18 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1700
1675
 
1701
1676
  [[package]]
1702
1677
  name = "wasi"
1703
- version = "0.11.0+wasi-snapshot-preview1"
1678
+ version = "0.11.1+wasi-snapshot-preview1"
1704
1679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1705
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1680
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1681
+
1682
+ [[package]]
1683
+ name = "wasi"
1684
+ version = "0.14.2+wasi-0.2.4"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1687
+ dependencies = [
1688
+ "wit-bindgen-rt",
1689
+ ]
1706
1690
 
1707
1691
  [[package]]
1708
1692
  name = "wasite"
@@ -1712,34 +1696,35 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
1712
1696
 
1713
1697
  [[package]]
1714
1698
  name = "wasm-bindgen"
1715
- version = "0.2.92"
1699
+ version = "0.2.100"
1716
1700
  source = "registry+https://github.com/rust-lang/crates.io-index"
1717
- checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
1701
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1718
1702
  dependencies = [
1719
1703
  "cfg-if",
1704
+ "once_cell",
1705
+ "rustversion",
1720
1706
  "wasm-bindgen-macro",
1721
1707
  ]
1722
1708
 
1723
1709
  [[package]]
1724
1710
  name = "wasm-bindgen-backend"
1725
- version = "0.2.92"
1711
+ version = "0.2.100"
1726
1712
  source = "registry+https://github.com/rust-lang/crates.io-index"
1727
- checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
1713
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1728
1714
  dependencies = [
1729
1715
  "bumpalo",
1730
1716
  "log",
1731
- "once_cell",
1732
1717
  "proc-macro2",
1733
1718
  "quote",
1734
- "syn 2.0.72",
1719
+ "syn 2.0.104",
1735
1720
  "wasm-bindgen-shared",
1736
1721
  ]
1737
1722
 
1738
1723
  [[package]]
1739
1724
  name = "wasm-bindgen-macro"
1740
- version = "0.2.92"
1725
+ version = "0.2.100"
1741
1726
  source = "registry+https://github.com/rust-lang/crates.io-index"
1742
- checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
1727
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1743
1728
  dependencies = [
1744
1729
  "quote",
1745
1730
  "wasm-bindgen-macro-support",
@@ -1747,28 +1732,31 @@ dependencies = [
1747
1732
 
1748
1733
  [[package]]
1749
1734
  name = "wasm-bindgen-macro-support"
1750
- version = "0.2.92"
1735
+ version = "0.2.100"
1751
1736
  source = "registry+https://github.com/rust-lang/crates.io-index"
1752
- checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
1737
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1753
1738
  dependencies = [
1754
1739
  "proc-macro2",
1755
1740
  "quote",
1756
- "syn 2.0.72",
1741
+ "syn 2.0.104",
1757
1742
  "wasm-bindgen-backend",
1758
1743
  "wasm-bindgen-shared",
1759
1744
  ]
1760
1745
 
1761
1746
  [[package]]
1762
1747
  name = "wasm-bindgen-shared"
1763
- version = "0.2.92"
1748
+ version = "0.2.100"
1764
1749
  source = "registry+https://github.com/rust-lang/crates.io-index"
1765
- checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
1750
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1751
+ dependencies = [
1752
+ "unicode-ident",
1753
+ ]
1766
1754
 
1767
1755
  [[package]]
1768
1756
  name = "web-sys"
1769
- version = "0.3.69"
1757
+ version = "0.3.77"
1770
1758
  source = "registry+https://github.com/rust-lang/crates.io-index"
1771
- checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
1759
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
1772
1760
  dependencies = [
1773
1761
  "js-sys",
1774
1762
  "wasm-bindgen",
@@ -1776,22 +1764,72 @@ dependencies = [
1776
1764
 
1777
1765
  [[package]]
1778
1766
  name = "whoami"
1779
- version = "1.5.1"
1767
+ version = "1.6.0"
1780
1768
  source = "registry+https://github.com/rust-lang/crates.io-index"
1781
- checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
1769
+ checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7"
1782
1770
  dependencies = [
1783
- "redox_syscall 0.4.1",
1771
+ "redox_syscall",
1784
1772
  "wasite",
1785
1773
  "web-sys",
1786
1774
  ]
1787
1775
 
1788
1776
  [[package]]
1789
1777
  name = "windows-core"
1790
- version = "0.52.0"
1778
+ version = "0.61.2"
1791
1779
  source = "registry+https://github.com/rust-lang/crates.io-index"
1792
- checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1780
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
1793
1781
  dependencies = [
1794
- "windows-targets",
1782
+ "windows-implement",
1783
+ "windows-interface",
1784
+ "windows-link",
1785
+ "windows-result",
1786
+ "windows-strings",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "windows-implement"
1791
+ version = "0.60.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
1794
+ dependencies = [
1795
+ "proc-macro2",
1796
+ "quote",
1797
+ "syn 2.0.104",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "windows-interface"
1802
+ version = "0.59.1"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
1805
+ dependencies = [
1806
+ "proc-macro2",
1807
+ "quote",
1808
+ "syn 2.0.104",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "windows-link"
1813
+ version = "0.1.3"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1816
+
1817
+ [[package]]
1818
+ name = "windows-result"
1819
+ version = "0.3.4"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
1822
+ dependencies = [
1823
+ "windows-link",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "windows-strings"
1828
+ version = "0.4.2"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
1831
+ dependencies = [
1832
+ "windows-link",
1795
1833
  ]
1796
1834
 
1797
1835
  [[package]]
@@ -1803,6 +1841,15 @@ dependencies = [
1803
1841
  "windows-targets",
1804
1842
  ]
1805
1843
 
1844
+ [[package]]
1845
+ name = "windows-sys"
1846
+ version = "0.59.0"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1849
+ dependencies = [
1850
+ "windows-targets",
1851
+ ]
1852
+
1806
1853
  [[package]]
1807
1854
  name = "windows-targets"
1808
1855
  version = "0.52.6"
@@ -1869,13 +1916,22 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1869
1916
 
1870
1917
  [[package]]
1871
1918
  name = "winnow"
1872
- version = "0.6.18"
1919
+ version = "0.7.11"
1873
1920
  source = "registry+https://github.com/rust-lang/crates.io-index"
1874
- checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
1921
+ checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
1875
1922
  dependencies = [
1876
1923
  "memchr",
1877
1924
  ]
1878
1925
 
1926
+ [[package]]
1927
+ name = "wit-bindgen-rt"
1928
+ version = "0.39.0"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1931
+ dependencies = [
1932
+ "bitflags",
1933
+ ]
1934
+
1879
1935
  [[package]]
1880
1936
  name = "wyz"
1881
1937
  version = "0.5.1"
@@ -1887,21 +1943,20 @@ dependencies = [
1887
1943
 
1888
1944
  [[package]]
1889
1945
  name = "zerocopy"
1890
- version = "0.7.35"
1946
+ version = "0.8.26"
1891
1947
  source = "registry+https://github.com/rust-lang/crates.io-index"
1892
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
1948
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
1893
1949
  dependencies = [
1894
- "byteorder",
1895
1950
  "zerocopy-derive",
1896
1951
  ]
1897
1952
 
1898
1953
  [[package]]
1899
1954
  name = "zerocopy-derive"
1900
- version = "0.7.35"
1955
+ version = "0.8.26"
1901
1956
  source = "registry+https://github.com/rust-lang/crates.io-index"
1902
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
1957
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
1903
1958
  dependencies = [
1904
1959
  "proc-macro2",
1905
1960
  "quote",
1906
- "syn 2.0.72",
1961
+ "syn 2.0.104",
1907
1962
  ]