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.
- {psqlpy-0.11.2 → psqlpy-0.11.3}/Cargo.lock +367 -312
- psqlpy-0.11.3/Cargo.toml +65 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/PKG-INFO +1 -1
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/sidebar.ts +1 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/connection.md +1 -1
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/results.md +22 -2
- psqlpy-0.11.3/docs/usage/frameworks/panther.md +48 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/__init__.pyi +108 -3
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/conftest.py +45 -38
- psqlpy-0.11.3/python/tests/test_query_results.py +76 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_value_converter.py +29 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/impls.rs +77 -32
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/common.rs +66 -52
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/connection.rs +14 -3
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/query_result.rs +54 -7
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/funcs.rs +1 -1
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/serde_value.rs +68 -59
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/to_python.rs +50 -38
- psqlpy-0.11.2/Cargo.toml +0 -65
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/actions/setup_postgres/action.yaml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/pull_request_template.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/workflows/release.yml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/workflows/release_docs.yaml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.github/workflows/test.yaml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.gitignore +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/.pre-commit-config.yaml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/LICENSE +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/README.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/config.ts +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/public/logo.png +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/styles/config.scss +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/styles/index.scss +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/.vuepress/styles/palette.scss +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/README.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/benchmarks.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/components_overview.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/connection_pool.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/connection_pool_builder.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/cursor.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/exceptions.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/listener.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/prepared_statement.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/components/transaction.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/contribute.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/external_connection_pools.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/faq.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/integrations/opentelemetry.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/integrations/taskiq.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/introduction/components_overview.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/introduction/introduction.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/introduction/lets_start.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/aiohttp.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/blacksheep.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/fastapi.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/frameworks.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/litestar.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/frameworks/robyn.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/parameters.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/row_factories/predefined_row_factories.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/row_factories/row_factories.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/advanced_type_usage.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/array_types.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/extra_types.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/supported_types.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/types/types.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/docs/usage/usage.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/examples/aiohttp/start_example.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/examples/fastapi/advanced_example.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/examples/fastapi/start_example.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/package.json +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/pnpm-lock.yaml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/.gitignore +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/.pre-commit-config.yaml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/Dockerfile +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/README.md +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/alembic.ini +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/poetry.lock +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/__init__.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/api/__init__.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/api/piccolo.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/api/plain_queries.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/app.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/helpers.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/lifecycle.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/README +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/env.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/script.py.mako +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/versions/06d989926550_basic_user_table.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/migrations/versions/d162c084f522_big_af_table.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/mocker.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/models/__init__.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/models/piccolo.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/models/sqlalchemy.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/piccolo_conf.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/psqlpy_stress/settings.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/psqlpy-stress/pyproject.toml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/pyproject.toml +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/__init__.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/exceptions.pyi +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/extra_types.pyi +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/_internal/row_factories.pyi +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/exceptions.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/extra_types.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/py.typed +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/psqlpy/row_factories.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/__init__.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/helpers.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_binary_copy.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_connection.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_connection_pool.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_connection_pool_builder.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_cursor.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_data/MTcars.parquet +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_kwargs_parameters.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_listener.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_row_factories.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_ssl_mode.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/python/tests/test_transaction.py +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/common.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/structs.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/connection/traits.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/connection_pool.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/connection_pool_builder.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/cursor.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/listener/core.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/listener/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/listener/structs.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/prepared_statement.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/transaction.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/driver/utils.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/exceptions/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/exceptions/python_errors.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/exceptions/rust_errors.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/extra_types.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/format_helpers.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/lib.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/options.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/row_factories.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/runtime.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/cache.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/parameters.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/query.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/statement.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/statement_builder.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/statement/utils.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/transaction/impls.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/transaction/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/transaction/structs.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/additional_types.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/consts.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/converter_impls.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/enums.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/impls.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/dto/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/from_python.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/decimal.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/interval.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/mod.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/models/uuid.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/traits.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/src/value_converter/utils.rs +0 -0
- {psqlpy-0.11.2 → psqlpy-0.11.3}/tox.ini +0 -0
- {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.
|
|
7
|
+
version = "0.24.2"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
|
-
name = "
|
|
16
|
-
version = "
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
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.
|
|
72
|
+
version = "0.7.6"
|
|
73
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "
|
|
74
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
75
75
|
|
|
76
76
|
[[package]]
|
|
77
77
|
name = "async-trait"
|
|
78
|
-
version = "0.1.
|
|
78
|
+
version = "0.1.88"
|
|
79
79
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
80
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
81
81
|
dependencies = [
|
|
82
82
|
"proc-macro2",
|
|
83
83
|
"quote",
|
|
84
|
-
"syn 2.0.
|
|
84
|
+
"syn 2.0.104",
|
|
85
85
|
]
|
|
86
86
|
|
|
87
87
|
[[package]]
|
|
88
88
|
name = "autocfg"
|
|
89
|
-
version = "1.
|
|
89
|
+
version = "1.5.0"
|
|
90
90
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
91
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
92
92
|
|
|
93
93
|
[[package]]
|
|
94
94
|
name = "backtrace"
|
|
95
|
-
version = "0.3.
|
|
95
|
+
version = "0.3.75"
|
|
96
96
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
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 = "
|
|
116
|
+
version = "2.9.1"
|
|
117
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
-
checksum = "
|
|
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.
|
|
143
|
+
version = "1.5.7"
|
|
150
144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
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.
|
|
153
|
+
version = "1.5.7"
|
|
160
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
-
checksum = "
|
|
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.
|
|
168
|
-
"syn_derive",
|
|
161
|
+
"syn 2.0.104",
|
|
169
162
|
]
|
|
170
163
|
|
|
171
164
|
[[package]]
|
|
172
165
|
name = "bumpalo"
|
|
173
|
-
version = "3.
|
|
166
|
+
version = "3.19.0"
|
|
174
167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
-
checksum = "
|
|
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.
|
|
200
|
+
version = "1.10.1"
|
|
208
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
-
checksum = "
|
|
202
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
210
203
|
|
|
211
204
|
[[package]]
|
|
212
205
|
name = "cc"
|
|
213
|
-
version = "1.
|
|
206
|
+
version = "1.2.27"
|
|
214
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
-
checksum = "
|
|
208
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"shlex",
|
|
211
|
+
]
|
|
216
212
|
|
|
217
213
|
[[package]]
|
|
218
214
|
name = "cfg-if"
|
|
219
|
-
version = "1.0.
|
|
215
|
+
version = "1.0.1"
|
|
220
216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
-
checksum = "
|
|
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.
|
|
227
|
+
version = "0.4.41"
|
|
232
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
-
checksum = "
|
|
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-
|
|
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.
|
|
263
|
+
version = "0.8.7"
|
|
268
264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
-
checksum = "
|
|
265
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
270
266
|
|
|
271
267
|
[[package]]
|
|
272
268
|
name = "cpufeatures"
|
|
273
|
-
version = "0.2.
|
|
269
|
+
version = "0.2.17"
|
|
274
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
-
checksum = "
|
|
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/
|
|
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/
|
|
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/
|
|
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.
|
|
330
|
+
version = "1.15.0"
|
|
335
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "
|
|
332
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
337
333
|
|
|
338
334
|
[[package]]
|
|
339
335
|
name = "equivalent"
|
|
340
|
-
version = "1.0.
|
|
336
|
+
version = "1.0.2"
|
|
341
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
-
checksum = "
|
|
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.
|
|
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.
|
|
468
|
+
version = "0.7.16"
|
|
473
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
-
checksum = "
|
|
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.
|
|
479
|
+
version = "0.2.16"
|
|
484
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
-
checksum = "
|
|
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.
|
|
504
|
+
version = "0.31.1"
|
|
497
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "
|
|
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.
|
|
519
|
+
version = "0.15.4"
|
|
512
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
-
checksum = "
|
|
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.
|
|
531
|
+
version = "0.5.2"
|
|
524
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
-
checksum = "
|
|
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.
|
|
546
|
+
version = "0.1.63"
|
|
539
547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
-
checksum = "
|
|
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.
|
|
570
|
+
version = "2.10.0"
|
|
562
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
-
checksum = "
|
|
572
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
564
573
|
dependencies = [
|
|
565
574
|
"equivalent",
|
|
566
|
-
"hashbrown 0.
|
|
575
|
+
"hashbrown 0.15.4",
|
|
567
576
|
]
|
|
568
577
|
|
|
569
578
|
[[package]]
|
|
570
579
|
name = "indoc"
|
|
571
|
-
version = "2.0.
|
|
580
|
+
version = "2.0.6"
|
|
572
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
582
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
574
583
|
|
|
575
584
|
[[package]]
|
|
576
585
|
name = "inventory"
|
|
577
|
-
version = "0.3.
|
|
586
|
+
version = "0.3.20"
|
|
578
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
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.
|
|
604
|
+
version = "1.0.15"
|
|
596
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
-
checksum = "
|
|
606
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
598
607
|
|
|
599
608
|
[[package]]
|
|
600
609
|
name = "js-sys"
|
|
601
|
-
version = "0.3.
|
|
610
|
+
version = "0.3.77"
|
|
602
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
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.
|
|
620
|
+
version = "0.2.174"
|
|
611
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
622
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
613
623
|
|
|
614
624
|
[[package]]
|
|
615
625
|
name = "libm"
|
|
616
|
-
version = "0.2.
|
|
626
|
+
version = "0.2.15"
|
|
617
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
628
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
619
629
|
|
|
620
630
|
[[package]]
|
|
621
631
|
name = "lock_api"
|
|
622
|
-
version = "0.4.
|
|
632
|
+
version = "0.4.13"
|
|
623
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
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.
|
|
642
|
+
version = "0.4.27"
|
|
633
643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
-
checksum = "
|
|
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.
|
|
664
|
+
version = "2.7.5"
|
|
655
665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
-
checksum = "
|
|
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.
|
|
679
|
+
version = "0.8.9"
|
|
670
680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
-
checksum = "
|
|
681
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
672
682
|
dependencies = [
|
|
673
|
-
"
|
|
683
|
+
"adler2",
|
|
674
684
|
]
|
|
675
685
|
|
|
676
686
|
[[package]]
|
|
677
687
|
name = "mio"
|
|
678
|
-
version = "1.0.
|
|
688
|
+
version = "1.0.4"
|
|
679
689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
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.
|
|
709
|
+
version = "1.17.0"
|
|
701
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "
|
|
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.
|
|
719
|
+
version = "0.36.7"
|
|
711
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
-
checksum = "
|
|
721
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
713
722
|
dependencies = [
|
|
714
723
|
"memchr",
|
|
715
724
|
]
|
|
716
725
|
|
|
717
726
|
[[package]]
|
|
718
727
|
name = "once_cell"
|
|
719
|
-
version = "1.
|
|
728
|
+
version = "1.21.3"
|
|
720
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
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
|
|
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.
|
|
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.
|
|
782
|
+
version = "0.12.4"
|
|
774
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
-
checksum = "
|
|
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.
|
|
792
|
+
version = "0.9.11"
|
|
784
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
794
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
786
795
|
dependencies = [
|
|
787
796
|
"cfg-if",
|
|
788
797
|
"libc",
|
|
789
|
-
"redox_syscall
|
|
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/
|
|
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/
|
|
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.
|
|
839
|
+
version = "0.11.3"
|
|
831
840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
-
checksum = "
|
|
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.
|
|
848
|
+
version = "0.11.3"
|
|
840
849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
-
checksum = "
|
|
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.
|
|
858
|
+
version = "0.11.3"
|
|
850
859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
-
checksum = "
|
|
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.
|
|
868
|
+
version = "0.11.3"
|
|
860
869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
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.
|
|
877
|
+
version = "0.2.16"
|
|
869
878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
-
checksum = "
|
|
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.
|
|
889
|
+
version = "0.3.32"
|
|
881
890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "
|
|
891
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
883
892
|
|
|
884
893
|
[[package]]
|
|
885
894
|
name = "portable-atomic"
|
|
886
|
-
version = "1.
|
|
895
|
+
version = "1.11.1"
|
|
887
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
-
checksum = "
|
|
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/
|
|
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.
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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.
|
|
968
|
+
version = "0.2.21"
|
|
960
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
-
checksum = "
|
|
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.
|
|
977
|
+
version = "3.3.0"
|
|
969
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
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.
|
|
986
|
+
version = "1.0.95"
|
|
1001
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
-
checksum = "
|
|
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.
|
|
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.
|
|
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/
|
|
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.
|
|
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.
|
|
1124
|
+
"syn 2.0.104",
|
|
1139
1125
|
]
|
|
1140
1126
|
|
|
1141
1127
|
[[package]]
|
|
1142
1128
|
name = "quote"
|
|
1143
|
-
version = "1.0.
|
|
1129
|
+
version = "1.0.40"
|
|
1144
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
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.
|
|
1180
|
+
version = "0.5.13"
|
|
1198
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
-
checksum = "
|
|
1182
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
|
1200
1183
|
dependencies = [
|
|
1201
|
-
"bitflags
|
|
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/
|
|
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.
|
|
1282
|
+
version = "0.1.25"
|
|
1300
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
-
checksum = "
|
|
1284
|
+
checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
|
|
1302
1285
|
|
|
1303
1286
|
[[package]]
|
|
1304
1287
|
name = "rustversion"
|
|
1305
|
-
version = "1.0.
|
|
1288
|
+
version = "1.0.21"
|
|
1306
1289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
-
checksum = "
|
|
1290
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
1308
1291
|
|
|
1309
1292
|
[[package]]
|
|
1310
1293
|
name = "ryu"
|
|
1311
|
-
version = "1.0.
|
|
1294
|
+
version = "1.0.20"
|
|
1312
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
-
checksum = "
|
|
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.
|
|
1312
|
+
version = "1.0.219"
|
|
1330
1313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
-
checksum = "
|
|
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.
|
|
1321
|
+
version = "1.0.219"
|
|
1339
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
-
checksum = "
|
|
1323
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1341
1324
|
dependencies = [
|
|
1342
1325
|
"proc-macro2",
|
|
1343
1326
|
"quote",
|
|
1344
|
-
"syn 2.0.
|
|
1327
|
+
"syn 2.0.104",
|
|
1345
1328
|
]
|
|
1346
1329
|
|
|
1347
1330
|
[[package]]
|
|
1348
1331
|
name = "serde_json"
|
|
1349
|
-
version = "1.0.
|
|
1332
|
+
version = "1.0.140"
|
|
1350
1333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
-
checksum = "
|
|
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.
|
|
1344
|
+
version = "0.10.9"
|
|
1362
1345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
-
checksum = "
|
|
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.
|
|
1361
|
+
version = "1.4.5"
|
|
1373
1362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
-
checksum = "
|
|
1363
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
1375
1364
|
dependencies = [
|
|
1376
1365
|
"libc",
|
|
1377
1366
|
]
|
|
1378
1367
|
|
|
1379
1368
|
[[package]]
|
|
1380
1369
|
name = "simdutf8"
|
|
1381
|
-
version = "0.1.
|
|
1370
|
+
version = "0.1.5"
|
|
1382
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
-
checksum = "
|
|
1372
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1384
1373
|
|
|
1385
1374
|
[[package]]
|
|
1386
1375
|
name = "siphasher"
|
|
1387
|
-
version = "0.
|
|
1376
|
+
version = "1.0.1"
|
|
1388
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
-
checksum = "
|
|
1378
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1390
1379
|
|
|
1391
1380
|
[[package]]
|
|
1392
1381
|
name = "slab"
|
|
1393
|
-
version = "0.4.
|
|
1382
|
+
version = "0.4.10"
|
|
1394
1383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
-
checksum = "
|
|
1396
|
-
dependencies = [
|
|
1397
|
-
"autocfg",
|
|
1398
|
-
]
|
|
1384
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
|
1399
1385
|
|
|
1400
1386
|
[[package]]
|
|
1401
1387
|
name = "smallvec"
|
|
1402
|
-
version = "1.
|
|
1388
|
+
version = "1.15.1"
|
|
1403
1389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
-
checksum = "
|
|
1390
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1405
1391
|
|
|
1406
1392
|
[[package]]
|
|
1407
1393
|
name = "socket2"
|
|
1408
|
-
version = "0.5.
|
|
1394
|
+
version = "0.5.10"
|
|
1409
1395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
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.
|
|
1432
|
+
version = "2.0.104"
|
|
1447
1433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
-
checksum = "
|
|
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.
|
|
1455
|
+
version = "1.0.69"
|
|
1482
1456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "
|
|
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.
|
|
1464
|
+
version = "1.0.69"
|
|
1491
1465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1466
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1493
1467
|
dependencies = [
|
|
1494
1468
|
"proc-macro2",
|
|
1495
1469
|
"quote",
|
|
1496
|
-
"syn 2.0.
|
|
1470
|
+
"syn 2.0.104",
|
|
1497
1471
|
]
|
|
1498
1472
|
|
|
1499
1473
|
[[package]]
|
|
1500
1474
|
name = "tinyvec"
|
|
1501
|
-
version = "1.
|
|
1475
|
+
version = "1.9.0"
|
|
1502
1476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
-
checksum = "
|
|
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.
|
|
1490
|
+
version = "1.45.1"
|
|
1517
1491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
-
checksum = "
|
|
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.
|
|
1508
|
+
version = "2.5.0"
|
|
1535
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
-
checksum = "
|
|
1510
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
1537
1511
|
dependencies = [
|
|
1538
1512
|
"proc-macro2",
|
|
1539
1513
|
"quote",
|
|
1540
|
-
"syn 2.0.
|
|
1514
|
+
"syn 2.0.104",
|
|
1541
1515
|
]
|
|
1542
1516
|
|
|
1543
1517
|
[[package]]
|
|
1544
1518
|
name = "tokio-openssl"
|
|
1545
|
-
version = "0.6.
|
|
1519
|
+
version = "0.6.5"
|
|
1546
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
-
checksum = "
|
|
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/
|
|
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.
|
|
1555
|
+
version = "0.7.15"
|
|
1583
1556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
-
checksum = "
|
|
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.
|
|
1568
|
+
version = "0.6.11"
|
|
1596
1569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
-
checksum = "
|
|
1570
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1598
1571
|
|
|
1599
1572
|
[[package]]
|
|
1600
1573
|
name = "toml_edit"
|
|
1601
|
-
version = "0.22.
|
|
1574
|
+
version = "0.22.27"
|
|
1602
1575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
-
checksum = "
|
|
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.
|
|
1585
|
+
version = "0.1.41"
|
|
1613
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
-
checksum = "
|
|
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.
|
|
1596
|
+
version = "0.1.30"
|
|
1624
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
-
checksum = "
|
|
1598
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
1626
1599
|
dependencies = [
|
|
1627
1600
|
"proc-macro2",
|
|
1628
1601
|
"quote",
|
|
1629
|
-
"syn 2.0.
|
|
1602
|
+
"syn 2.0.104",
|
|
1630
1603
|
]
|
|
1631
1604
|
|
|
1632
1605
|
[[package]]
|
|
1633
1606
|
name = "tracing-core"
|
|
1634
|
-
version = "0.1.
|
|
1607
|
+
version = "0.1.34"
|
|
1635
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
-
checksum = "
|
|
1609
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1637
1610
|
dependencies = [
|
|
1638
1611
|
"once_cell",
|
|
1639
1612
|
]
|
|
1640
1613
|
|
|
1641
1614
|
[[package]]
|
|
1642
1615
|
name = "typenum"
|
|
1643
|
-
version = "1.
|
|
1616
|
+
version = "1.18.0"
|
|
1644
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1618
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
1646
1619
|
|
|
1647
1620
|
[[package]]
|
|
1648
1621
|
name = "unicode-bidi"
|
|
1649
|
-
version = "0.3.
|
|
1622
|
+
version = "0.3.18"
|
|
1650
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
-
checksum = "
|
|
1624
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
1652
1625
|
|
|
1653
1626
|
[[package]]
|
|
1654
1627
|
name = "unicode-ident"
|
|
1655
|
-
version = "1.0.
|
|
1628
|
+
version = "1.0.18"
|
|
1656
1629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
-
checksum = "
|
|
1630
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1658
1631
|
|
|
1659
1632
|
[[package]]
|
|
1660
1633
|
name = "unicode-normalization"
|
|
1661
|
-
version = "0.1.
|
|
1634
|
+
version = "0.1.24"
|
|
1662
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
-
checksum = "
|
|
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.
|
|
1643
|
+
version = "0.1.3"
|
|
1671
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
-
checksum = "
|
|
1645
|
+
checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
|
|
1673
1646
|
|
|
1674
1647
|
[[package]]
|
|
1675
1648
|
name = "unindent"
|
|
1676
|
-
version = "0.2.
|
|
1649
|
+
version = "0.2.4"
|
|
1677
1650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
-
checksum = "
|
|
1651
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1679
1652
|
|
|
1680
1653
|
[[package]]
|
|
1681
1654
|
name = "uuid"
|
|
1682
|
-
version = "1.
|
|
1655
|
+
version = "1.17.0"
|
|
1683
1656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
-
checksum = "
|
|
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.
|
|
1678
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1704
1679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
-
checksum = "
|
|
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.
|
|
1699
|
+
version = "0.2.100"
|
|
1716
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
-
checksum = "
|
|
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.
|
|
1711
|
+
version = "0.2.100"
|
|
1726
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
-
checksum = "
|
|
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.
|
|
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.
|
|
1725
|
+
version = "0.2.100"
|
|
1741
1726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
-
checksum = "
|
|
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.
|
|
1735
|
+
version = "0.2.100"
|
|
1751
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
-
checksum = "
|
|
1737
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1753
1738
|
dependencies = [
|
|
1754
1739
|
"proc-macro2",
|
|
1755
1740
|
"quote",
|
|
1756
|
-
"syn 2.0.
|
|
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.
|
|
1748
|
+
version = "0.2.100"
|
|
1764
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1750
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"unicode-ident",
|
|
1753
|
+
]
|
|
1766
1754
|
|
|
1767
1755
|
[[package]]
|
|
1768
1756
|
name = "web-sys"
|
|
1769
|
-
version = "0.3.
|
|
1757
|
+
version = "0.3.77"
|
|
1770
1758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
-
checksum = "
|
|
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.
|
|
1767
|
+
version = "1.6.0"
|
|
1780
1768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
-
checksum = "
|
|
1769
|
+
checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7"
|
|
1782
1770
|
dependencies = [
|
|
1783
|
-
"redox_syscall
|
|
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.
|
|
1778
|
+
version = "0.61.2"
|
|
1791
1779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
-
checksum = "
|
|
1780
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
1793
1781
|
dependencies = [
|
|
1794
|
-
"windows-
|
|
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.
|
|
1919
|
+
version = "0.7.11"
|
|
1873
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "
|
|
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.
|
|
1946
|
+
version = "0.8.26"
|
|
1891
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
-
checksum = "
|
|
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.
|
|
1955
|
+
version = "0.8.26"
|
|
1901
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "
|
|
1957
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
1903
1958
|
dependencies = [
|
|
1904
1959
|
"proc-macro2",
|
|
1905
1960
|
"quote",
|
|
1906
|
-
"syn 2.0.
|
|
1961
|
+
"syn 2.0.104",
|
|
1907
1962
|
]
|