python-auditor 0.10.2__tar.gz → 0.11.1__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.
- {python_auditor-0.10.2 → python_auditor-0.11.1}/Cargo.lock +1115 -1143
- {python_auditor-0.10.2 → python_auditor-0.11.1}/Cargo.toml +8 -8
- {python_auditor-0.10.2 → python_auditor-0.11.1}/PKG-INFO +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/Cargo.toml +31 -32
- python_auditor-0.11.1/local_dependencies/auditor/certs/rootCA-key.pem +52 -0
- python_auditor-0.11.1/local_dependencies/auditor/certs/rootCA.pem +31 -0
- python_auditor-0.11.1/local_dependencies/auditor/certs/server-cert.pem +27 -0
- python_auditor-0.11.1/local_dependencies/auditor/certs/server-key.pem +28 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/base.yaml +5 -0
- python_auditor-0.11.1/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/.env +6 -0
- python_auditor-0.11.1/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/convert_totalcpu_millisec_to_sec.py +78 -0
- python_auditor-0.11.1/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/requirements.txt +8 -0
- python_auditor-0.11.1/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/test_convert_slurm_millisec_to_sec.py +33 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/requirements.txt +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +4 -4
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/archive.rs +26 -18
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/configuration.rs +47 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/main.rs +21 -5
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/metrics/mod.rs +16 -22
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/add.rs +18 -3
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +15 -19
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/startup.rs +9 -15
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/telemetry.rs +29 -4
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/advanced_queries.rs +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/get_since.rs +3 -3
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/helpers.rs +19 -9
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/update.rs +3 -3
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/Cargo.toml +13 -13
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/src/lib.rs +26 -24
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_advanced_query.py +3 -3
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_advanced_query_blocking.py +3 -3
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_advanced_query_queued.py +3 -3
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_bulk_insert.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_bulk_insert_blocking.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_bulk_insert_queued.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_get_since.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_get_since_blocking.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_get_since_queued.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_get_single_record.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_get_single_record_blocking.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_get_single_record_queued.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/tls_test/test_tls.py +2 -2
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/blocking_client.rs +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/builder.rs +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/client.rs +8 -8
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/domain/component.rs +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/domain/meta.rs +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/domain/record.rs +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/domain/score.rs +1 -1
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/queued_client.rs +1 -1
- python_auditor-0.10.2/local_dependencies/auditor/certs/rootCA-key.pem +0 -52
- python_auditor-0.10.2/local_dependencies/auditor/certs/rootCA.pem +0 -31
- python_auditor-0.10.2/local_dependencies/auditor/certs/server-cert.pem +0 -27
- python_auditor-0.10.2/local_dependencies/auditor/certs/server-key.pem +0 -28
- {python_auditor-0.10.2 → python_auditor-0.11.1}/.cargo/config.toml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/.readthedocs.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/README.md +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/Makefile +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/api.rst +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/changelog.rst +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/conf.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/examples.rst +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/index.rst +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/docs/make.bat +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.env +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-bac1cfa96d1801a491bc325101a0ea88c18a9e1ca50b2b623e07791a46d61b48.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/build.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/archive.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/dualstack.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/local.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/production.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/rbac.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/.env +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/parquet_to_auditor.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/revert_encoding/.env +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/constants.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/component.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/meta.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/mod.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/record.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/score.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/validname.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/error.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/lib.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/macros.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/metrics/database.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/middleware.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/get.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/mod.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/src/routes/update.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/add.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/get.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor/tests/api/main.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.env +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/benches/README.md +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/src/configuration.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/src/constants.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/local_dependencies/auditor-client/src/database.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/pyproject.toml +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_add_update.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_add_update_blocking.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_add_update_queued.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_components.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_components_blocking.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_components_queued.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_eq.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_meta.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_meta_blocking.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/scripts/test_meta_queued.py +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/domain/mod.rs +0 -0
- {python_auditor-0.10.2 → python_auditor-0.11.1}/src/lib.rs +0 -0
|
@@ -4,11 +4,11 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "actix-codec"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.4"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "4c13df95297bcf9014dc89162b0cc69431e192e34e3b419612fc124cfcd45dbf"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"bitflags",
|
|
11
|
+
"bitflags 2.13.2",
|
|
12
12
|
"bytes",
|
|
13
13
|
"futures-core",
|
|
14
14
|
"futures-sink",
|
|
@@ -21,24 +21,23 @@ dependencies = [
|
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
23
23
|
name = "actix-http"
|
|
24
|
-
version = "3.
|
|
24
|
+
version = "3.13.5"
|
|
25
25
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
26
|
+
checksum = "86d62d1a48894ec9450bcde7ef1e3681205771ff6ea9c61cc5ae031145192787"
|
|
27
27
|
dependencies = [
|
|
28
28
|
"actix-codec",
|
|
29
|
-
"actix-rt",
|
|
30
29
|
"actix-service",
|
|
31
30
|
"actix-tls",
|
|
32
31
|
"actix-utils",
|
|
33
|
-
"base64",
|
|
34
|
-
"bitflags",
|
|
32
|
+
"base64 0.22.1",
|
|
33
|
+
"bitflags 2.13.2",
|
|
35
34
|
"brotli",
|
|
36
35
|
"bytes",
|
|
37
36
|
"bytestring",
|
|
38
37
|
"derive_more",
|
|
39
38
|
"encoding_rs",
|
|
40
39
|
"flate2",
|
|
41
|
-
"foldhash",
|
|
40
|
+
"foldhash 0.2.0",
|
|
42
41
|
"futures-core",
|
|
43
42
|
"h2 0.3.27",
|
|
44
43
|
"http 0.2.12",
|
|
@@ -50,8 +49,8 @@ dependencies = [
|
|
|
50
49
|
"mime",
|
|
51
50
|
"percent-encoding",
|
|
52
51
|
"pin-project-lite",
|
|
53
|
-
"rand 0.
|
|
54
|
-
"sha1",
|
|
52
|
+
"rand 0.10.2",
|
|
53
|
+
"sha1 0.11.0",
|
|
55
54
|
"smallvec",
|
|
56
55
|
"tokio",
|
|
57
56
|
"tokio-util",
|
|
@@ -66,7 +65,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
66
65
|
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
67
66
|
dependencies = [
|
|
68
67
|
"quote",
|
|
69
|
-
"syn",
|
|
68
|
+
"syn 2.0.119",
|
|
70
69
|
]
|
|
71
70
|
|
|
72
71
|
[[package]]
|
|
@@ -86,9 +85,9 @@ dependencies = [
|
|
|
86
85
|
|
|
87
86
|
[[package]]
|
|
88
87
|
name = "actix-rt"
|
|
89
|
-
version = "2.
|
|
88
|
+
version = "2.15.0"
|
|
90
89
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
90
|
+
checksum = "e5f794807f82bbd36430c12cd600c73bbab0f52fdde4f0ed49978df113f4807f"
|
|
92
91
|
dependencies = [
|
|
93
92
|
"futures-core",
|
|
94
93
|
"tokio",
|
|
@@ -96,17 +95,16 @@ dependencies = [
|
|
|
96
95
|
|
|
97
96
|
[[package]]
|
|
98
97
|
name = "actix-server"
|
|
99
|
-
version = "2.
|
|
98
|
+
version = "2.9.5"
|
|
100
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
-
checksum = "
|
|
100
|
+
checksum = "aec21d555b23ee78a1c0e4ed61667935de7d61664caba878226a081b1ac20a74"
|
|
102
101
|
dependencies = [
|
|
103
102
|
"actix-rt",
|
|
104
103
|
"actix-service",
|
|
105
|
-
"actix-utils",
|
|
106
104
|
"futures-core",
|
|
107
105
|
"futures-util",
|
|
108
106
|
"mio",
|
|
109
|
-
"socket2
|
|
107
|
+
"socket2",
|
|
110
108
|
"tokio",
|
|
111
109
|
"tracing",
|
|
112
110
|
]
|
|
@@ -123,9 +121,9 @@ dependencies = [
|
|
|
123
121
|
|
|
124
122
|
[[package]]
|
|
125
123
|
name = "actix-tls"
|
|
126
|
-
version = "3.
|
|
124
|
+
version = "3.6.0"
|
|
127
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
126
|
+
checksum = "21d0a5de50893252dfa9d7c4bf83761bcc1920651916cd9da24c974cf8ee1b92"
|
|
129
127
|
dependencies = [
|
|
130
128
|
"actix-rt",
|
|
131
129
|
"actix-service",
|
|
@@ -152,9 +150,9 @@ dependencies = [
|
|
|
152
150
|
|
|
153
151
|
[[package]]
|
|
154
152
|
name = "actix-web"
|
|
155
|
-
version = "4.
|
|
153
|
+
version = "4.15.0"
|
|
156
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
-
checksum = "
|
|
155
|
+
checksum = "bbacab3593b6b4f7be815076fc52d60a83c873426824675417e2abdd229e2e36"
|
|
158
156
|
dependencies = [
|
|
159
157
|
"actix-codec",
|
|
160
158
|
"actix-http",
|
|
@@ -172,7 +170,7 @@ dependencies = [
|
|
|
172
170
|
"cookie",
|
|
173
171
|
"derive_more",
|
|
174
172
|
"encoding_rs",
|
|
175
|
-
"foldhash",
|
|
173
|
+
"foldhash 0.2.0",
|
|
176
174
|
"futures-core",
|
|
177
175
|
"futures-util",
|
|
178
176
|
"impl-more",
|
|
@@ -188,7 +186,7 @@ dependencies = [
|
|
|
188
186
|
"serde_json",
|
|
189
187
|
"serde_urlencoded",
|
|
190
188
|
"smallvec",
|
|
191
|
-
"socket2
|
|
189
|
+
"socket2",
|
|
192
190
|
"time",
|
|
193
191
|
"tracing",
|
|
194
192
|
"url",
|
|
@@ -203,23 +201,22 @@ dependencies = [
|
|
|
203
201
|
"actix-router",
|
|
204
202
|
"proc-macro2",
|
|
205
203
|
"quote",
|
|
206
|
-
"syn",
|
|
204
|
+
"syn 2.0.119",
|
|
207
205
|
]
|
|
208
206
|
|
|
209
207
|
[[package]]
|
|
210
|
-
name = "actix-web-
|
|
211
|
-
version = "0.
|
|
208
|
+
name = "actix-web-prom"
|
|
209
|
+
version = "0.10.0"
|
|
212
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
211
|
+
checksum = "a7eb266b4c692a4a7e68429fcbe4eb3bd55c053f6d84c0522dc83df22395edf6"
|
|
214
212
|
dependencies = [
|
|
215
|
-
"actix-http",
|
|
216
213
|
"actix-web",
|
|
217
|
-
"futures-
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"opentelemetry-semantic-conventions",
|
|
214
|
+
"futures-core",
|
|
215
|
+
"log",
|
|
216
|
+
"pin-project-lite",
|
|
221
217
|
"prometheus",
|
|
222
|
-
"
|
|
218
|
+
"regex",
|
|
219
|
+
"strfmt",
|
|
223
220
|
]
|
|
224
221
|
|
|
225
222
|
[[package]]
|
|
@@ -253,9 +250,9 @@ dependencies = [
|
|
|
253
250
|
|
|
254
251
|
[[package]]
|
|
255
252
|
name = "aho-corasick"
|
|
256
|
-
version = "1.1.
|
|
253
|
+
version = "1.1.5"
|
|
257
254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
-
checksum = "
|
|
255
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
259
256
|
dependencies = [
|
|
260
257
|
"memchr",
|
|
261
258
|
]
|
|
@@ -268,9 +265,9 @@ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
|
268
265
|
|
|
269
266
|
[[package]]
|
|
270
267
|
name = "alloc-stdlib"
|
|
271
|
-
version = "0.2.
|
|
268
|
+
version = "0.2.4"
|
|
272
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
270
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
274
271
|
dependencies = [
|
|
275
272
|
"alloc-no-stdlib",
|
|
276
273
|
]
|
|
@@ -292,9 +289,9 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
|
292
289
|
|
|
293
290
|
[[package]]
|
|
294
291
|
name = "android_system_properties"
|
|
295
|
-
version = "0.1.
|
|
292
|
+
version = "0.1.6"
|
|
296
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
294
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
298
295
|
dependencies = [
|
|
299
296
|
"libc",
|
|
300
297
|
]
|
|
@@ -305,6 +302,17 @@ version = "0.1.6"
|
|
|
305
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
303
|
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
307
304
|
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "annotate-snippets"
|
|
307
|
+
version = "0.12.16"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "f211a51805bc641f3ad5b7664c77d2547af685cc33b4cd8d31964027a46f13f1"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"anstyle",
|
|
312
|
+
"memchr",
|
|
313
|
+
"unicode-width",
|
|
314
|
+
]
|
|
315
|
+
|
|
308
316
|
[[package]]
|
|
309
317
|
name = "anstyle"
|
|
310
318
|
version = "1.0.14"
|
|
@@ -313,9 +321,9 @@ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
|
313
321
|
|
|
314
322
|
[[package]]
|
|
315
323
|
name = "anyhow"
|
|
316
|
-
version = "1.0.
|
|
324
|
+
version = "1.0.104"
|
|
317
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
-
checksum = "
|
|
326
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
319
327
|
|
|
320
328
|
[[package]]
|
|
321
329
|
name = "arraydeque"
|
|
@@ -325,9 +333,9 @@ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
|
|
325
333
|
|
|
326
334
|
[[package]]
|
|
327
335
|
name = "arrow"
|
|
328
|
-
version = "
|
|
336
|
+
version = "59.3.0"
|
|
329
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
-
checksum = "
|
|
338
|
+
checksum = "7c14b3d39f306bc28fd639d59f06e17a0f377d0021e1b7e9054e4d6fedc98774"
|
|
331
339
|
dependencies = [
|
|
332
340
|
"arrow-arith",
|
|
333
341
|
"arrow-array",
|
|
@@ -346,9 +354,9 @@ dependencies = [
|
|
|
346
354
|
|
|
347
355
|
[[package]]
|
|
348
356
|
name = "arrow-arith"
|
|
349
|
-
version = "
|
|
357
|
+
version = "59.3.0"
|
|
350
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
-
checksum = "
|
|
359
|
+
checksum = "ce2961626677665b2195eb59242af4c7befe7b8737ca2050295389362380104e"
|
|
352
360
|
dependencies = [
|
|
353
361
|
"arrow-array",
|
|
354
362
|
"arrow-buffer",
|
|
@@ -360,9 +368,9 @@ dependencies = [
|
|
|
360
368
|
|
|
361
369
|
[[package]]
|
|
362
370
|
name = "arrow-array"
|
|
363
|
-
version = "
|
|
371
|
+
version = "59.3.0"
|
|
364
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "
|
|
373
|
+
checksum = "1e5f6adeffdf587d7a31db5d2266189624b526730cd3627f9ff9fedae97ad584"
|
|
366
374
|
dependencies = [
|
|
367
375
|
"ahash",
|
|
368
376
|
"arrow-buffer",
|
|
@@ -370,7 +378,7 @@ dependencies = [
|
|
|
370
378
|
"arrow-schema",
|
|
371
379
|
"chrono",
|
|
372
380
|
"half",
|
|
373
|
-
"hashbrown 0.
|
|
381
|
+
"hashbrown 0.17.1",
|
|
374
382
|
"num-complex",
|
|
375
383
|
"num-integer",
|
|
376
384
|
"num-traits",
|
|
@@ -378,21 +386,21 @@ dependencies = [
|
|
|
378
386
|
|
|
379
387
|
[[package]]
|
|
380
388
|
name = "arrow-buffer"
|
|
381
|
-
version = "
|
|
389
|
+
version = "59.3.0"
|
|
382
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
-
checksum = "
|
|
391
|
+
checksum = "097d193003ce7995d5d087089069ec2a6e0187faf5a6f8c9f38af2645d987182"
|
|
384
392
|
dependencies = [
|
|
385
393
|
"bytes",
|
|
386
394
|
"half",
|
|
387
|
-
"num-bigint",
|
|
395
|
+
"num-bigint 0.5.1",
|
|
388
396
|
"num-traits",
|
|
389
397
|
]
|
|
390
398
|
|
|
391
399
|
[[package]]
|
|
392
400
|
name = "arrow-cast"
|
|
393
|
-
version = "
|
|
401
|
+
version = "59.3.0"
|
|
394
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "
|
|
403
|
+
checksum = "635c9c635668ad26adf76cce8fb276c4be7cf06e63bd516de7da514f9680ee53"
|
|
396
404
|
dependencies = [
|
|
397
405
|
"arrow-array",
|
|
398
406
|
"arrow-buffer",
|
|
@@ -401,7 +409,7 @@ dependencies = [
|
|
|
401
409
|
"arrow-schema",
|
|
402
410
|
"arrow-select",
|
|
403
411
|
"atoi",
|
|
404
|
-
"base64",
|
|
412
|
+
"base64 0.23.1",
|
|
405
413
|
"chrono",
|
|
406
414
|
"half",
|
|
407
415
|
"lexical-core",
|
|
@@ -411,9 +419,9 @@ dependencies = [
|
|
|
411
419
|
|
|
412
420
|
[[package]]
|
|
413
421
|
name = "arrow-csv"
|
|
414
|
-
version = "
|
|
422
|
+
version = "59.3.0"
|
|
415
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
424
|
+
checksum = "4c2ebf8d631e79b02c16cf5ae860561272c26024ec88fce389a56aaddd558e86"
|
|
417
425
|
dependencies = [
|
|
418
426
|
"arrow-array",
|
|
419
427
|
"arrow-cast",
|
|
@@ -426,9 +434,9 @@ dependencies = [
|
|
|
426
434
|
|
|
427
435
|
[[package]]
|
|
428
436
|
name = "arrow-data"
|
|
429
|
-
version = "
|
|
437
|
+
version = "59.3.0"
|
|
430
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "
|
|
439
|
+
checksum = "9ba2f832eaeca24b8f26143dba750e42ee4ab51cf7d65e701ca9607cfda9f358"
|
|
432
440
|
dependencies = [
|
|
433
441
|
"arrow-buffer",
|
|
434
442
|
"arrow-schema",
|
|
@@ -439,9 +447,9 @@ dependencies = [
|
|
|
439
447
|
|
|
440
448
|
[[package]]
|
|
441
449
|
name = "arrow-ipc"
|
|
442
|
-
version = "
|
|
450
|
+
version = "59.3.0"
|
|
443
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
-
checksum = "
|
|
452
|
+
checksum = "dcc41681ea80f521df14c36725b74d4c60702c47f0793af2be469c04527e2599"
|
|
445
453
|
dependencies = [
|
|
446
454
|
"arrow-array",
|
|
447
455
|
"arrow-buffer",
|
|
@@ -453,18 +461,19 @@ dependencies = [
|
|
|
453
461
|
|
|
454
462
|
[[package]]
|
|
455
463
|
name = "arrow-json"
|
|
456
|
-
version = "
|
|
464
|
+
version = "59.3.0"
|
|
457
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
-
checksum = "
|
|
466
|
+
checksum = "a2f57d7a81969f24ccf80809587b76c09897e6f829d2d65a5976bfb3218851f1"
|
|
459
467
|
dependencies = [
|
|
460
468
|
"arrow-array",
|
|
461
469
|
"arrow-buffer",
|
|
462
470
|
"arrow-cast",
|
|
463
|
-
"arrow-
|
|
471
|
+
"arrow-ord",
|
|
464
472
|
"arrow-schema",
|
|
473
|
+
"arrow-select",
|
|
465
474
|
"chrono",
|
|
466
475
|
"half",
|
|
467
|
-
"indexmap 2.
|
|
476
|
+
"indexmap 2.14.2",
|
|
468
477
|
"itoa",
|
|
469
478
|
"lexical-core",
|
|
470
479
|
"memchr",
|
|
@@ -477,9 +486,9 @@ dependencies = [
|
|
|
477
486
|
|
|
478
487
|
[[package]]
|
|
479
488
|
name = "arrow-ord"
|
|
480
|
-
version = "
|
|
489
|
+
version = "59.3.0"
|
|
481
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "
|
|
491
|
+
checksum = "2c900759f3bd8354fd4196bc4403eee846894dc2adf66b4225472006a0bf18c5"
|
|
483
492
|
dependencies = [
|
|
484
493
|
"arrow-array",
|
|
485
494
|
"arrow-buffer",
|
|
@@ -490,9 +499,9 @@ dependencies = [
|
|
|
490
499
|
|
|
491
500
|
[[package]]
|
|
492
501
|
name = "arrow-row"
|
|
493
|
-
version = "
|
|
502
|
+
version = "59.3.0"
|
|
494
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
-
checksum = "
|
|
504
|
+
checksum = "f4c6425032e28266e3fc4ff680805e57e670d6ea92473043f3e65b7ed6ac79f2"
|
|
496
505
|
dependencies = [
|
|
497
506
|
"arrow-array",
|
|
498
507
|
"arrow-buffer",
|
|
@@ -503,15 +512,15 @@ dependencies = [
|
|
|
503
512
|
|
|
504
513
|
[[package]]
|
|
505
514
|
name = "arrow-schema"
|
|
506
|
-
version = "
|
|
515
|
+
version = "59.3.0"
|
|
507
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
517
|
+
checksum = "10fab8d4563491417ba801fab29d205104d20d4bdf37bda6cd1cf425cff598cd"
|
|
509
518
|
|
|
510
519
|
[[package]]
|
|
511
520
|
name = "arrow-select"
|
|
512
|
-
version = "
|
|
521
|
+
version = "59.3.0"
|
|
513
522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
523
|
+
checksum = "fc58569193c2525915f3cc6310edba3792f1200f65d6e9ed330aa33e691493b8"
|
|
515
524
|
dependencies = [
|
|
516
525
|
"ahash",
|
|
517
526
|
"arrow-array",
|
|
@@ -523,9 +532,9 @@ dependencies = [
|
|
|
523
532
|
|
|
524
533
|
[[package]]
|
|
525
534
|
name = "arrow-string"
|
|
526
|
-
version = "
|
|
535
|
+
version = "59.3.0"
|
|
527
536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
-
checksum = "
|
|
537
|
+
checksum = "2e0813f3c35c1cfea65e14c20a953440f7783c088b7ad2d0db162ccdeefcec14"
|
|
529
538
|
dependencies = [
|
|
530
539
|
"arrow-array",
|
|
531
540
|
"arrow-buffer",
|
|
@@ -540,9 +549,9 @@ dependencies = [
|
|
|
540
549
|
|
|
541
550
|
[[package]]
|
|
542
551
|
name = "asn1-rs"
|
|
543
|
-
version = "0.7.
|
|
552
|
+
version = "0.7.2"
|
|
544
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
-
checksum = "
|
|
554
|
+
checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8"
|
|
546
555
|
dependencies = [
|
|
547
556
|
"asn1-rs-derive",
|
|
548
557
|
"asn1-rs-impl",
|
|
@@ -550,7 +559,7 @@ dependencies = [
|
|
|
550
559
|
"nom",
|
|
551
560
|
"num-traits",
|
|
552
561
|
"rusticata-macros",
|
|
553
|
-
"thiserror 2.0.
|
|
562
|
+
"thiserror 2.0.20",
|
|
554
563
|
"time",
|
|
555
564
|
]
|
|
556
565
|
|
|
@@ -562,7 +571,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
|
562
571
|
dependencies = [
|
|
563
572
|
"proc-macro2",
|
|
564
573
|
"quote",
|
|
565
|
-
"syn",
|
|
574
|
+
"syn 2.0.119",
|
|
566
575
|
"synstructure",
|
|
567
576
|
]
|
|
568
577
|
|
|
@@ -574,7 +583,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
|
574
583
|
dependencies = [
|
|
575
584
|
"proc-macro2",
|
|
576
585
|
"quote",
|
|
577
|
-
"syn",
|
|
586
|
+
"syn 2.0.119",
|
|
578
587
|
]
|
|
579
588
|
|
|
580
589
|
[[package]]
|
|
@@ -606,18 +615,18 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
|
606
615
|
dependencies = [
|
|
607
616
|
"proc-macro2",
|
|
608
617
|
"quote",
|
|
609
|
-
"syn",
|
|
618
|
+
"syn 2.0.119",
|
|
610
619
|
]
|
|
611
620
|
|
|
612
621
|
[[package]]
|
|
613
622
|
name = "async-trait"
|
|
614
|
-
version = "0.1.
|
|
623
|
+
version = "0.1.92"
|
|
615
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
-
checksum = "
|
|
625
|
+
checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
|
|
617
626
|
dependencies = [
|
|
618
627
|
"proc-macro2",
|
|
619
628
|
"quote",
|
|
620
|
-
"syn",
|
|
629
|
+
"syn 3.0.5",
|
|
621
630
|
]
|
|
622
631
|
|
|
623
632
|
[[package]]
|
|
@@ -637,11 +646,11 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
637
646
|
|
|
638
647
|
[[package]]
|
|
639
648
|
name = "auditor"
|
|
640
|
-
version = "0.
|
|
649
|
+
version = "0.11.1"
|
|
641
650
|
dependencies = [
|
|
642
651
|
"actix-tls",
|
|
643
652
|
"actix-web",
|
|
644
|
-
"actix-web-
|
|
653
|
+
"actix-web-prom",
|
|
645
654
|
"anyhow",
|
|
646
655
|
"arrow",
|
|
647
656
|
"arrow-array",
|
|
@@ -654,20 +663,18 @@ dependencies = [
|
|
|
654
663
|
"fake",
|
|
655
664
|
"futures",
|
|
656
665
|
"futures-util",
|
|
657
|
-
"itertools 0.
|
|
666
|
+
"itertools 0.15.0",
|
|
658
667
|
"num-traits",
|
|
659
668
|
"once_cell",
|
|
660
|
-
"opentelemetry 0.23.0",
|
|
661
|
-
"opentelemetry-prometheus 0.16.0",
|
|
662
|
-
"opentelemetry_sdk 0.23.0",
|
|
663
669
|
"parquet",
|
|
664
670
|
"prometheus",
|
|
665
671
|
"quickcheck",
|
|
666
672
|
"quickcheck_macros",
|
|
667
|
-
"rand 0.10.
|
|
673
|
+
"rand 0.10.2",
|
|
668
674
|
"regex",
|
|
669
675
|
"reqwest",
|
|
670
676
|
"reqwest-streams",
|
|
677
|
+
"rolling-file",
|
|
671
678
|
"rustls",
|
|
672
679
|
"secrecy",
|
|
673
680
|
"serde",
|
|
@@ -676,11 +683,12 @@ dependencies = [
|
|
|
676
683
|
"serde_qs",
|
|
677
684
|
"serde_with",
|
|
678
685
|
"sqlx",
|
|
679
|
-
"thiserror 2.0.
|
|
686
|
+
"thiserror 2.0.20",
|
|
680
687
|
"tokio",
|
|
681
688
|
"tokio-cron-scheduler",
|
|
682
689
|
"tracing",
|
|
683
690
|
"tracing-actix-web",
|
|
691
|
+
"tracing-appender",
|
|
684
692
|
"tracing-bunyan-formatter",
|
|
685
693
|
"tracing-log 0.2.0",
|
|
686
694
|
"tracing-subscriber",
|
|
@@ -693,7 +701,7 @@ dependencies = [
|
|
|
693
701
|
|
|
694
702
|
[[package]]
|
|
695
703
|
name = "auditor-client"
|
|
696
|
-
version = "0.
|
|
704
|
+
version = "0.11.1"
|
|
697
705
|
dependencies = [
|
|
698
706
|
"anyhow",
|
|
699
707
|
"auditor",
|
|
@@ -705,9 +713,9 @@ dependencies = [
|
|
|
705
713
|
"criterion-macro",
|
|
706
714
|
"fake",
|
|
707
715
|
"futures",
|
|
708
|
-
"itertools 0.
|
|
716
|
+
"itertools 0.15.0",
|
|
709
717
|
"once_cell",
|
|
710
|
-
"rand 0.10.
|
|
718
|
+
"rand 0.10.2",
|
|
711
719
|
"rand_distr",
|
|
712
720
|
"reqwest",
|
|
713
721
|
"reqwest-streams",
|
|
@@ -717,7 +725,7 @@ dependencies = [
|
|
|
717
725
|
"serde_json",
|
|
718
726
|
"serde_qs",
|
|
719
727
|
"sqlx",
|
|
720
|
-
"thiserror 2.0.
|
|
728
|
+
"thiserror 2.0.20",
|
|
721
729
|
"tokio",
|
|
722
730
|
"tracing",
|
|
723
731
|
"tracing-subscriber",
|
|
@@ -728,7 +736,7 @@ dependencies = [
|
|
|
728
736
|
|
|
729
737
|
[[package]]
|
|
730
738
|
name = "auditor-kubernetes-collector"
|
|
731
|
-
version = "0.
|
|
739
|
+
version = "0.11.1"
|
|
732
740
|
dependencies = [
|
|
733
741
|
"anyhow",
|
|
734
742
|
"auditor",
|
|
@@ -754,19 +762,16 @@ dependencies = [
|
|
|
754
762
|
|
|
755
763
|
[[package]]
|
|
756
764
|
name = "auditor-priority-plugin"
|
|
757
|
-
version = "0.
|
|
765
|
+
version = "0.11.1"
|
|
758
766
|
dependencies = [
|
|
759
767
|
"actix-web",
|
|
760
|
-
"actix-web-
|
|
768
|
+
"actix-web-prom",
|
|
761
769
|
"anyhow",
|
|
762
770
|
"auditor",
|
|
763
771
|
"auditor-client",
|
|
764
772
|
"chrono",
|
|
765
773
|
"config",
|
|
766
774
|
"num-traits",
|
|
767
|
-
"opentelemetry 0.23.0",
|
|
768
|
-
"opentelemetry-prometheus 0.16.0",
|
|
769
|
-
"opentelemetry_sdk 0.23.0",
|
|
770
775
|
"prometheus",
|
|
771
776
|
"serde",
|
|
772
777
|
"serde-aux",
|
|
@@ -781,7 +786,7 @@ dependencies = [
|
|
|
781
786
|
|
|
782
787
|
[[package]]
|
|
783
788
|
name = "auditor-slurm-collector"
|
|
784
|
-
version = "0.
|
|
789
|
+
version = "0.11.1"
|
|
785
790
|
dependencies = [
|
|
786
791
|
"anyhow",
|
|
787
792
|
"auditor",
|
|
@@ -791,7 +796,7 @@ dependencies = [
|
|
|
791
796
|
"color-eyre",
|
|
792
797
|
"config",
|
|
793
798
|
"fake",
|
|
794
|
-
"itertools 0.
|
|
799
|
+
"itertools 0.15.0",
|
|
795
800
|
"once_cell",
|
|
796
801
|
"regex",
|
|
797
802
|
"serde",
|
|
@@ -807,7 +812,7 @@ dependencies = [
|
|
|
807
812
|
|
|
808
813
|
[[package]]
|
|
809
814
|
name = "auditor-slurm-epilog-collector"
|
|
810
|
-
version = "0.
|
|
815
|
+
version = "0.11.1"
|
|
811
816
|
dependencies = [
|
|
812
817
|
"anyhow",
|
|
813
818
|
"auditor",
|
|
@@ -826,15 +831,15 @@ dependencies = [
|
|
|
826
831
|
|
|
827
832
|
[[package]]
|
|
828
833
|
name = "autocfg"
|
|
829
|
-
version = "1.5.
|
|
834
|
+
version = "1.5.1"
|
|
830
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
-
checksum = "
|
|
836
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
832
837
|
|
|
833
838
|
[[package]]
|
|
834
839
|
name = "aws-lc-rs"
|
|
835
|
-
version = "1.
|
|
840
|
+
version = "1.18.1"
|
|
836
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
-
checksum = "
|
|
842
|
+
checksum = "b281d307588d634de920874890732659e2e7672f72b5e10e81badc1a8a83621e"
|
|
838
843
|
dependencies = [
|
|
839
844
|
"aws-lc-sys",
|
|
840
845
|
"zeroize",
|
|
@@ -842,14 +847,15 @@ dependencies = [
|
|
|
842
847
|
|
|
843
848
|
[[package]]
|
|
844
849
|
name = "aws-lc-sys"
|
|
845
|
-
version = "0.
|
|
850
|
+
version = "0.45.0"
|
|
846
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "
|
|
852
|
+
checksum = "9bff6c3b54fad79a2e60b8102caf565819711497c1f5f092f49508e2f5c31b27"
|
|
848
853
|
dependencies = [
|
|
849
854
|
"cc",
|
|
850
855
|
"cmake",
|
|
851
856
|
"dunce",
|
|
852
857
|
"fs_extra",
|
|
858
|
+
"pkg-config",
|
|
853
859
|
]
|
|
854
860
|
|
|
855
861
|
[[package]]
|
|
@@ -861,7 +867,7 @@ dependencies = [
|
|
|
861
867
|
"addr2line",
|
|
862
868
|
"cfg-if",
|
|
863
869
|
"libc",
|
|
864
|
-
"miniz_oxide",
|
|
870
|
+
"miniz_oxide 0.8.9",
|
|
865
871
|
"object",
|
|
866
872
|
"rustc-demangle",
|
|
867
873
|
"windows-link",
|
|
@@ -873,6 +879,12 @@ version = "0.22.1"
|
|
|
873
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
880
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
875
881
|
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "base64"
|
|
884
|
+
version = "0.23.1"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
|
|
887
|
+
|
|
876
888
|
[[package]]
|
|
877
889
|
name = "base64ct"
|
|
878
890
|
version = "1.8.3"
|
|
@@ -890,9 +902,15 @@ dependencies = [
|
|
|
890
902
|
|
|
891
903
|
[[package]]
|
|
892
904
|
name = "bitflags"
|
|
893
|
-
version = "
|
|
905
|
+
version = "1.3.2"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "bitflags"
|
|
911
|
+
version = "2.13.2"
|
|
894
912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
-
checksum = "
|
|
913
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
896
914
|
dependencies = [
|
|
897
915
|
"serde_core",
|
|
898
916
|
]
|
|
@@ -906,11 +924,20 @@ dependencies = [
|
|
|
906
924
|
"generic-array",
|
|
907
925
|
]
|
|
908
926
|
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "block-buffer"
|
|
929
|
+
version = "0.12.1"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"hybrid-array",
|
|
934
|
+
]
|
|
935
|
+
|
|
909
936
|
[[package]]
|
|
910
937
|
name = "brotli"
|
|
911
|
-
version = "8.0.
|
|
938
|
+
version = "8.0.4"
|
|
912
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
940
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
914
941
|
dependencies = [
|
|
915
942
|
"alloc-no-stdlib",
|
|
916
943
|
"alloc-stdlib",
|
|
@@ -919,19 +946,28 @@ dependencies = [
|
|
|
919
946
|
|
|
920
947
|
[[package]]
|
|
921
948
|
name = "brotli-decompressor"
|
|
922
|
-
version = "5.0.
|
|
949
|
+
version = "5.0.3"
|
|
923
950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
-
checksum = "
|
|
951
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
925
952
|
dependencies = [
|
|
926
953
|
"alloc-no-stdlib",
|
|
927
954
|
"alloc-stdlib",
|
|
928
955
|
]
|
|
929
956
|
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "bs58"
|
|
959
|
+
version = "0.5.1"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"tinyvec",
|
|
964
|
+
]
|
|
965
|
+
|
|
930
966
|
[[package]]
|
|
931
967
|
name = "bumpalo"
|
|
932
|
-
version = "3.20.
|
|
968
|
+
version = "3.20.3"
|
|
933
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
-
checksum = "
|
|
970
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
935
971
|
|
|
936
972
|
[[package]]
|
|
937
973
|
name = "byteorder"
|
|
@@ -941,15 +977,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
941
977
|
|
|
942
978
|
[[package]]
|
|
943
979
|
name = "bytes"
|
|
944
|
-
version = "1.
|
|
980
|
+
version = "1.12.1"
|
|
945
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
982
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
947
983
|
|
|
948
984
|
[[package]]
|
|
949
985
|
name = "bytestring"
|
|
950
|
-
version = "1.5.
|
|
986
|
+
version = "1.5.1"
|
|
951
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
-
checksum = "
|
|
988
|
+
checksum = "86566c496f2f47d9b8147a4c8b02ffdb69c919fe0c2b2e7195d22cbba0e635c9"
|
|
953
989
|
dependencies = [
|
|
954
990
|
"bytes",
|
|
955
991
|
]
|
|
@@ -990,9 +1026,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
990
1026
|
|
|
991
1027
|
[[package]]
|
|
992
1028
|
name = "cc"
|
|
993
|
-
version = "1.
|
|
1029
|
+
version = "1.4.6"
|
|
994
1030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
-
checksum = "
|
|
1031
|
+
checksum = "a3eb0f42d6c360dc3f8a821f6bf2fdea7f72bfd36b3076eb0e6d1e9e0752fff4"
|
|
996
1032
|
dependencies = [
|
|
997
1033
|
"find-msvc-tools",
|
|
998
1034
|
"jobserver",
|
|
@@ -1008,26 +1044,26 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
1008
1044
|
|
|
1009
1045
|
[[package]]
|
|
1010
1046
|
name = "cfg_aliases"
|
|
1011
|
-
version = "0.2.
|
|
1047
|
+
version = "0.2.2"
|
|
1012
1048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "
|
|
1049
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
1014
1050
|
|
|
1015
1051
|
[[package]]
|
|
1016
1052
|
name = "chacha20"
|
|
1017
|
-
version = "0.10.
|
|
1053
|
+
version = "0.10.2"
|
|
1018
1054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
1055
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
1020
1056
|
dependencies = [
|
|
1021
1057
|
"cfg-if",
|
|
1022
|
-
"cpufeatures 0.3.
|
|
1023
|
-
"rand_core 0.10.
|
|
1058
|
+
"cpufeatures 0.3.1",
|
|
1059
|
+
"rand_core 0.10.1",
|
|
1024
1060
|
]
|
|
1025
1061
|
|
|
1026
1062
|
[[package]]
|
|
1027
1063
|
name = "chrono"
|
|
1028
|
-
version = "0.4.
|
|
1064
|
+
version = "0.4.45"
|
|
1029
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
-
checksum = "
|
|
1066
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
1031
1067
|
dependencies = [
|
|
1032
1068
|
"iana-time-zone",
|
|
1033
1069
|
"js-sys",
|
|
@@ -1076,27 +1112,24 @@ dependencies = [
|
|
|
1076
1112
|
|
|
1077
1113
|
[[package]]
|
|
1078
1114
|
name = "claims"
|
|
1079
|
-
version = "0.
|
|
1115
|
+
version = "0.8.0"
|
|
1080
1116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1082
|
-
dependencies = [
|
|
1083
|
-
"autocfg",
|
|
1084
|
-
]
|
|
1117
|
+
checksum = "bba18ee93d577a8428902687bcc2b6b45a56b1981a1f6d779731c86cc4c5db18"
|
|
1085
1118
|
|
|
1086
1119
|
[[package]]
|
|
1087
1120
|
name = "clap"
|
|
1088
|
-
version = "4.6.
|
|
1121
|
+
version = "4.6.6"
|
|
1089
1122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
-
checksum = "
|
|
1123
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
1091
1124
|
dependencies = [
|
|
1092
1125
|
"clap_builder",
|
|
1093
1126
|
]
|
|
1094
1127
|
|
|
1095
1128
|
[[package]]
|
|
1096
1129
|
name = "clap_builder"
|
|
1097
|
-
version = "4.6.
|
|
1130
|
+
version = "4.6.6"
|
|
1098
1131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1132
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
1100
1133
|
dependencies = [
|
|
1101
1134
|
"anstyle",
|
|
1102
1135
|
"clap_lex",
|
|
@@ -1110,9 +1143,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
|
1110
1143
|
|
|
1111
1144
|
[[package]]
|
|
1112
1145
|
name = "cmake"
|
|
1113
|
-
version = "0.1.
|
|
1146
|
+
version = "0.1.58"
|
|
1114
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1148
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
1116
1149
|
dependencies = [
|
|
1117
1150
|
"cc",
|
|
1118
1151
|
]
|
|
@@ -1145,19 +1178,20 @@ dependencies = [
|
|
|
1145
1178
|
]
|
|
1146
1179
|
|
|
1147
1180
|
[[package]]
|
|
1148
|
-
name = "
|
|
1149
|
-
version = "
|
|
1181
|
+
name = "combine"
|
|
1182
|
+
version = "4.6.8"
|
|
1150
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "
|
|
1184
|
+
checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
|
|
1152
1185
|
dependencies = [
|
|
1153
|
-
"
|
|
1186
|
+
"bytes",
|
|
1187
|
+
"memchr",
|
|
1154
1188
|
]
|
|
1155
1189
|
|
|
1156
1190
|
[[package]]
|
|
1157
1191
|
name = "config"
|
|
1158
|
-
version = "0.15.
|
|
1192
|
+
version = "0.15.25"
|
|
1159
1193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
-
checksum = "
|
|
1194
|
+
checksum = "b85f248a4de22d204ceabc6299d89d2c70fbd7f09fea53c06c852369652d8139"
|
|
1161
1195
|
dependencies = [
|
|
1162
1196
|
"async-trait",
|
|
1163
1197
|
"convert_case 0.6.0",
|
|
@@ -1179,6 +1213,12 @@ version = "0.9.6"
|
|
|
1179
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
1214
|
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
1181
1215
|
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "const-oid"
|
|
1218
|
+
version = "0.10.2"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
1221
|
+
|
|
1182
1222
|
[[package]]
|
|
1183
1223
|
name = "const-random"
|
|
1184
1224
|
version = "0.1.18"
|
|
@@ -1244,6 +1284,12 @@ version = "0.8.7"
|
|
|
1244
1284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
1285
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
1246
1286
|
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "core_detect"
|
|
1289
|
+
version = "1.0.0"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "7f8f80099a98041a3d1622845c271458a2d73e688351bf3cb999266764b81d48"
|
|
1292
|
+
|
|
1247
1293
|
[[package]]
|
|
1248
1294
|
name = "cpufeatures"
|
|
1249
1295
|
version = "0.2.17"
|
|
@@ -1255,9 +1301,9 @@ dependencies = [
|
|
|
1255
1301
|
|
|
1256
1302
|
[[package]]
|
|
1257
1303
|
name = "cpufeatures"
|
|
1258
|
-
version = "0.3.
|
|
1304
|
+
version = "0.3.1"
|
|
1259
1305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
-
checksum = "
|
|
1306
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
1261
1307
|
dependencies = [
|
|
1262
1308
|
"libc",
|
|
1263
1309
|
]
|
|
@@ -1273,15 +1319,15 @@ dependencies = [
|
|
|
1273
1319
|
|
|
1274
1320
|
[[package]]
|
|
1275
1321
|
name = "crc-catalog"
|
|
1276
|
-
version = "2.
|
|
1322
|
+
version = "2.5.0"
|
|
1277
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
-
checksum = "
|
|
1324
|
+
checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
|
|
1279
1325
|
|
|
1280
1326
|
[[package]]
|
|
1281
1327
|
name = "crc32fast"
|
|
1282
|
-
version = "1.5.
|
|
1328
|
+
version = "1.5.2"
|
|
1283
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
-
checksum = "
|
|
1330
|
+
checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
|
|
1285
1331
|
dependencies = [
|
|
1286
1332
|
"cfg-if",
|
|
1287
1333
|
]
|
|
@@ -1343,11 +1389,20 @@ dependencies = [
|
|
|
1343
1389
|
"strum",
|
|
1344
1390
|
]
|
|
1345
1391
|
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "crossbeam-channel"
|
|
1394
|
+
version = "0.5.17"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"crossbeam-utils",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1346
1401
|
[[package]]
|
|
1347
1402
|
name = "crossbeam-deque"
|
|
1348
|
-
version = "0.8.
|
|
1403
|
+
version = "0.8.8"
|
|
1349
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
-
checksum = "
|
|
1405
|
+
checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
|
|
1351
1406
|
dependencies = [
|
|
1352
1407
|
"crossbeam-epoch",
|
|
1353
1408
|
"crossbeam-utils",
|
|
@@ -1355,27 +1410,27 @@ dependencies = [
|
|
|
1355
1410
|
|
|
1356
1411
|
[[package]]
|
|
1357
1412
|
name = "crossbeam-epoch"
|
|
1358
|
-
version = "0.9.
|
|
1413
|
+
version = "0.9.21"
|
|
1359
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
-
checksum = "
|
|
1415
|
+
checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
|
|
1361
1416
|
dependencies = [
|
|
1362
1417
|
"crossbeam-utils",
|
|
1363
1418
|
]
|
|
1364
1419
|
|
|
1365
1420
|
[[package]]
|
|
1366
1421
|
name = "crossbeam-queue"
|
|
1367
|
-
version = "0.3.
|
|
1422
|
+
version = "0.3.14"
|
|
1368
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
-
checksum = "
|
|
1424
|
+
checksum = "03e8bd762f7479489c70ed6c768ddca99d7296857de437a68dcb2a94365b3fae"
|
|
1370
1425
|
dependencies = [
|
|
1371
1426
|
"crossbeam-utils",
|
|
1372
1427
|
]
|
|
1373
1428
|
|
|
1374
1429
|
[[package]]
|
|
1375
1430
|
name = "crossbeam-utils"
|
|
1376
|
-
version = "0.8.
|
|
1431
|
+
version = "0.8.23"
|
|
1377
1432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
-
checksum = "
|
|
1433
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
1379
1434
|
|
|
1380
1435
|
[[package]]
|
|
1381
1436
|
name = "crunchy"
|
|
@@ -1393,6 +1448,15 @@ dependencies = [
|
|
|
1393
1448
|
"typenum",
|
|
1394
1449
|
]
|
|
1395
1450
|
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "crypto-common"
|
|
1453
|
+
version = "0.2.2"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"hybrid-array",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1396
1460
|
[[package]]
|
|
1397
1461
|
name = "csv"
|
|
1398
1462
|
version = "1.4.0"
|
|
@@ -1426,12 +1490,12 @@ dependencies = [
|
|
|
1426
1490
|
|
|
1427
1491
|
[[package]]
|
|
1428
1492
|
name = "darling"
|
|
1429
|
-
version = "0.
|
|
1493
|
+
version = "0.24.1"
|
|
1430
1494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
-
checksum = "
|
|
1495
|
+
checksum = "ed17f5901b6630b993ca003def43f2f8ef4014fc13b047b57aad617ff32bc2ec"
|
|
1432
1496
|
dependencies = [
|
|
1433
|
-
"darling_core 0.
|
|
1434
|
-
"darling_macro 0.
|
|
1497
|
+
"darling_core 0.24.1",
|
|
1498
|
+
"darling_macro 0.24.1",
|
|
1435
1499
|
]
|
|
1436
1500
|
|
|
1437
1501
|
[[package]]
|
|
@@ -1445,20 +1509,20 @@ dependencies = [
|
|
|
1445
1509
|
"proc-macro2",
|
|
1446
1510
|
"quote",
|
|
1447
1511
|
"strsim",
|
|
1448
|
-
"syn",
|
|
1512
|
+
"syn 2.0.119",
|
|
1449
1513
|
]
|
|
1450
1514
|
|
|
1451
1515
|
[[package]]
|
|
1452
1516
|
name = "darling_core"
|
|
1453
|
-
version = "0.
|
|
1517
|
+
version = "0.24.1"
|
|
1454
1518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
-
checksum = "
|
|
1519
|
+
checksum = "6837e2cf7485aaae18f86181d2f0e9a7ed297a025e220aeabf63fdebd3a2ddff"
|
|
1456
1520
|
dependencies = [
|
|
1457
1521
|
"ident_case",
|
|
1458
1522
|
"proc-macro2",
|
|
1459
1523
|
"quote",
|
|
1460
1524
|
"strsim",
|
|
1461
|
-
"syn",
|
|
1525
|
+
"syn 3.0.5",
|
|
1462
1526
|
]
|
|
1463
1527
|
|
|
1464
1528
|
[[package]]
|
|
@@ -1469,25 +1533,25 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
|
1469
1533
|
dependencies = [
|
|
1470
1534
|
"darling_core 0.20.11",
|
|
1471
1535
|
"quote",
|
|
1472
|
-
"syn",
|
|
1536
|
+
"syn 2.0.119",
|
|
1473
1537
|
]
|
|
1474
1538
|
|
|
1475
1539
|
[[package]]
|
|
1476
1540
|
name = "darling_macro"
|
|
1477
|
-
version = "0.
|
|
1541
|
+
version = "0.24.1"
|
|
1478
1542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
-
checksum = "
|
|
1543
|
+
checksum = "2ac7135c3ef02b2f7833bbeb1be5ba7f966dcde8a87c6b87f65a778d71a02785"
|
|
1480
1544
|
dependencies = [
|
|
1481
|
-
"darling_core 0.
|
|
1545
|
+
"darling_core 0.24.1",
|
|
1482
1546
|
"quote",
|
|
1483
|
-
"syn",
|
|
1547
|
+
"syn 3.0.5",
|
|
1484
1548
|
]
|
|
1485
1549
|
|
|
1486
1550
|
[[package]]
|
|
1487
1551
|
name = "data-encoding"
|
|
1488
|
-
version = "2.
|
|
1552
|
+
version = "2.11.1"
|
|
1489
1553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
-
checksum = "
|
|
1554
|
+
checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
|
|
1491
1555
|
|
|
1492
1556
|
[[package]]
|
|
1493
1557
|
name = "deadpool"
|
|
@@ -1507,13 +1571,44 @@ version = "0.1.4"
|
|
|
1507
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
1572
|
checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
|
|
1509
1573
|
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "defmt"
|
|
1576
|
+
version = "1.1.1"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"bitflags 1.3.2",
|
|
1581
|
+
"defmt-macros",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "defmt-macros"
|
|
1586
|
+
version = "1.1.1"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"defmt-parser",
|
|
1591
|
+
"proc-macro2",
|
|
1592
|
+
"quote",
|
|
1593
|
+
"syn 2.0.119",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "defmt-parser"
|
|
1598
|
+
version = "1.0.0"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"thiserror 2.0.20",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1510
1605
|
[[package]]
|
|
1511
1606
|
name = "der"
|
|
1512
1607
|
version = "0.7.10"
|
|
1513
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
1609
|
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1515
1610
|
dependencies = [
|
|
1516
|
-
"const-oid",
|
|
1611
|
+
"const-oid 0.9.6",
|
|
1517
1612
|
"pem-rfc7468",
|
|
1518
1613
|
"zeroize",
|
|
1519
1614
|
]
|
|
@@ -1527,7 +1622,7 @@ dependencies = [
|
|
|
1527
1622
|
"asn1-rs",
|
|
1528
1623
|
"displaydoc",
|
|
1529
1624
|
"nom",
|
|
1530
|
-
"num-bigint",
|
|
1625
|
+
"num-bigint 0.4.8",
|
|
1531
1626
|
"num-traits",
|
|
1532
1627
|
"rusticata-macros",
|
|
1533
1628
|
]
|
|
@@ -1538,7 +1633,6 @@ version = "0.5.8"
|
|
|
1538
1633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
1634
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
1540
1635
|
dependencies = [
|
|
1541
|
-
"powerfmt",
|
|
1542
1636
|
"serde_core",
|
|
1543
1637
|
]
|
|
1544
1638
|
|
|
@@ -1560,7 +1654,7 @@ dependencies = [
|
|
|
1560
1654
|
"darling 0.20.11",
|
|
1561
1655
|
"proc-macro2",
|
|
1562
1656
|
"quote",
|
|
1563
|
-
"syn",
|
|
1657
|
+
"syn 2.0.119",
|
|
1564
1658
|
]
|
|
1565
1659
|
|
|
1566
1660
|
[[package]]
|
|
@@ -1570,7 +1664,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1570
1664
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
1571
1665
|
dependencies = [
|
|
1572
1666
|
"derive_builder_core",
|
|
1573
|
-
"syn",
|
|
1667
|
+
"syn 2.0.119",
|
|
1574
1668
|
]
|
|
1575
1669
|
|
|
1576
1670
|
[[package]]
|
|
@@ -1592,7 +1686,7 @@ dependencies = [
|
|
|
1592
1686
|
"proc-macro2",
|
|
1593
1687
|
"quote",
|
|
1594
1688
|
"rustc_version",
|
|
1595
|
-
"syn",
|
|
1689
|
+
"syn 2.0.119",
|
|
1596
1690
|
"unicode-xid",
|
|
1597
1691
|
]
|
|
1598
1692
|
|
|
@@ -1608,21 +1702,32 @@ version = "0.10.7"
|
|
|
1608
1702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
1703
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1610
1704
|
dependencies = [
|
|
1611
|
-
"block-buffer",
|
|
1612
|
-
"const-oid",
|
|
1613
|
-
"crypto-common",
|
|
1705
|
+
"block-buffer 0.10.4",
|
|
1706
|
+
"const-oid 0.9.6",
|
|
1707
|
+
"crypto-common 0.1.7",
|
|
1614
1708
|
"subtle",
|
|
1615
1709
|
]
|
|
1616
1710
|
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "digest"
|
|
1713
|
+
version = "0.11.3"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"block-buffer 0.12.1",
|
|
1718
|
+
"const-oid 0.10.2",
|
|
1719
|
+
"crypto-common 0.2.2",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1617
1722
|
[[package]]
|
|
1618
1723
|
name = "displaydoc"
|
|
1619
|
-
version = "0.2.
|
|
1724
|
+
version = "0.2.7"
|
|
1620
1725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
-
checksum = "
|
|
1726
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
1622
1727
|
dependencies = [
|
|
1623
1728
|
"proc-macro2",
|
|
1624
1729
|
"quote",
|
|
1625
|
-
"syn",
|
|
1730
|
+
"syn 3.0.5",
|
|
1626
1731
|
]
|
|
1627
1732
|
|
|
1628
1733
|
[[package]]
|
|
@@ -1649,7 +1754,7 @@ dependencies = [
|
|
|
1649
1754
|
"darling 0.20.11",
|
|
1650
1755
|
"proc-macro2",
|
|
1651
1756
|
"quote",
|
|
1652
|
-
"syn",
|
|
1757
|
+
"syn 2.0.119",
|
|
1653
1758
|
]
|
|
1654
1759
|
|
|
1655
1760
|
[[package]]
|
|
@@ -1666,20 +1771,35 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1666
1771
|
|
|
1667
1772
|
[[package]]
|
|
1668
1773
|
name = "either"
|
|
1669
|
-
version = "1.
|
|
1774
|
+
version = "1.18.0"
|
|
1670
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
-
checksum = "
|
|
1776
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
1672
1777
|
dependencies = [
|
|
1673
1778
|
"serde",
|
|
1674
1779
|
]
|
|
1675
1780
|
|
|
1676
1781
|
[[package]]
|
|
1677
1782
|
name = "encoding_rs"
|
|
1678
|
-
version = "0.8.
|
|
1783
|
+
version = "0.8.41"
|
|
1679
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
-
checksum = "
|
|
1785
|
+
checksum = "7b5ef0006ac9ab233c38522f5ae99cae3625151de8f706cacee1cba4b8e2832a"
|
|
1681
1786
|
dependencies = [
|
|
1682
1787
|
"cfg-if",
|
|
1788
|
+
"core_detect",
|
|
1789
|
+
"multiversion",
|
|
1790
|
+
"multiversion_no_op",
|
|
1791
|
+
"rustversion",
|
|
1792
|
+
"scopeguard",
|
|
1793
|
+
"simdutf8",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "encoding_rs_io"
|
|
1798
|
+
version = "0.1.8"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "fba3fe847045ecff794b9c138293a80db914678c453ad63fbf0c6a9eb6e00b22"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"encoding_rs",
|
|
1683
1803
|
]
|
|
1684
1804
|
|
|
1685
1805
|
[[package]]
|
|
@@ -1691,14 +1811,14 @@ dependencies = [
|
|
|
1691
1811
|
"heck",
|
|
1692
1812
|
"proc-macro2",
|
|
1693
1813
|
"quote",
|
|
1694
|
-
"syn",
|
|
1814
|
+
"syn 2.0.119",
|
|
1695
1815
|
]
|
|
1696
1816
|
|
|
1697
1817
|
[[package]]
|
|
1698
1818
|
name = "env_filter"
|
|
1699
|
-
version = "
|
|
1819
|
+
version = "2.0.0"
|
|
1700
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
-
checksum = "
|
|
1821
|
+
checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
|
|
1702
1822
|
dependencies = [
|
|
1703
1823
|
"log",
|
|
1704
1824
|
"regex",
|
|
@@ -1706,9 +1826,9 @@ dependencies = [
|
|
|
1706
1826
|
|
|
1707
1827
|
[[package]]
|
|
1708
1828
|
name = "env_logger"
|
|
1709
|
-
version = "0.11.
|
|
1829
|
+
version = "0.11.11"
|
|
1710
1830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
-
checksum = "
|
|
1831
|
+
checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
|
|
1712
1832
|
dependencies = [
|
|
1713
1833
|
"env_filter",
|
|
1714
1834
|
"log",
|
|
@@ -1754,21 +1874,21 @@ dependencies = [
|
|
|
1754
1874
|
|
|
1755
1875
|
[[package]]
|
|
1756
1876
|
name = "event-listener"
|
|
1757
|
-
version = "5.4.
|
|
1877
|
+
version = "5.4.2"
|
|
1758
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
-
checksum = "
|
|
1879
|
+
checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2"
|
|
1760
1880
|
dependencies = [
|
|
1761
|
-
"concurrent-queue",
|
|
1762
1881
|
"parking",
|
|
1763
1882
|
"pin-project-lite",
|
|
1764
1883
|
]
|
|
1765
1884
|
|
|
1766
1885
|
[[package]]
|
|
1767
1886
|
name = "eyre"
|
|
1768
|
-
version = "0.6.
|
|
1887
|
+
version = "0.6.14"
|
|
1769
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
-
checksum = "
|
|
1889
|
+
checksum = "c08309dbcc659c5549a24ddb9b27027640641b282ef5768267c7e675558986a3"
|
|
1771
1890
|
dependencies = [
|
|
1891
|
+
"autocfg",
|
|
1772
1892
|
"indenter",
|
|
1773
1893
|
"once_cell",
|
|
1774
1894
|
]
|
|
@@ -1783,14 +1903,14 @@ dependencies = [
|
|
|
1783
1903
|
"deunicode",
|
|
1784
1904
|
"dummy",
|
|
1785
1905
|
"either",
|
|
1786
|
-
"rand 0.10.
|
|
1906
|
+
"rand 0.10.2",
|
|
1787
1907
|
]
|
|
1788
1908
|
|
|
1789
1909
|
[[package]]
|
|
1790
1910
|
name = "find-msvc-tools"
|
|
1791
|
-
version = "0.1.
|
|
1911
|
+
version = "0.1.12"
|
|
1792
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
-
checksum = "
|
|
1913
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
1794
1914
|
|
|
1795
1915
|
[[package]]
|
|
1796
1916
|
name = "fixedbitset"
|
|
@@ -1804,18 +1924,18 @@ version = "25.12.19"
|
|
|
1804
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
1925
|
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
1806
1926
|
dependencies = [
|
|
1807
|
-
"bitflags",
|
|
1927
|
+
"bitflags 2.13.2",
|
|
1808
1928
|
"rustc_version",
|
|
1809
1929
|
]
|
|
1810
1930
|
|
|
1811
1931
|
[[package]]
|
|
1812
1932
|
name = "flate2"
|
|
1813
|
-
version = "1.1.
|
|
1933
|
+
version = "1.1.10"
|
|
1814
1934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
-
checksum = "
|
|
1935
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
1816
1936
|
dependencies = [
|
|
1817
1937
|
"crc32fast",
|
|
1818
|
-
"miniz_oxide",
|
|
1938
|
+
"miniz_oxide 0.9.1",
|
|
1819
1939
|
"zlib-rs",
|
|
1820
1940
|
]
|
|
1821
1941
|
|
|
@@ -1827,7 +1947,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
|
|
|
1827
1947
|
dependencies = [
|
|
1828
1948
|
"futures-core",
|
|
1829
1949
|
"futures-sink",
|
|
1830
|
-
"spin 0.9.
|
|
1950
|
+
"spin 0.9.9",
|
|
1831
1951
|
]
|
|
1832
1952
|
|
|
1833
1953
|
[[package]]
|
|
@@ -1842,6 +1962,12 @@ version = "0.1.5"
|
|
|
1842
1962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
1963
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1844
1964
|
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "foldhash"
|
|
1967
|
+
version = "0.2.0"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1970
|
+
|
|
1845
1971
|
[[package]]
|
|
1846
1972
|
name = "form_urlencoded"
|
|
1847
1973
|
version = "1.2.2"
|
|
@@ -1859,9 +1985,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
|
1859
1985
|
|
|
1860
1986
|
[[package]]
|
|
1861
1987
|
name = "futures"
|
|
1862
|
-
version = "0.3.
|
|
1988
|
+
version = "0.3.34"
|
|
1863
1989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
-
checksum = "
|
|
1990
|
+
checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
|
|
1865
1991
|
dependencies = [
|
|
1866
1992
|
"futures-channel",
|
|
1867
1993
|
"futures-core",
|
|
@@ -1874,9 +2000,9 @@ dependencies = [
|
|
|
1874
2000
|
|
|
1875
2001
|
[[package]]
|
|
1876
2002
|
name = "futures-channel"
|
|
1877
|
-
version = "0.3.
|
|
2003
|
+
version = "0.3.34"
|
|
1878
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
-
checksum = "
|
|
2005
|
+
checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
|
|
1880
2006
|
dependencies = [
|
|
1881
2007
|
"futures-core",
|
|
1882
2008
|
"futures-sink",
|
|
@@ -1884,15 +2010,15 @@ dependencies = [
|
|
|
1884
2010
|
|
|
1885
2011
|
[[package]]
|
|
1886
2012
|
name = "futures-core"
|
|
1887
|
-
version = "0.3.
|
|
2013
|
+
version = "0.3.34"
|
|
1888
2014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
-
checksum = "
|
|
2015
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
1890
2016
|
|
|
1891
2017
|
[[package]]
|
|
1892
2018
|
name = "futures-executor"
|
|
1893
|
-
version = "0.3.
|
|
2019
|
+
version = "0.3.34"
|
|
1894
2020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
-
checksum = "
|
|
2021
|
+
checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
|
|
1896
2022
|
dependencies = [
|
|
1897
2023
|
"futures-core",
|
|
1898
2024
|
"futures-task",
|
|
@@ -1912,38 +2038,38 @@ dependencies = [
|
|
|
1912
2038
|
|
|
1913
2039
|
[[package]]
|
|
1914
2040
|
name = "futures-io"
|
|
1915
|
-
version = "0.3.
|
|
2041
|
+
version = "0.3.34"
|
|
1916
2042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
2043
|
+
checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
|
|
1918
2044
|
|
|
1919
2045
|
[[package]]
|
|
1920
2046
|
name = "futures-macro"
|
|
1921
|
-
version = "0.3.
|
|
2047
|
+
version = "0.3.34"
|
|
1922
2048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
-
checksum = "
|
|
2049
|
+
checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
|
|
1924
2050
|
dependencies = [
|
|
1925
2051
|
"proc-macro2",
|
|
1926
2052
|
"quote",
|
|
1927
|
-
"syn",
|
|
2053
|
+
"syn 3.0.5",
|
|
1928
2054
|
]
|
|
1929
2055
|
|
|
1930
2056
|
[[package]]
|
|
1931
2057
|
name = "futures-sink"
|
|
1932
|
-
version = "0.3.
|
|
2058
|
+
version = "0.3.34"
|
|
1933
2059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
-
checksum = "
|
|
2060
|
+
checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
|
|
1935
2061
|
|
|
1936
2062
|
[[package]]
|
|
1937
2063
|
name = "futures-task"
|
|
1938
|
-
version = "0.3.
|
|
2064
|
+
version = "0.3.34"
|
|
1939
2065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
-
checksum = "
|
|
2066
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
1941
2067
|
|
|
1942
2068
|
[[package]]
|
|
1943
2069
|
name = "futures-util"
|
|
1944
|
-
version = "0.3.
|
|
2070
|
+
version = "0.3.34"
|
|
1945
2071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
-
checksum = "
|
|
2072
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
1947
2073
|
dependencies = [
|
|
1948
2074
|
"futures-channel",
|
|
1949
2075
|
"futures-core",
|
|
@@ -2005,16 +2131,16 @@ dependencies = [
|
|
|
2005
2131
|
|
|
2006
2132
|
[[package]]
|
|
2007
2133
|
name = "getrandom"
|
|
2008
|
-
version = "0.4.
|
|
2134
|
+
version = "0.4.3"
|
|
2009
2135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
-
checksum = "
|
|
2136
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
2011
2137
|
dependencies = [
|
|
2012
2138
|
"cfg-if",
|
|
2139
|
+
"js-sys",
|
|
2013
2140
|
"libc",
|
|
2014
2141
|
"r-efi 6.0.0",
|
|
2015
|
-
"rand_core 0.10.
|
|
2016
|
-
"
|
|
2017
|
-
"wasip3",
|
|
2142
|
+
"rand_core 0.10.1",
|
|
2143
|
+
"wasm-bindgen",
|
|
2018
2144
|
]
|
|
2019
2145
|
|
|
2020
2146
|
[[package]]
|
|
@@ -2024,10 +2150,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2024
2150
|
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
2025
2151
|
|
|
2026
2152
|
[[package]]
|
|
2027
|
-
name = "
|
|
2028
|
-
version = "0.
|
|
2153
|
+
name = "granit-parser"
|
|
2154
|
+
version = "0.0.7"
|
|
2029
2155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
-
checksum = "
|
|
2156
|
+
checksum = "d03f81ad4732830d85cfd417a9f62cde6dadda4354d37d078a6084a19560aa2d"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"arraydeque",
|
|
2159
|
+
"smallvec",
|
|
2160
|
+
]
|
|
2031
2161
|
|
|
2032
2162
|
[[package]]
|
|
2033
2163
|
name = "h2"
|
|
@@ -2041,7 +2171,7 @@ dependencies = [
|
|
|
2041
2171
|
"futures-sink",
|
|
2042
2172
|
"futures-util",
|
|
2043
2173
|
"http 0.2.12",
|
|
2044
|
-
"indexmap 2.
|
|
2174
|
+
"indexmap 2.14.2",
|
|
2045
2175
|
"slab",
|
|
2046
2176
|
"tokio",
|
|
2047
2177
|
"tokio-util",
|
|
@@ -2050,17 +2180,17 @@ dependencies = [
|
|
|
2050
2180
|
|
|
2051
2181
|
[[package]]
|
|
2052
2182
|
name = "h2"
|
|
2053
|
-
version = "0.4.
|
|
2183
|
+
version = "0.4.19"
|
|
2054
2184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
-
checksum = "
|
|
2185
|
+
checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16"
|
|
2056
2186
|
dependencies = [
|
|
2057
2187
|
"atomic-waker",
|
|
2058
2188
|
"bytes",
|
|
2059
2189
|
"fnv",
|
|
2060
2190
|
"futures-core",
|
|
2061
2191
|
"futures-sink",
|
|
2062
|
-
"http 1.
|
|
2063
|
-
"indexmap 2.
|
|
2192
|
+
"http 1.5.0",
|
|
2193
|
+
"indexmap 2.14.2",
|
|
2064
2194
|
"slab",
|
|
2065
2195
|
"tokio",
|
|
2066
2196
|
"tokio-util",
|
|
@@ -2102,7 +2232,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
|
2102
2232
|
dependencies = [
|
|
2103
2233
|
"allocator-api2",
|
|
2104
2234
|
"equivalent",
|
|
2105
|
-
"foldhash",
|
|
2235
|
+
"foldhash 0.1.5",
|
|
2106
2236
|
]
|
|
2107
2237
|
|
|
2108
2238
|
[[package]]
|
|
@@ -2110,6 +2240,15 @@ name = "hashbrown"
|
|
|
2110
2240
|
version = "0.16.1"
|
|
2111
2241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
2242
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
2243
|
+
dependencies = [
|
|
2244
|
+
"foldhash 0.2.0",
|
|
2245
|
+
]
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "hashbrown"
|
|
2249
|
+
version = "0.17.1"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
2113
2252
|
|
|
2114
2253
|
[[package]]
|
|
2115
2254
|
name = "hashlink"
|
|
@@ -2129,6 +2268,15 @@ dependencies = [
|
|
|
2129
2268
|
"hashbrown 0.15.5",
|
|
2130
2269
|
]
|
|
2131
2270
|
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "hashlink"
|
|
2273
|
+
version = "0.11.1"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"hashbrown 0.16.1",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2132
2280
|
[[package]]
|
|
2133
2281
|
name = "heck"
|
|
2134
2282
|
version = "0.5.0"
|
|
@@ -2137,9 +2285,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
2137
2285
|
|
|
2138
2286
|
[[package]]
|
|
2139
2287
|
name = "hermit-abi"
|
|
2140
|
-
version = "0.5.
|
|
2288
|
+
version = "0.5.3"
|
|
2141
2289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
-
checksum = "
|
|
2290
|
+
checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
|
|
2143
2291
|
|
|
2144
2292
|
[[package]]
|
|
2145
2293
|
name = "hex"
|
|
@@ -2162,7 +2310,7 @@ version = "0.12.1"
|
|
|
2162
2310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
2311
|
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
2164
2312
|
dependencies = [
|
|
2165
|
-
"digest",
|
|
2313
|
+
"digest 0.10.7",
|
|
2166
2314
|
]
|
|
2167
2315
|
|
|
2168
2316
|
[[package]]
|
|
@@ -2187,9 +2335,9 @@ dependencies = [
|
|
|
2187
2335
|
|
|
2188
2336
|
[[package]]
|
|
2189
2337
|
name = "http"
|
|
2190
|
-
version = "1.
|
|
2338
|
+
version = "1.5.0"
|
|
2191
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
-
checksum = "
|
|
2340
|
+
checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
|
|
2193
2341
|
dependencies = [
|
|
2194
2342
|
"bytes",
|
|
2195
2343
|
"itoa",
|
|
@@ -2197,23 +2345,23 @@ dependencies = [
|
|
|
2197
2345
|
|
|
2198
2346
|
[[package]]
|
|
2199
2347
|
name = "http-body"
|
|
2200
|
-
version = "1.0
|
|
2348
|
+
version = "1.1.0"
|
|
2201
2349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
-
checksum = "
|
|
2350
|
+
checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
|
|
2203
2351
|
dependencies = [
|
|
2204
2352
|
"bytes",
|
|
2205
|
-
"http 1.
|
|
2353
|
+
"http 1.5.0",
|
|
2206
2354
|
]
|
|
2207
2355
|
|
|
2208
2356
|
[[package]]
|
|
2209
2357
|
name = "http-body-util"
|
|
2210
|
-
version = "0.1.
|
|
2358
|
+
version = "0.1.5"
|
|
2211
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
-
checksum = "
|
|
2360
|
+
checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
|
|
2213
2361
|
dependencies = [
|
|
2214
2362
|
"bytes",
|
|
2215
2363
|
"futures-core",
|
|
2216
|
-
"http 1.
|
|
2364
|
+
"http 1.5.0",
|
|
2217
2365
|
"http-body",
|
|
2218
2366
|
"pin-project-lite",
|
|
2219
2367
|
]
|
|
@@ -2230,24 +2378,32 @@ version = "1.0.3"
|
|
|
2230
2378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
2379
|
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2232
2380
|
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "hybrid-array"
|
|
2383
|
+
version = "0.4.15"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
|
|
2386
|
+
dependencies = [
|
|
2387
|
+
"typenum",
|
|
2388
|
+
]
|
|
2389
|
+
|
|
2233
2390
|
[[package]]
|
|
2234
2391
|
name = "hyper"
|
|
2235
|
-
version = "1.
|
|
2392
|
+
version = "1.11.1"
|
|
2236
2393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
-
checksum = "
|
|
2394
|
+
checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
|
|
2238
2395
|
dependencies = [
|
|
2239
2396
|
"atomic-waker",
|
|
2240
2397
|
"bytes",
|
|
2241
2398
|
"futures-channel",
|
|
2242
2399
|
"futures-core",
|
|
2243
|
-
"h2 0.4.
|
|
2244
|
-
"http 1.
|
|
2400
|
+
"h2 0.4.19",
|
|
2401
|
+
"http 1.5.0",
|
|
2245
2402
|
"http-body",
|
|
2246
2403
|
"httparse",
|
|
2247
2404
|
"httpdate",
|
|
2248
2405
|
"itoa",
|
|
2249
2406
|
"pin-project-lite",
|
|
2250
|
-
"pin-utils",
|
|
2251
2407
|
"smallvec",
|
|
2252
2408
|
"tokio",
|
|
2253
2409
|
"want",
|
|
@@ -2255,21 +2411,20 @@ dependencies = [
|
|
|
2255
2411
|
|
|
2256
2412
|
[[package]]
|
|
2257
2413
|
name = "hyper-rustls"
|
|
2258
|
-
version = "0.27.
|
|
2414
|
+
version = "0.27.9"
|
|
2259
2415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
-
checksum = "
|
|
2416
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
2261
2417
|
dependencies = [
|
|
2262
|
-
"http 1.
|
|
2418
|
+
"http 1.5.0",
|
|
2263
2419
|
"hyper",
|
|
2264
2420
|
"hyper-util",
|
|
2265
2421
|
"log",
|
|
2266
2422
|
"rustls",
|
|
2267
2423
|
"rustls-native-certs",
|
|
2268
|
-
"rustls-pki-types",
|
|
2269
2424
|
"tokio",
|
|
2270
2425
|
"tokio-rustls",
|
|
2271
2426
|
"tower-service",
|
|
2272
|
-
"webpki-roots 1.0.
|
|
2427
|
+
"webpki-roots 1.0.9",
|
|
2273
2428
|
]
|
|
2274
2429
|
|
|
2275
2430
|
[[package]]
|
|
@@ -2291,18 +2446,18 @@ version = "0.1.20"
|
|
|
2291
2446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
2447
|
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
2293
2448
|
dependencies = [
|
|
2294
|
-
"base64",
|
|
2449
|
+
"base64 0.22.1",
|
|
2295
2450
|
"bytes",
|
|
2296
2451
|
"futures-channel",
|
|
2297
2452
|
"futures-util",
|
|
2298
|
-
"http 1.
|
|
2453
|
+
"http 1.5.0",
|
|
2299
2454
|
"http-body",
|
|
2300
2455
|
"hyper",
|
|
2301
2456
|
"ipnet",
|
|
2302
2457
|
"libc",
|
|
2303
2458
|
"percent-encoding",
|
|
2304
2459
|
"pin-project-lite",
|
|
2305
|
-
"socket2
|
|
2460
|
+
"socket2",
|
|
2306
2461
|
"tokio",
|
|
2307
2462
|
"tower-service",
|
|
2308
2463
|
"tracing",
|
|
@@ -2334,12 +2489,13 @@ dependencies = [
|
|
|
2334
2489
|
|
|
2335
2490
|
[[package]]
|
|
2336
2491
|
name = "icu_collections"
|
|
2337
|
-
version = "2.
|
|
2492
|
+
version = "2.3.0"
|
|
2338
2493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
-
checksum = "
|
|
2494
|
+
checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
|
|
2340
2495
|
dependencies = [
|
|
2341
2496
|
"displaydoc",
|
|
2342
2497
|
"potential_utf",
|
|
2498
|
+
"utf8_iter",
|
|
2343
2499
|
"yoke",
|
|
2344
2500
|
"zerofrom",
|
|
2345
2501
|
"zerovec",
|
|
@@ -2347,9 +2503,9 @@ dependencies = [
|
|
|
2347
2503
|
|
|
2348
2504
|
[[package]]
|
|
2349
2505
|
name = "icu_locale_core"
|
|
2350
|
-
version = "2.
|
|
2506
|
+
version = "2.3.0"
|
|
2351
2507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2352
|
-
checksum = "
|
|
2508
|
+
checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
|
|
2353
2509
|
dependencies = [
|
|
2354
2510
|
"displaydoc",
|
|
2355
2511
|
"litemap",
|
|
@@ -2360,9 +2516,9 @@ dependencies = [
|
|
|
2360
2516
|
|
|
2361
2517
|
[[package]]
|
|
2362
2518
|
name = "icu_normalizer"
|
|
2363
|
-
version = "2.
|
|
2519
|
+
version = "2.3.0"
|
|
2364
2520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
-
checksum = "
|
|
2521
|
+
checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
|
|
2366
2522
|
dependencies = [
|
|
2367
2523
|
"icu_collections",
|
|
2368
2524
|
"icu_normalizer_data",
|
|
@@ -2374,16 +2530,17 @@ dependencies = [
|
|
|
2374
2530
|
|
|
2375
2531
|
[[package]]
|
|
2376
2532
|
name = "icu_normalizer_data"
|
|
2377
|
-
version = "2.
|
|
2533
|
+
version = "2.3.0"
|
|
2378
2534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
-
checksum = "
|
|
2535
|
+
checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
|
|
2380
2536
|
|
|
2381
2537
|
[[package]]
|
|
2382
2538
|
name = "icu_properties"
|
|
2383
|
-
version = "2.
|
|
2539
|
+
version = "2.3.0"
|
|
2384
2540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2541
|
+
checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
|
|
2386
2542
|
dependencies = [
|
|
2543
|
+
"displaydoc",
|
|
2387
2544
|
"icu_collections",
|
|
2388
2545
|
"icu_locale_core",
|
|
2389
2546
|
"icu_properties_data",
|
|
@@ -2394,15 +2551,15 @@ dependencies = [
|
|
|
2394
2551
|
|
|
2395
2552
|
[[package]]
|
|
2396
2553
|
name = "icu_properties_data"
|
|
2397
|
-
version = "2.
|
|
2554
|
+
version = "2.3.0"
|
|
2398
2555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
-
checksum = "
|
|
2556
|
+
checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
2400
2557
|
|
|
2401
2558
|
[[package]]
|
|
2402
2559
|
name = "icu_provider"
|
|
2403
|
-
version = "2.
|
|
2560
|
+
version = "2.3.1"
|
|
2404
2561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
-
checksum = "
|
|
2562
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
2406
2563
|
dependencies = [
|
|
2407
2564
|
"displaydoc",
|
|
2408
2565
|
"icu_locale_core",
|
|
@@ -2413,12 +2570,6 @@ dependencies = [
|
|
|
2413
2570
|
"zerovec",
|
|
2414
2571
|
]
|
|
2415
2572
|
|
|
2416
|
-
[[package]]
|
|
2417
|
-
name = "id-arena"
|
|
2418
|
-
version = "2.3.0"
|
|
2419
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
2421
|
-
|
|
2422
2573
|
[[package]]
|
|
2423
2574
|
name = "ident_case"
|
|
2424
2575
|
version = "1.0.1"
|
|
@@ -2438,9 +2589,9 @@ dependencies = [
|
|
|
2438
2589
|
|
|
2439
2590
|
[[package]]
|
|
2440
2591
|
name = "idna_adapter"
|
|
2441
|
-
version = "1.2.
|
|
2592
|
+
version = "1.2.2"
|
|
2442
2593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
-
checksum = "
|
|
2594
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
2444
2595
|
dependencies = [
|
|
2445
2596
|
"icu_normalizer",
|
|
2446
2597
|
"icu_properties",
|
|
@@ -2448,9 +2599,9 @@ dependencies = [
|
|
|
2448
2599
|
|
|
2449
2600
|
[[package]]
|
|
2450
2601
|
name = "impl-more"
|
|
2451
|
-
version = "0.
|
|
2602
|
+
version = "0.3.8"
|
|
2452
2603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
-
checksum = "
|
|
2604
|
+
checksum = "30c0cddce6b7505483307994f60d97c4b156020e1504d0cf1f05a21b1b325e64"
|
|
2454
2605
|
|
|
2455
2606
|
[[package]]
|
|
2456
2607
|
name = "indenter"
|
|
@@ -2471,46 +2622,21 @@ dependencies = [
|
|
|
2471
2622
|
|
|
2472
2623
|
[[package]]
|
|
2473
2624
|
name = "indexmap"
|
|
2474
|
-
version = "2.
|
|
2625
|
+
version = "2.14.2"
|
|
2475
2626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
-
checksum = "
|
|
2627
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
2477
2628
|
dependencies = [
|
|
2478
2629
|
"equivalent",
|
|
2479
|
-
"hashbrown 0.
|
|
2630
|
+
"hashbrown 0.17.1",
|
|
2480
2631
|
"serde",
|
|
2481
2632
|
"serde_core",
|
|
2482
2633
|
]
|
|
2483
2634
|
|
|
2484
|
-
[[package]]
|
|
2485
|
-
name = "indoc"
|
|
2486
|
-
version = "2.0.7"
|
|
2487
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
-
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
2489
|
-
dependencies = [
|
|
2490
|
-
"rustversion",
|
|
2491
|
-
]
|
|
2492
|
-
|
|
2493
|
-
[[package]]
|
|
2494
|
-
name = "integer-encoding"
|
|
2495
|
-
version = "3.0.4"
|
|
2496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
-
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
2498
|
-
|
|
2499
2635
|
[[package]]
|
|
2500
2636
|
name = "ipnet"
|
|
2501
|
-
version = "2.12.
|
|
2502
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
-
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
2504
|
-
|
|
2505
|
-
[[package]]
|
|
2506
|
-
name = "iri-string"
|
|
2507
|
-
version = "0.7.10"
|
|
2637
|
+
version = "2.12.2"
|
|
2508
2638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
-
checksum = "
|
|
2510
|
-
dependencies = [
|
|
2511
|
-
"memchr",
|
|
2512
|
-
"serde",
|
|
2513
|
-
]
|
|
2639
|
+
checksum = "791930b43c0d5973160d90a8f3894509f2b273430f5c5c73b668636d0287c5c0"
|
|
2514
2640
|
|
|
2515
2641
|
[[package]]
|
|
2516
2642
|
name = "itertools"
|
|
@@ -2523,9 +2649,9 @@ dependencies = [
|
|
|
2523
2649
|
|
|
2524
2650
|
[[package]]
|
|
2525
2651
|
name = "itertools"
|
|
2526
|
-
version = "0.
|
|
2652
|
+
version = "0.15.0"
|
|
2527
2653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
-
checksum = "
|
|
2654
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
2529
2655
|
dependencies = [
|
|
2530
2656
|
"either",
|
|
2531
2657
|
]
|
|
@@ -2538,35 +2664,48 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
2538
2664
|
|
|
2539
2665
|
[[package]]
|
|
2540
2666
|
name = "jiff"
|
|
2541
|
-
version = "0.2.
|
|
2667
|
+
version = "0.2.37"
|
|
2542
2668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
-
checksum = "
|
|
2669
|
+
checksum = "0ab1baf72f08796de0260609515130699b890ac25f30e610ad894bc5856cafdb"
|
|
2544
2670
|
dependencies = [
|
|
2671
|
+
"defmt",
|
|
2672
|
+
"jiff-core",
|
|
2545
2673
|
"jiff-static",
|
|
2546
2674
|
"jiff-tzdb-platform",
|
|
2547
2675
|
"log",
|
|
2548
2676
|
"portable-atomic",
|
|
2549
2677
|
"portable-atomic-util",
|
|
2550
2678
|
"serde_core",
|
|
2551
|
-
"windows-
|
|
2679
|
+
"windows-link",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "jiff-core"
|
|
2684
|
+
version = "0.1.1"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "5e52fe76043ccecc9005d2305ebaadf7d7fc0cc89ca6baa10a94d6bc68c7128c"
|
|
2687
|
+
dependencies = [
|
|
2688
|
+
"defmt",
|
|
2689
|
+
"log",
|
|
2552
2690
|
]
|
|
2553
2691
|
|
|
2554
2692
|
[[package]]
|
|
2555
2693
|
name = "jiff-static"
|
|
2556
|
-
version = "0.2.
|
|
2694
|
+
version = "0.2.37"
|
|
2557
2695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
-
checksum = "
|
|
2696
|
+
checksum = "378268a1116ad67ae6228701118ac9f491d78fda38a40a1f1a9e1348de6f7212"
|
|
2559
2697
|
dependencies = [
|
|
2698
|
+
"jiff-core",
|
|
2560
2699
|
"proc-macro2",
|
|
2561
2700
|
"quote",
|
|
2562
|
-
"syn",
|
|
2701
|
+
"syn 2.0.119",
|
|
2563
2702
|
]
|
|
2564
2703
|
|
|
2565
2704
|
[[package]]
|
|
2566
2705
|
name = "jiff-tzdb"
|
|
2567
|
-
version = "0.1.
|
|
2706
|
+
version = "0.1.8"
|
|
2568
2707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
-
checksum = "
|
|
2708
|
+
checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
|
|
2570
2709
|
|
|
2571
2710
|
[[package]]
|
|
2572
2711
|
name = "jiff-tzdb-platform"
|
|
@@ -2578,22 +2717,72 @@ dependencies = [
|
|
|
2578
2717
|
]
|
|
2579
2718
|
|
|
2580
2719
|
[[package]]
|
|
2581
|
-
name = "
|
|
2582
|
-
version = "0.
|
|
2720
|
+
name = "jni"
|
|
2721
|
+
version = "0.22.4"
|
|
2583
2722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
-
checksum = "
|
|
2723
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
2585
2724
|
dependencies = [
|
|
2586
|
-
"
|
|
2587
|
-
"
|
|
2725
|
+
"cfg-if",
|
|
2726
|
+
"combine",
|
|
2727
|
+
"jni-macros",
|
|
2728
|
+
"jni-sys",
|
|
2729
|
+
"log",
|
|
2730
|
+
"simd_cesu8",
|
|
2731
|
+
"thiserror 2.0.20",
|
|
2732
|
+
"walkdir",
|
|
2733
|
+
"windows-link",
|
|
2734
|
+
]
|
|
2735
|
+
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "jni-macros"
|
|
2738
|
+
version = "0.22.4"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"proc-macro2",
|
|
2743
|
+
"quote",
|
|
2744
|
+
"rustc_version",
|
|
2745
|
+
"simd_cesu8",
|
|
2746
|
+
"syn 2.0.119",
|
|
2747
|
+
]
|
|
2748
|
+
|
|
2749
|
+
[[package]]
|
|
2750
|
+
name = "jni-sys"
|
|
2751
|
+
version = "0.4.1"
|
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2753
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
2754
|
+
dependencies = [
|
|
2755
|
+
"jni-sys-macros",
|
|
2756
|
+
]
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "jni-sys-macros"
|
|
2760
|
+
version = "0.4.1"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
2763
|
+
dependencies = [
|
|
2764
|
+
"quote",
|
|
2765
|
+
"syn 2.0.119",
|
|
2766
|
+
]
|
|
2767
|
+
|
|
2768
|
+
[[package]]
|
|
2769
|
+
name = "jobserver"
|
|
2770
|
+
version = "0.1.35"
|
|
2771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2772
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
2773
|
+
dependencies = [
|
|
2774
|
+
"getrandom 0.4.3",
|
|
2775
|
+
"libc",
|
|
2588
2776
|
]
|
|
2589
2777
|
|
|
2590
2778
|
[[package]]
|
|
2591
2779
|
name = "js-sys"
|
|
2592
|
-
version = "0.3.
|
|
2780
|
+
version = "0.3.105"
|
|
2593
2781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
-
checksum = "
|
|
2782
|
+
checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
|
|
2595
2783
|
dependencies = [
|
|
2596
|
-
"
|
|
2784
|
+
"cfg-if",
|
|
2785
|
+
"futures-util",
|
|
2597
2786
|
"wasm-bindgen",
|
|
2598
2787
|
]
|
|
2599
2788
|
|
|
@@ -2610,24 +2799,24 @@ dependencies = [
|
|
|
2610
2799
|
|
|
2611
2800
|
[[package]]
|
|
2612
2801
|
name = "jsonpath-rust"
|
|
2613
|
-
version = "1.0.
|
|
2802
|
+
version = "1.0.11"
|
|
2614
2803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
-
checksum = "
|
|
2804
|
+
checksum = "d23892d4caa103325a558250e9f4e406d81cf64f7c01679ae7a64e0413321e51"
|
|
2616
2805
|
dependencies = [
|
|
2617
2806
|
"pest",
|
|
2618
2807
|
"pest_derive",
|
|
2619
2808
|
"regex",
|
|
2620
2809
|
"serde_json",
|
|
2621
|
-
"thiserror 2.0.
|
|
2810
|
+
"thiserror 2.0.20",
|
|
2622
2811
|
]
|
|
2623
2812
|
|
|
2624
2813
|
[[package]]
|
|
2625
2814
|
name = "k8s-openapi"
|
|
2626
|
-
version = "0.
|
|
2815
|
+
version = "0.28.0"
|
|
2627
2816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
-
checksum = "
|
|
2817
|
+
checksum = "d9c6922f6afe80418dd6019818af5d0d34584c371780ff09b9752370c25b4abb"
|
|
2629
2818
|
dependencies = [
|
|
2630
|
-
"base64",
|
|
2819
|
+
"base64 0.22.1",
|
|
2631
2820
|
"jiff",
|
|
2632
2821
|
"serde",
|
|
2633
2822
|
"serde_json",
|
|
@@ -2635,9 +2824,9 @@ dependencies = [
|
|
|
2635
2824
|
|
|
2636
2825
|
[[package]]
|
|
2637
2826
|
name = "kube"
|
|
2638
|
-
version = "
|
|
2827
|
+
version = "4.2.0"
|
|
2639
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
-
checksum = "
|
|
2829
|
+
checksum = "208d7fe1380066abb194812a8a8e303cb896a33bb3d7b3177b71bd03ff39bf18"
|
|
2641
2830
|
dependencies = [
|
|
2642
2831
|
"k8s-openapi",
|
|
2643
2832
|
"kube-client",
|
|
@@ -2646,15 +2835,15 @@ dependencies = [
|
|
|
2646
2835
|
|
|
2647
2836
|
[[package]]
|
|
2648
2837
|
name = "kube-client"
|
|
2649
|
-
version = "
|
|
2838
|
+
version = "4.2.0"
|
|
2650
2839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2651
|
-
checksum = "
|
|
2840
|
+
checksum = "31e940a73033a7c5c7918b5ece7851d84571b58be25e937198da37fa13f116d3"
|
|
2652
2841
|
dependencies = [
|
|
2653
|
-
"base64",
|
|
2842
|
+
"base64 0.22.1",
|
|
2654
2843
|
"bytes",
|
|
2655
2844
|
"either",
|
|
2656
2845
|
"futures",
|
|
2657
|
-
"http 1.
|
|
2846
|
+
"http 1.5.0",
|
|
2658
2847
|
"http-body",
|
|
2659
2848
|
"http-body-util",
|
|
2660
2849
|
"hyper",
|
|
@@ -2667,11 +2856,12 @@ dependencies = [
|
|
|
2667
2856
|
"kube-core",
|
|
2668
2857
|
"pem",
|
|
2669
2858
|
"rustls",
|
|
2859
|
+
"rustls-platform-verifier",
|
|
2670
2860
|
"secrecy",
|
|
2671
2861
|
"serde",
|
|
2862
|
+
"serde-saphyr",
|
|
2672
2863
|
"serde_json",
|
|
2673
|
-
"
|
|
2674
|
-
"thiserror 2.0.18",
|
|
2864
|
+
"thiserror 2.0.20",
|
|
2675
2865
|
"tokio",
|
|
2676
2866
|
"tokio-util",
|
|
2677
2867
|
"tower",
|
|
@@ -2681,19 +2871,19 @@ dependencies = [
|
|
|
2681
2871
|
|
|
2682
2872
|
[[package]]
|
|
2683
2873
|
name = "kube-core"
|
|
2684
|
-
version = "
|
|
2874
|
+
version = "4.2.0"
|
|
2685
2875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
-
checksum = "
|
|
2876
|
+
checksum = "a9d2353c118cf3462c352ee0b5bd5b0cf17990af456dfd8662d136ff9812eeb4"
|
|
2687
2877
|
dependencies = [
|
|
2688
2878
|
"derive_more",
|
|
2689
2879
|
"form_urlencoded",
|
|
2690
|
-
"http 1.
|
|
2880
|
+
"http 1.5.0",
|
|
2691
2881
|
"jiff",
|
|
2692
2882
|
"k8s-openapi",
|
|
2693
2883
|
"serde",
|
|
2694
2884
|
"serde-value",
|
|
2695
2885
|
"serde_json",
|
|
2696
|
-
"thiserror 2.0.
|
|
2886
|
+
"thiserror 2.0.20",
|
|
2697
2887
|
]
|
|
2698
2888
|
|
|
2699
2889
|
[[package]]
|
|
@@ -2708,15 +2898,9 @@ version = "1.5.0"
|
|
|
2708
2898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
2899
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2710
2900
|
dependencies = [
|
|
2711
|
-
"spin 0.9.
|
|
2901
|
+
"spin 0.9.9",
|
|
2712
2902
|
]
|
|
2713
2903
|
|
|
2714
|
-
[[package]]
|
|
2715
|
-
name = "leb128fmt"
|
|
2716
|
-
version = "0.1.0"
|
|
2717
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2718
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
2719
|
-
|
|
2720
2904
|
[[package]]
|
|
2721
2905
|
name = "lexical-core"
|
|
2722
2906
|
version = "1.0.6"
|
|
@@ -2776,9 +2960,9 @@ dependencies = [
|
|
|
2776
2960
|
|
|
2777
2961
|
[[package]]
|
|
2778
2962
|
name = "libc"
|
|
2779
|
-
version = "0.2.
|
|
2963
|
+
version = "0.2.189"
|
|
2780
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
-
checksum = "
|
|
2965
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
2782
2966
|
|
|
2783
2967
|
[[package]]
|
|
2784
2968
|
name = "libm"
|
|
@@ -2788,14 +2972,14 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
|
2788
2972
|
|
|
2789
2973
|
[[package]]
|
|
2790
2974
|
name = "libredox"
|
|
2791
|
-
version = "0.1.
|
|
2975
|
+
version = "0.1.24"
|
|
2792
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2977
|
+
checksum = "6480ccc157a1389bb2e4891b24751b0f798ba640d22386f23143fbcc89da195a"
|
|
2794
2978
|
dependencies = [
|
|
2795
|
-
"bitflags",
|
|
2979
|
+
"bitflags 2.13.2",
|
|
2796
2980
|
"libc",
|
|
2797
2981
|
"plain",
|
|
2798
|
-
"redox_syscall 0.
|
|
2982
|
+
"redox_syscall 0.9.4",
|
|
2799
2983
|
]
|
|
2800
2984
|
|
|
2801
2985
|
[[package]]
|
|
@@ -2811,9 +2995,9 @@ dependencies = [
|
|
|
2811
2995
|
|
|
2812
2996
|
[[package]]
|
|
2813
2997
|
name = "litemap"
|
|
2814
|
-
version = "0.8.
|
|
2998
|
+
version = "0.8.3"
|
|
2815
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
-
checksum = "
|
|
3000
|
+
checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
|
|
2817
3001
|
|
|
2818
3002
|
[[package]]
|
|
2819
3003
|
name = "local-channel"
|
|
@@ -2843,21 +3027,21 @@ dependencies = [
|
|
|
2843
3027
|
|
|
2844
3028
|
[[package]]
|
|
2845
3029
|
name = "log"
|
|
2846
|
-
version = "0.4.
|
|
3030
|
+
version = "0.4.34"
|
|
2847
3031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
-
checksum = "
|
|
3032
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
2849
3033
|
|
|
2850
3034
|
[[package]]
|
|
2851
3035
|
name = "lru-slab"
|
|
2852
|
-
version = "0.1.
|
|
3036
|
+
version = "0.1.3"
|
|
2853
3037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
-
checksum = "
|
|
3038
|
+
checksum = "4050469837a6ff301cd14c1f8f24f88549e6d548f24f64e2148eb0f72cebc51f"
|
|
2855
3039
|
|
|
2856
3040
|
[[package]]
|
|
2857
3041
|
name = "lz4_flex"
|
|
2858
|
-
version = "0.
|
|
3042
|
+
version = "0.14.0"
|
|
2859
3043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
-
checksum = "
|
|
3044
|
+
checksum = "ecbdfe44b1bd960b68170b417450a628c43f7cf56bb3c5317e61cb230ee7f226"
|
|
2861
3045
|
dependencies = [
|
|
2862
3046
|
"twox-hash",
|
|
2863
3047
|
]
|
|
@@ -2878,23 +3062,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2878
3062
|
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
2879
3063
|
dependencies = [
|
|
2880
3064
|
"cfg-if",
|
|
2881
|
-
"digest",
|
|
3065
|
+
"digest 0.10.7",
|
|
2882
3066
|
]
|
|
2883
3067
|
|
|
2884
3068
|
[[package]]
|
|
2885
3069
|
name = "memchr"
|
|
2886
|
-
version = "2.8.
|
|
2887
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2888
|
-
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2889
|
-
|
|
2890
|
-
[[package]]
|
|
2891
|
-
name = "memoffset"
|
|
2892
|
-
version = "0.9.1"
|
|
3070
|
+
version = "2.8.3"
|
|
2893
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
-
checksum = "
|
|
2895
|
-
dependencies = [
|
|
2896
|
-
"autocfg",
|
|
2897
|
-
]
|
|
3072
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
2898
3073
|
|
|
2899
3074
|
[[package]]
|
|
2900
3075
|
name = "mime"
|
|
@@ -2923,6 +3098,15 @@ name = "miniz_oxide"
|
|
|
2923
3098
|
version = "0.8.9"
|
|
2924
3099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
3100
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
3101
|
+
dependencies = [
|
|
3102
|
+
"adler2",
|
|
3103
|
+
]
|
|
3104
|
+
|
|
3105
|
+
[[package]]
|
|
3106
|
+
name = "miniz_oxide"
|
|
3107
|
+
version = "0.9.1"
|
|
3108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3109
|
+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
|
|
2926
3110
|
dependencies = [
|
|
2927
3111
|
"adler2",
|
|
2928
3112
|
"simd-adler32",
|
|
@@ -2930,9 +3114,9 @@ dependencies = [
|
|
|
2930
3114
|
|
|
2931
3115
|
[[package]]
|
|
2932
3116
|
name = "mio"
|
|
2933
|
-
version = "1.
|
|
3117
|
+
version = "1.2.3"
|
|
2934
3118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
-
checksum = "
|
|
3119
|
+
checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
|
|
2936
3120
|
dependencies = [
|
|
2937
3121
|
"libc",
|
|
2938
3122
|
"log",
|
|
@@ -2940,6 +3124,33 @@ dependencies = [
|
|
|
2940
3124
|
"windows-sys 0.61.2",
|
|
2941
3125
|
]
|
|
2942
3126
|
|
|
3127
|
+
[[package]]
|
|
3128
|
+
name = "multiversion"
|
|
3129
|
+
version = "0.9.0"
|
|
3130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
+
checksum = "b4ca4bea16ffc3f443cf7d866912118196bfef4c6a1556ca00f9f9b00bb43f7c"
|
|
3132
|
+
dependencies = [
|
|
3133
|
+
"multiversion-macros",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "multiversion-macros"
|
|
3138
|
+
version = "0.9.0"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "0d416831a7317ef4b08bee00b69cbbb9c8763da7959a7026244d6266869f9c83"
|
|
3141
|
+
dependencies = [
|
|
3142
|
+
"proc-macro2",
|
|
3143
|
+
"quote",
|
|
3144
|
+
"rustversion",
|
|
3145
|
+
"syn 3.0.5",
|
|
3146
|
+
]
|
|
3147
|
+
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "multiversion_no_op"
|
|
3150
|
+
version = "1.0.0"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "743fb55ba31b18fb1ecef6bdc9aa2743314978ac084044301a7eee33fb99a20d"
|
|
3153
|
+
|
|
2943
3154
|
[[package]]
|
|
2944
3155
|
name = "mutually_exclusive_features"
|
|
2945
3156
|
version = "0.1.0"
|
|
@@ -2955,6 +3166,12 @@ dependencies = [
|
|
|
2955
3166
|
"spin 0.5.2",
|
|
2956
3167
|
]
|
|
2957
3168
|
|
|
3169
|
+
[[package]]
|
|
3170
|
+
name = "nohash-hasher"
|
|
3171
|
+
version = "0.2.0"
|
|
3172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
3174
|
+
|
|
2958
3175
|
[[package]]
|
|
2959
3176
|
name = "nom"
|
|
2960
3177
|
version = "7.1.3"
|
|
@@ -2976,9 +3193,19 @@ dependencies = [
|
|
|
2976
3193
|
|
|
2977
3194
|
[[package]]
|
|
2978
3195
|
name = "num-bigint"
|
|
2979
|
-
version = "0.4.
|
|
3196
|
+
version = "0.4.8"
|
|
3197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3198
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
3199
|
+
dependencies = [
|
|
3200
|
+
"num-integer",
|
|
3201
|
+
"num-traits",
|
|
3202
|
+
]
|
|
3203
|
+
|
|
3204
|
+
[[package]]
|
|
3205
|
+
name = "num-bigint"
|
|
3206
|
+
version = "0.5.1"
|
|
2980
3207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
-
checksum = "
|
|
3208
|
+
checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
|
|
2982
3209
|
dependencies = [
|
|
2983
3210
|
"num-integer",
|
|
2984
3211
|
"num-traits",
|
|
@@ -2995,7 +3222,7 @@ dependencies = [
|
|
|
2995
3222
|
"num-integer",
|
|
2996
3223
|
"num-iter",
|
|
2997
3224
|
"num-traits",
|
|
2998
|
-
"rand 0.8.
|
|
3225
|
+
"rand 0.8.8",
|
|
2999
3226
|
"smallvec",
|
|
3000
3227
|
"zeroize",
|
|
3001
3228
|
]
|
|
@@ -3011,9 +3238,9 @@ dependencies = [
|
|
|
3011
3238
|
|
|
3012
3239
|
[[package]]
|
|
3013
3240
|
name = "num-conv"
|
|
3014
|
-
version = "0.2.
|
|
3241
|
+
version = "0.2.2"
|
|
3015
3242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
-
checksum = "
|
|
3243
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
3017
3244
|
|
|
3018
3245
|
[[package]]
|
|
3019
3246
|
name = "num-derive"
|
|
@@ -3023,25 +3250,24 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
3023
3250
|
dependencies = [
|
|
3024
3251
|
"proc-macro2",
|
|
3025
3252
|
"quote",
|
|
3026
|
-
"syn",
|
|
3253
|
+
"syn 2.0.119",
|
|
3027
3254
|
]
|
|
3028
3255
|
|
|
3029
3256
|
[[package]]
|
|
3030
3257
|
name = "num-integer"
|
|
3031
|
-
version = "0.1.
|
|
3258
|
+
version = "0.1.47"
|
|
3032
3259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
-
checksum = "
|
|
3260
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
3034
3261
|
dependencies = [
|
|
3035
3262
|
"num-traits",
|
|
3036
3263
|
]
|
|
3037
3264
|
|
|
3038
3265
|
[[package]]
|
|
3039
3266
|
name = "num-iter"
|
|
3040
|
-
version = "0.1.
|
|
3267
|
+
version = "0.1.46"
|
|
3041
3268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
-
checksum = "
|
|
3269
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
3043
3270
|
dependencies = [
|
|
3044
|
-
"autocfg",
|
|
3045
3271
|
"num-integer",
|
|
3046
3272
|
"num-traits",
|
|
3047
3273
|
]
|
|
@@ -3105,104 +3331,6 @@ version = "0.2.1"
|
|
|
3105
3331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
3332
|
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
3107
3333
|
|
|
3108
|
-
[[package]]
|
|
3109
|
-
name = "opentelemetry"
|
|
3110
|
-
version = "0.22.0"
|
|
3111
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
-
checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
|
|
3113
|
-
dependencies = [
|
|
3114
|
-
"futures-core",
|
|
3115
|
-
"futures-sink",
|
|
3116
|
-
"js-sys",
|
|
3117
|
-
"once_cell",
|
|
3118
|
-
"pin-project-lite",
|
|
3119
|
-
"thiserror 1.0.69",
|
|
3120
|
-
"urlencoding",
|
|
3121
|
-
]
|
|
3122
|
-
|
|
3123
|
-
[[package]]
|
|
3124
|
-
name = "opentelemetry"
|
|
3125
|
-
version = "0.23.0"
|
|
3126
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
-
checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76"
|
|
3128
|
-
dependencies = [
|
|
3129
|
-
"futures-core",
|
|
3130
|
-
"futures-sink",
|
|
3131
|
-
"js-sys",
|
|
3132
|
-
"once_cell",
|
|
3133
|
-
"pin-project-lite",
|
|
3134
|
-
"thiserror 1.0.69",
|
|
3135
|
-
]
|
|
3136
|
-
|
|
3137
|
-
[[package]]
|
|
3138
|
-
name = "opentelemetry-prometheus"
|
|
3139
|
-
version = "0.15.0"
|
|
3140
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3141
|
-
checksum = "30bbcf6341cab7e2193e5843f0ac36c446a5b3fccb28747afaeda17996dcd02e"
|
|
3142
|
-
dependencies = [
|
|
3143
|
-
"once_cell",
|
|
3144
|
-
"opentelemetry 0.22.0",
|
|
3145
|
-
"opentelemetry_sdk 0.22.1",
|
|
3146
|
-
"prometheus",
|
|
3147
|
-
"protobuf",
|
|
3148
|
-
]
|
|
3149
|
-
|
|
3150
|
-
[[package]]
|
|
3151
|
-
name = "opentelemetry-prometheus"
|
|
3152
|
-
version = "0.16.0"
|
|
3153
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
-
checksum = "5e1a24eafe47b693cb938f8505f240dc26c71db60df9aca376b4f857e9653ec7"
|
|
3155
|
-
dependencies = [
|
|
3156
|
-
"once_cell",
|
|
3157
|
-
"opentelemetry 0.23.0",
|
|
3158
|
-
"opentelemetry_sdk 0.23.0",
|
|
3159
|
-
"prometheus",
|
|
3160
|
-
"protobuf",
|
|
3161
|
-
]
|
|
3162
|
-
|
|
3163
|
-
[[package]]
|
|
3164
|
-
name = "opentelemetry-semantic-conventions"
|
|
3165
|
-
version = "0.14.0"
|
|
3166
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
-
checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
|
|
3168
|
-
|
|
3169
|
-
[[package]]
|
|
3170
|
-
name = "opentelemetry_sdk"
|
|
3171
|
-
version = "0.22.1"
|
|
3172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
|
|
3174
|
-
dependencies = [
|
|
3175
|
-
"async-trait",
|
|
3176
|
-
"futures-channel",
|
|
3177
|
-
"futures-executor",
|
|
3178
|
-
"futures-util",
|
|
3179
|
-
"glob",
|
|
3180
|
-
"once_cell",
|
|
3181
|
-
"opentelemetry 0.22.0",
|
|
3182
|
-
"ordered-float 4.6.0",
|
|
3183
|
-
"thiserror 1.0.69",
|
|
3184
|
-
]
|
|
3185
|
-
|
|
3186
|
-
[[package]]
|
|
3187
|
-
name = "opentelemetry_sdk"
|
|
3188
|
-
version = "0.23.0"
|
|
3189
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3190
|
-
checksum = "ae312d58eaa90a82d2e627fd86e075cf5230b3f11794e2ed74199ebbe572d4fd"
|
|
3191
|
-
dependencies = [
|
|
3192
|
-
"async-trait",
|
|
3193
|
-
"futures-channel",
|
|
3194
|
-
"futures-executor",
|
|
3195
|
-
"futures-util",
|
|
3196
|
-
"glob",
|
|
3197
|
-
"lazy_static",
|
|
3198
|
-
"once_cell",
|
|
3199
|
-
"opentelemetry 0.23.0",
|
|
3200
|
-
"ordered-float 4.6.0",
|
|
3201
|
-
"percent-encoding",
|
|
3202
|
-
"rand 0.8.5",
|
|
3203
|
-
"thiserror 1.0.69",
|
|
3204
|
-
]
|
|
3205
|
-
|
|
3206
3334
|
[[package]]
|
|
3207
3335
|
name = "ordered-float"
|
|
3208
3336
|
version = "2.10.1"
|
|
@@ -3212,15 +3340,6 @@ dependencies = [
|
|
|
3212
3340
|
"num-traits",
|
|
3213
3341
|
]
|
|
3214
3342
|
|
|
3215
|
-
[[package]]
|
|
3216
|
-
name = "ordered-float"
|
|
3217
|
-
version = "4.6.0"
|
|
3218
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
-
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
3220
|
-
dependencies = [
|
|
3221
|
-
"num-traits",
|
|
3222
|
-
]
|
|
3223
|
-
|
|
3224
3343
|
[[package]]
|
|
3225
3344
|
name = "ordered-multimap"
|
|
3226
3345
|
version = "0.7.3"
|
|
@@ -3233,9 +3352,9 @@ dependencies = [
|
|
|
3233
3352
|
|
|
3234
3353
|
[[package]]
|
|
3235
3354
|
name = "owo-colors"
|
|
3236
|
-
version = "4.
|
|
3355
|
+
version = "4.4.0"
|
|
3237
3356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3238
|
-
checksum = "
|
|
3357
|
+
checksum = "13c45bb4a6ae1280ec0803b1ef9d3455eb50f01efbbe1447ab020f1d54fba9d8"
|
|
3239
3358
|
|
|
3240
3359
|
[[package]]
|
|
3241
3360
|
name = "page_size"
|
|
@@ -3278,9 +3397,9 @@ dependencies = [
|
|
|
3278
3397
|
|
|
3279
3398
|
[[package]]
|
|
3280
3399
|
name = "parquet"
|
|
3281
|
-
version = "
|
|
3400
|
+
version = "59.3.0"
|
|
3282
3401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
-
checksum = "
|
|
3402
|
+
checksum = "ff322f54b1a0f9288e614ed1f2d329b380af5476420db19f46ffb865e1163d73"
|
|
3284
3403
|
dependencies = [
|
|
3285
3404
|
"ahash",
|
|
3286
3405
|
"arrow-array",
|
|
@@ -3289,32 +3408,24 @@ dependencies = [
|
|
|
3289
3408
|
"arrow-ipc",
|
|
3290
3409
|
"arrow-schema",
|
|
3291
3410
|
"arrow-select",
|
|
3292
|
-
"base64",
|
|
3411
|
+
"base64 0.23.1",
|
|
3293
3412
|
"brotli",
|
|
3294
3413
|
"bytes",
|
|
3295
3414
|
"chrono",
|
|
3296
3415
|
"flate2",
|
|
3297
3416
|
"half",
|
|
3298
|
-
"hashbrown 0.
|
|
3417
|
+
"hashbrown 0.17.1",
|
|
3299
3418
|
"lz4_flex",
|
|
3300
|
-
"num-bigint",
|
|
3419
|
+
"num-bigint 0.5.1",
|
|
3301
3420
|
"num-integer",
|
|
3302
3421
|
"num-traits",
|
|
3303
|
-
"paste",
|
|
3304
3422
|
"seq-macro",
|
|
3305
3423
|
"simdutf8",
|
|
3306
3424
|
"snap",
|
|
3307
|
-
"thrift",
|
|
3308
3425
|
"twox-hash",
|
|
3309
3426
|
"zstd",
|
|
3310
3427
|
]
|
|
3311
3428
|
|
|
3312
|
-
[[package]]
|
|
3313
|
-
name = "paste"
|
|
3314
|
-
version = "1.0.15"
|
|
3315
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
3317
|
-
|
|
3318
3429
|
[[package]]
|
|
3319
3430
|
name = "pathdiff"
|
|
3320
3431
|
version = "0.2.3"
|
|
@@ -3327,7 +3438,7 @@ version = "3.0.6"
|
|
|
3327
3438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
3439
|
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
3329
3440
|
dependencies = [
|
|
3330
|
-
"base64",
|
|
3441
|
+
"base64 0.22.1",
|
|
3331
3442
|
"serde_core",
|
|
3332
3443
|
]
|
|
3333
3444
|
|
|
@@ -3348,9 +3459,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
3348
3459
|
|
|
3349
3460
|
[[package]]
|
|
3350
3461
|
name = "pest"
|
|
3351
|
-
version = "2.
|
|
3462
|
+
version = "2.9.1"
|
|
3352
3463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3353
|
-
checksum = "
|
|
3464
|
+
checksum = "6d45aeb61b4bf818e12d4205f2466f8c4748f85f4fce0146d1c03d69d753f0ad"
|
|
3354
3465
|
dependencies = [
|
|
3355
3466
|
"memchr",
|
|
3356
3467
|
"ucd-trie",
|
|
@@ -3358,9 +3469,9 @@ dependencies = [
|
|
|
3358
3469
|
|
|
3359
3470
|
[[package]]
|
|
3360
3471
|
name = "pest_derive"
|
|
3361
|
-
version = "2.
|
|
3472
|
+
version = "2.9.1"
|
|
3362
3473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
-
checksum = "
|
|
3474
|
+
checksum = "89cc5a242e25ed4e7704d0be240f2cfbe20a8c27e7e252d94835be93d92dc39f"
|
|
3364
3475
|
dependencies = [
|
|
3365
3476
|
"pest",
|
|
3366
3477
|
"pest_generator",
|
|
@@ -3368,25 +3479,24 @@ dependencies = [
|
|
|
3368
3479
|
|
|
3369
3480
|
[[package]]
|
|
3370
3481
|
name = "pest_generator"
|
|
3371
|
-
version = "2.
|
|
3482
|
+
version = "2.9.1"
|
|
3372
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
-
checksum = "
|
|
3484
|
+
checksum = "7abf21475cc3820fe4b2ca2dc2142902f67a02189f3b5b3a229f4febc01a43e5"
|
|
3374
3485
|
dependencies = [
|
|
3375
3486
|
"pest",
|
|
3376
3487
|
"pest_meta",
|
|
3377
3488
|
"proc-macro2",
|
|
3378
3489
|
"quote",
|
|
3379
|
-
"syn",
|
|
3490
|
+
"syn 2.0.119",
|
|
3380
3491
|
]
|
|
3381
3492
|
|
|
3382
3493
|
[[package]]
|
|
3383
3494
|
name = "pest_meta"
|
|
3384
|
-
version = "2.
|
|
3495
|
+
version = "2.9.1"
|
|
3385
3496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3497
|
+
checksum = "adba4db388f687393c18c51348d44a41d870ca9df71a2c98172ea3035dc6936e"
|
|
3387
3498
|
dependencies = [
|
|
3388
3499
|
"pest",
|
|
3389
|
-
"sha2",
|
|
3390
3500
|
]
|
|
3391
3501
|
|
|
3392
3502
|
[[package]]
|
|
@@ -3396,7 +3506,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3396
3506
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
3397
3507
|
dependencies = [
|
|
3398
3508
|
"fixedbitset",
|
|
3399
|
-
"indexmap 2.
|
|
3509
|
+
"indexmap 2.14.2",
|
|
3400
3510
|
]
|
|
3401
3511
|
|
|
3402
3512
|
[[package]]
|
|
@@ -3419,22 +3529,22 @@ dependencies = [
|
|
|
3419
3529
|
|
|
3420
3530
|
[[package]]
|
|
3421
3531
|
name = "pin-project"
|
|
3422
|
-
version = "1.1.
|
|
3532
|
+
version = "1.1.13"
|
|
3423
3533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3424
|
-
checksum = "
|
|
3534
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
3425
3535
|
dependencies = [
|
|
3426
3536
|
"pin-project-internal",
|
|
3427
3537
|
]
|
|
3428
3538
|
|
|
3429
3539
|
[[package]]
|
|
3430
3540
|
name = "pin-project-internal"
|
|
3431
|
-
version = "1.1.
|
|
3541
|
+
version = "1.1.13"
|
|
3432
3542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
-
checksum = "
|
|
3543
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
3434
3544
|
dependencies = [
|
|
3435
3545
|
"proc-macro2",
|
|
3436
3546
|
"quote",
|
|
3437
|
-
"syn",
|
|
3547
|
+
"syn 2.0.119",
|
|
3438
3548
|
]
|
|
3439
3549
|
|
|
3440
3550
|
[[package]]
|
|
@@ -3443,12 +3553,6 @@ version = "0.2.17"
|
|
|
3443
3553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3444
3554
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
3445
3555
|
|
|
3446
|
-
[[package]]
|
|
3447
|
-
name = "pin-utils"
|
|
3448
|
-
version = "0.1.0"
|
|
3449
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3450
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
3451
|
-
|
|
3452
3556
|
[[package]]
|
|
3453
3557
|
name = "pkcs1"
|
|
3454
3558
|
version = "0.7.5"
|
|
@@ -3472,9 +3576,9 @@ dependencies = [
|
|
|
3472
3576
|
|
|
3473
3577
|
[[package]]
|
|
3474
3578
|
name = "pkg-config"
|
|
3475
|
-
version = "0.3.
|
|
3579
|
+
version = "0.3.34"
|
|
3476
3580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3477
|
-
checksum = "
|
|
3581
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
3478
3582
|
|
|
3479
3583
|
[[package]]
|
|
3480
3584
|
name = "plain"
|
|
@@ -3512,24 +3616,24 @@ dependencies = [
|
|
|
3512
3616
|
|
|
3513
3617
|
[[package]]
|
|
3514
3618
|
name = "portable-atomic"
|
|
3515
|
-
version = "1.
|
|
3619
|
+
version = "1.15.0"
|
|
3516
3620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3517
|
-
checksum = "
|
|
3621
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
3518
3622
|
|
|
3519
3623
|
[[package]]
|
|
3520
3624
|
name = "portable-atomic-util"
|
|
3521
|
-
version = "0.2.
|
|
3625
|
+
version = "0.2.8"
|
|
3522
3626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
-
checksum = "
|
|
3627
|
+
checksum = "10ab3eb7f3becc3a1cbc4f2c6f20267996cfc1a6467a873763411b136a122715"
|
|
3524
3628
|
dependencies = [
|
|
3525
3629
|
"portable-atomic",
|
|
3526
3630
|
]
|
|
3527
3631
|
|
|
3528
3632
|
[[package]]
|
|
3529
3633
|
name = "potential_utf"
|
|
3530
|
-
version = "0.1.
|
|
3634
|
+
version = "0.1.6"
|
|
3531
3635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
|
-
checksum = "
|
|
3636
|
+
checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
|
|
3533
3637
|
dependencies = [
|
|
3534
3638
|
"zerovec",
|
|
3535
3639
|
]
|
|
@@ -3549,30 +3653,20 @@ dependencies = [
|
|
|
3549
3653
|
"zerocopy",
|
|
3550
3654
|
]
|
|
3551
3655
|
|
|
3552
|
-
[[package]]
|
|
3553
|
-
name = "prettyplease"
|
|
3554
|
-
version = "0.2.37"
|
|
3555
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
-
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
3557
|
-
dependencies = [
|
|
3558
|
-
"proc-macro2",
|
|
3559
|
-
"syn",
|
|
3560
|
-
]
|
|
3561
|
-
|
|
3562
3656
|
[[package]]
|
|
3563
3657
|
name = "proc-macro2"
|
|
3564
|
-
version = "1.0.
|
|
3658
|
+
version = "1.0.107"
|
|
3565
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
-
checksum = "
|
|
3660
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
3567
3661
|
dependencies = [
|
|
3568
3662
|
"unicode-ident",
|
|
3569
3663
|
]
|
|
3570
3664
|
|
|
3571
3665
|
[[package]]
|
|
3572
3666
|
name = "prometheus"
|
|
3573
|
-
version = "0.
|
|
3667
|
+
version = "0.14.0"
|
|
3574
3668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
-
checksum = "
|
|
3669
|
+
checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
|
|
3576
3670
|
dependencies = [
|
|
3577
3671
|
"cfg-if",
|
|
3578
3672
|
"fnv",
|
|
@@ -3580,7 +3674,7 @@ dependencies = [
|
|
|
3580
3674
|
"memchr",
|
|
3581
3675
|
"parking_lot",
|
|
3582
3676
|
"protobuf",
|
|
3583
|
-
"thiserror
|
|
3677
|
+
"thiserror 2.0.20",
|
|
3584
3678
|
]
|
|
3585
3679
|
|
|
3586
3680
|
[[package]]
|
|
@@ -3599,36 +3693,48 @@ dependencies = [
|
|
|
3599
3693
|
|
|
3600
3694
|
[[package]]
|
|
3601
3695
|
name = "protobuf"
|
|
3602
|
-
version = "
|
|
3696
|
+
version = "3.7.2"
|
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
3699
|
+
dependencies = [
|
|
3700
|
+
"once_cell",
|
|
3701
|
+
"protobuf-support",
|
|
3702
|
+
"thiserror 1.0.69",
|
|
3703
|
+
]
|
|
3704
|
+
|
|
3705
|
+
[[package]]
|
|
3706
|
+
name = "protobuf-support"
|
|
3707
|
+
version = "3.7.2"
|
|
3603
3708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
-
checksum = "
|
|
3709
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
3710
|
+
dependencies = [
|
|
3711
|
+
"thiserror 1.0.69",
|
|
3712
|
+
]
|
|
3605
3713
|
|
|
3606
3714
|
[[package]]
|
|
3607
3715
|
name = "pyo3"
|
|
3608
|
-
version = "0.
|
|
3716
|
+
version = "0.29.2"
|
|
3609
3717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
-
checksum = "
|
|
3718
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
3611
3719
|
dependencies = [
|
|
3612
3720
|
"anyhow",
|
|
3613
3721
|
"chrono",
|
|
3614
|
-
"indoc",
|
|
3615
3722
|
"libc",
|
|
3616
|
-
"memoffset",
|
|
3617
3723
|
"once_cell",
|
|
3618
3724
|
"portable-atomic",
|
|
3619
3725
|
"pyo3-build-config",
|
|
3620
3726
|
"pyo3-ffi",
|
|
3621
3727
|
"pyo3-macros",
|
|
3622
|
-
"unindent",
|
|
3623
3728
|
]
|
|
3624
3729
|
|
|
3625
3730
|
[[package]]
|
|
3626
3731
|
name = "pyo3-async-runtimes"
|
|
3627
|
-
version = "0.
|
|
3732
|
+
version = "0.29.0"
|
|
3628
3733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3629
|
-
checksum = "
|
|
3734
|
+
checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
|
|
3630
3735
|
dependencies = [
|
|
3631
|
-
"futures",
|
|
3736
|
+
"futures-channel",
|
|
3737
|
+
"futures-util",
|
|
3632
3738
|
"once_cell",
|
|
3633
3739
|
"pin-project-lite",
|
|
3634
3740
|
"pyo3",
|
|
@@ -3638,29 +3744,29 @@ dependencies = [
|
|
|
3638
3744
|
|
|
3639
3745
|
[[package]]
|
|
3640
3746
|
name = "pyo3-async-runtimes-macros"
|
|
3641
|
-
version = "0.
|
|
3747
|
+
version = "0.29.0"
|
|
3642
3748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3643
|
-
checksum = "
|
|
3749
|
+
checksum = "faf75ff3922e6830adcaa30f3a359ce861326f6161f16a13d97adb40ba6a744a"
|
|
3644
3750
|
dependencies = [
|
|
3645
3751
|
"proc-macro2",
|
|
3646
3752
|
"quote",
|
|
3647
|
-
"syn",
|
|
3753
|
+
"syn 2.0.119",
|
|
3648
3754
|
]
|
|
3649
3755
|
|
|
3650
3756
|
[[package]]
|
|
3651
3757
|
name = "pyo3-build-config"
|
|
3652
|
-
version = "0.
|
|
3758
|
+
version = "0.29.2"
|
|
3653
3759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3654
|
-
checksum = "
|
|
3760
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
3655
3761
|
dependencies = [
|
|
3656
3762
|
"target-lexicon",
|
|
3657
3763
|
]
|
|
3658
3764
|
|
|
3659
3765
|
[[package]]
|
|
3660
3766
|
name = "pyo3-ffi"
|
|
3661
|
-
version = "0.
|
|
3767
|
+
version = "0.29.2"
|
|
3662
3768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
|
-
checksum = "
|
|
3769
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
3664
3770
|
dependencies = [
|
|
3665
3771
|
"libc",
|
|
3666
3772
|
"pyo3-build-config",
|
|
@@ -3668,32 +3774,31 @@ dependencies = [
|
|
|
3668
3774
|
|
|
3669
3775
|
[[package]]
|
|
3670
3776
|
name = "pyo3-macros"
|
|
3671
|
-
version = "0.
|
|
3777
|
+
version = "0.29.2"
|
|
3672
3778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3673
|
-
checksum = "
|
|
3779
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
3674
3780
|
dependencies = [
|
|
3675
3781
|
"proc-macro2",
|
|
3676
3782
|
"pyo3-macros-backend",
|
|
3677
3783
|
"quote",
|
|
3678
|
-
"syn",
|
|
3784
|
+
"syn 2.0.119",
|
|
3679
3785
|
]
|
|
3680
3786
|
|
|
3681
3787
|
[[package]]
|
|
3682
3788
|
name = "pyo3-macros-backend"
|
|
3683
|
-
version = "0.
|
|
3789
|
+
version = "0.29.2"
|
|
3684
3790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3685
|
-
checksum = "
|
|
3791
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
3686
3792
|
dependencies = [
|
|
3687
3793
|
"heck",
|
|
3688
3794
|
"proc-macro2",
|
|
3689
|
-
"pyo3-build-config",
|
|
3690
3795
|
"quote",
|
|
3691
|
-
"syn",
|
|
3796
|
+
"syn 2.0.119",
|
|
3692
3797
|
]
|
|
3693
3798
|
|
|
3694
3799
|
[[package]]
|
|
3695
3800
|
name = "python-auditor"
|
|
3696
|
-
version = "0.
|
|
3801
|
+
version = "0.11.1"
|
|
3697
3802
|
dependencies = [
|
|
3698
3803
|
"anyhow",
|
|
3699
3804
|
"auditor",
|
|
@@ -3714,7 +3819,7 @@ checksum = "95c589f335db0f6aaa168a7cd27b1fc6920f5e1470c804f814d9cd6e62a0f70b"
|
|
|
3714
3819
|
dependencies = [
|
|
3715
3820
|
"env_logger",
|
|
3716
3821
|
"log",
|
|
3717
|
-
"rand 0.10.
|
|
3822
|
+
"rand 0.10.2",
|
|
3718
3823
|
]
|
|
3719
3824
|
|
|
3720
3825
|
[[package]]
|
|
@@ -3725,14 +3830,14 @@ checksum = "a9a28b8493dd664c8b171dd944da82d933f7d456b829bfb236738e1fe06c5ba4"
|
|
|
3725
3830
|
dependencies = [
|
|
3726
3831
|
"proc-macro2",
|
|
3727
3832
|
"quote",
|
|
3728
|
-
"syn",
|
|
3833
|
+
"syn 2.0.119",
|
|
3729
3834
|
]
|
|
3730
3835
|
|
|
3731
3836
|
[[package]]
|
|
3732
3837
|
name = "quinn"
|
|
3733
|
-
version = "0.11.
|
|
3838
|
+
version = "0.11.12"
|
|
3734
3839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
-
checksum = "
|
|
3840
|
+
checksum = "4051e23e9185c255a7e33ef59cdbca87a22d359052eecd22fc6b901fb37d9d11"
|
|
3736
3841
|
dependencies = [
|
|
3737
3842
|
"bytes",
|
|
3738
3843
|
"cfg_aliases",
|
|
@@ -3741,8 +3846,8 @@ dependencies = [
|
|
|
3741
3846
|
"quinn-udp",
|
|
3742
3847
|
"rustc-hash",
|
|
3743
3848
|
"rustls",
|
|
3744
|
-
"socket2
|
|
3745
|
-
"thiserror 2.0.
|
|
3849
|
+
"socket2",
|
|
3850
|
+
"thiserror 2.0.20",
|
|
3746
3851
|
"tokio",
|
|
3747
3852
|
"tracing",
|
|
3748
3853
|
"web-time",
|
|
@@ -3750,20 +3855,21 @@ dependencies = [
|
|
|
3750
3855
|
|
|
3751
3856
|
[[package]]
|
|
3752
3857
|
name = "quinn-proto"
|
|
3753
|
-
version = "0.11.
|
|
3858
|
+
version = "0.11.18"
|
|
3754
3859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
|
-
checksum = "
|
|
3860
|
+
checksum = "a9746dbde176634f4f2f1faf2404e30a31b2bc1e9cafb5329c95d8177a18c9fc"
|
|
3756
3861
|
dependencies = [
|
|
3757
3862
|
"bytes",
|
|
3758
|
-
"getrandom 0.3
|
|
3863
|
+
"getrandom 0.4.3",
|
|
3759
3864
|
"lru-slab",
|
|
3760
|
-
"rand 0.
|
|
3865
|
+
"rand 0.10.2",
|
|
3866
|
+
"rand_pcg",
|
|
3761
3867
|
"ring",
|
|
3762
3868
|
"rustc-hash",
|
|
3763
3869
|
"rustls",
|
|
3764
3870
|
"rustls-pki-types",
|
|
3765
3871
|
"slab",
|
|
3766
|
-
"thiserror 2.0.
|
|
3872
|
+
"thiserror 2.0.20",
|
|
3767
3873
|
"tinyvec",
|
|
3768
3874
|
"tracing",
|
|
3769
3875
|
"web-time",
|
|
@@ -3771,23 +3877,23 @@ dependencies = [
|
|
|
3771
3877
|
|
|
3772
3878
|
[[package]]
|
|
3773
3879
|
name = "quinn-udp"
|
|
3774
|
-
version = "0.5.
|
|
3880
|
+
version = "0.5.15"
|
|
3775
3881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3776
|
-
checksum = "
|
|
3882
|
+
checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
|
|
3777
3883
|
dependencies = [
|
|
3778
3884
|
"cfg_aliases",
|
|
3779
3885
|
"libc",
|
|
3780
3886
|
"once_cell",
|
|
3781
|
-
"socket2
|
|
3887
|
+
"socket2",
|
|
3782
3888
|
"tracing",
|
|
3783
|
-
"windows-sys 0.
|
|
3889
|
+
"windows-sys 0.61.2",
|
|
3784
3890
|
]
|
|
3785
3891
|
|
|
3786
3892
|
[[package]]
|
|
3787
3893
|
name = "quote"
|
|
3788
|
-
version = "1.0.
|
|
3894
|
+
version = "1.0.47"
|
|
3789
3895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3790
|
-
checksum = "
|
|
3896
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
3791
3897
|
dependencies = [
|
|
3792
3898
|
"proc-macro2",
|
|
3793
3899
|
]
|
|
@@ -3806,34 +3912,24 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
|
3806
3912
|
|
|
3807
3913
|
[[package]]
|
|
3808
3914
|
name = "rand"
|
|
3809
|
-
version = "0.8.
|
|
3915
|
+
version = "0.8.8"
|
|
3810
3916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
-
checksum = "
|
|
3917
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
3812
3918
|
dependencies = [
|
|
3813
3919
|
"libc",
|
|
3814
|
-
"rand_chacha
|
|
3920
|
+
"rand_chacha",
|
|
3815
3921
|
"rand_core 0.6.4",
|
|
3816
3922
|
]
|
|
3817
3923
|
|
|
3818
3924
|
[[package]]
|
|
3819
3925
|
name = "rand"
|
|
3820
|
-
version = "0.
|
|
3821
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
-
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
3823
|
-
dependencies = [
|
|
3824
|
-
"rand_chacha 0.9.0",
|
|
3825
|
-
"rand_core 0.9.5",
|
|
3826
|
-
]
|
|
3827
|
-
|
|
3828
|
-
[[package]]
|
|
3829
|
-
name = "rand"
|
|
3830
|
-
version = "0.10.0"
|
|
3926
|
+
version = "0.10.2"
|
|
3831
3927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3832
|
-
checksum = "
|
|
3928
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
3833
3929
|
dependencies = [
|
|
3834
3930
|
"chacha20",
|
|
3835
|
-
"getrandom 0.4.
|
|
3836
|
-
"rand_core 0.10.
|
|
3931
|
+
"getrandom 0.4.3",
|
|
3932
|
+
"rand_core 0.10.1",
|
|
3837
3933
|
]
|
|
3838
3934
|
|
|
3839
3935
|
[[package]]
|
|
@@ -3846,16 +3942,6 @@ dependencies = [
|
|
|
3846
3942
|
"rand_core 0.6.4",
|
|
3847
3943
|
]
|
|
3848
3944
|
|
|
3849
|
-
[[package]]
|
|
3850
|
-
name = "rand_chacha"
|
|
3851
|
-
version = "0.9.0"
|
|
3852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3853
|
-
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3854
|
-
dependencies = [
|
|
3855
|
-
"ppv-lite86",
|
|
3856
|
-
"rand_core 0.9.5",
|
|
3857
|
-
]
|
|
3858
|
-
|
|
3859
3945
|
[[package]]
|
|
3860
3946
|
name = "rand_core"
|
|
3861
3947
|
version = "0.6.4"
|
|
@@ -3867,18 +3953,9 @@ dependencies = [
|
|
|
3867
3953
|
|
|
3868
3954
|
[[package]]
|
|
3869
3955
|
name = "rand_core"
|
|
3870
|
-
version = "0.
|
|
3871
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
-
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
3873
|
-
dependencies = [
|
|
3874
|
-
"getrandom 0.3.4",
|
|
3875
|
-
]
|
|
3876
|
-
|
|
3877
|
-
[[package]]
|
|
3878
|
-
name = "rand_core"
|
|
3879
|
-
version = "0.10.0"
|
|
3956
|
+
version = "0.10.1"
|
|
3880
3957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
-
checksum = "
|
|
3958
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3882
3959
|
|
|
3883
3960
|
[[package]]
|
|
3884
3961
|
name = "rand_distr"
|
|
@@ -3887,14 +3964,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3887
3964
|
checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
|
|
3888
3965
|
dependencies = [
|
|
3889
3966
|
"num-traits",
|
|
3890
|
-
"rand 0.10.
|
|
3967
|
+
"rand 0.10.2",
|
|
3968
|
+
]
|
|
3969
|
+
|
|
3970
|
+
[[package]]
|
|
3971
|
+
name = "rand_pcg"
|
|
3972
|
+
version = "0.10.2"
|
|
3973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3974
|
+
checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
|
|
3975
|
+
dependencies = [
|
|
3976
|
+
"rand_core 0.10.1",
|
|
3891
3977
|
]
|
|
3892
3978
|
|
|
3893
3979
|
[[package]]
|
|
3894
3980
|
name = "rayon"
|
|
3895
|
-
version = "1.
|
|
3981
|
+
version = "1.12.0"
|
|
3896
3982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3897
|
-
checksum = "
|
|
3983
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
3898
3984
|
dependencies = [
|
|
3899
3985
|
"either",
|
|
3900
3986
|
"rayon-core",
|
|
@@ -3916,43 +4002,43 @@ version = "0.5.18"
|
|
|
3916
4002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
4003
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3918
4004
|
dependencies = [
|
|
3919
|
-
"bitflags",
|
|
4005
|
+
"bitflags 2.13.2",
|
|
3920
4006
|
]
|
|
3921
4007
|
|
|
3922
4008
|
[[package]]
|
|
3923
4009
|
name = "redox_syscall"
|
|
3924
|
-
version = "0.
|
|
4010
|
+
version = "0.9.4"
|
|
3925
4011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3926
|
-
checksum = "
|
|
4012
|
+
checksum = "737970939a87c6fa31e7acad13307bccbb017a073b695b6089a2c484f929e20e"
|
|
3927
4013
|
dependencies = [
|
|
3928
|
-
"bitflags",
|
|
4014
|
+
"bitflags 2.13.2",
|
|
3929
4015
|
]
|
|
3930
4016
|
|
|
3931
4017
|
[[package]]
|
|
3932
4018
|
name = "ref-cast"
|
|
3933
|
-
version = "1.0.
|
|
4019
|
+
version = "1.0.27"
|
|
3934
4020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
-
checksum = "
|
|
4021
|
+
checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
|
|
3936
4022
|
dependencies = [
|
|
3937
4023
|
"ref-cast-impl",
|
|
3938
4024
|
]
|
|
3939
4025
|
|
|
3940
4026
|
[[package]]
|
|
3941
4027
|
name = "ref-cast-impl"
|
|
3942
|
-
version = "1.0.
|
|
4028
|
+
version = "1.0.27"
|
|
3943
4029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
-
checksum = "
|
|
4030
|
+
checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
|
|
3945
4031
|
dependencies = [
|
|
3946
4032
|
"proc-macro2",
|
|
3947
4033
|
"quote",
|
|
3948
|
-
"syn",
|
|
4034
|
+
"syn 3.0.5",
|
|
3949
4035
|
]
|
|
3950
4036
|
|
|
3951
4037
|
[[package]]
|
|
3952
4038
|
name = "regex"
|
|
3953
|
-
version = "1.
|
|
4039
|
+
version = "1.13.1"
|
|
3954
4040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3955
|
-
checksum = "
|
|
4041
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
3956
4042
|
dependencies = [
|
|
3957
4043
|
"aho-corasick",
|
|
3958
4044
|
"memchr",
|
|
@@ -3962,9 +4048,9 @@ dependencies = [
|
|
|
3962
4048
|
|
|
3963
4049
|
[[package]]
|
|
3964
4050
|
name = "regex-automata"
|
|
3965
|
-
version = "0.4.
|
|
4051
|
+
version = "0.4.18"
|
|
3966
4052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3967
|
-
checksum = "
|
|
4053
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
3968
4054
|
dependencies = [
|
|
3969
4055
|
"aho-corasick",
|
|
3970
4056
|
"memchr",
|
|
@@ -3979,9 +4065,9 @@ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
|
|
|
3979
4065
|
|
|
3980
4066
|
[[package]]
|
|
3981
4067
|
name = "regex-syntax"
|
|
3982
|
-
version = "0.8.
|
|
4068
|
+
version = "0.8.11"
|
|
3983
4069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3984
|
-
checksum = "
|
|
4070
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
3985
4071
|
|
|
3986
4072
|
[[package]]
|
|
3987
4073
|
name = "reqwest"
|
|
@@ -3989,12 +4075,12 @@ version = "0.12.28"
|
|
|
3989
4075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
4076
|
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
3991
4077
|
dependencies = [
|
|
3992
|
-
"base64",
|
|
4078
|
+
"base64 0.22.1",
|
|
3993
4079
|
"bytes",
|
|
3994
4080
|
"futures-channel",
|
|
3995
4081
|
"futures-core",
|
|
3996
4082
|
"futures-util",
|
|
3997
|
-
"http 1.
|
|
4083
|
+
"http 1.5.0",
|
|
3998
4084
|
"http-body",
|
|
3999
4085
|
"http-body-util",
|
|
4000
4086
|
"hyper",
|
|
@@ -4022,7 +4108,7 @@ dependencies = [
|
|
|
4022
4108
|
"wasm-bindgen-futures",
|
|
4023
4109
|
"wasm-streams",
|
|
4024
4110
|
"web-sys",
|
|
4025
|
-
"webpki-roots 1.0.
|
|
4111
|
+
"webpki-roots 1.0.9",
|
|
4026
4112
|
]
|
|
4027
4113
|
|
|
4028
4114
|
[[package]]
|
|
@@ -4043,12 +4129,12 @@ dependencies = [
|
|
|
4043
4129
|
|
|
4044
4130
|
[[package]]
|
|
4045
4131
|
name = "rhai"
|
|
4046
|
-
version = "1.
|
|
4132
|
+
version = "1.26.1"
|
|
4047
4133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4048
|
-
checksum = "
|
|
4134
|
+
checksum = "0334639972c0ea5a3fd366aa36116754a11431b619fec3ed559b3f73bcbcebf5"
|
|
4049
4135
|
dependencies = [
|
|
4050
4136
|
"ahash",
|
|
4051
|
-
"bitflags",
|
|
4137
|
+
"bitflags 2.13.2",
|
|
4052
4138
|
"no-std-compat",
|
|
4053
4139
|
"num-traits",
|
|
4054
4140
|
"once_cell",
|
|
@@ -4062,13 +4148,13 @@ dependencies = [
|
|
|
4062
4148
|
|
|
4063
4149
|
[[package]]
|
|
4064
4150
|
name = "rhai_codegen"
|
|
4065
|
-
version = "3.
|
|
4151
|
+
version = "3.2.0"
|
|
4066
4152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4067
|
-
checksum = "
|
|
4153
|
+
checksum = "3cd3a7535e50bf36857e7be7bec276d334e8c2dfa469c2201226fd01638ea5ca"
|
|
4068
4154
|
dependencies = [
|
|
4069
4155
|
"proc-macro2",
|
|
4070
4156
|
"quote",
|
|
4071
|
-
"syn",
|
|
4157
|
+
"syn 2.0.119",
|
|
4072
4158
|
]
|
|
4073
4159
|
|
|
4074
4160
|
[[package]]
|
|
@@ -4085,13 +4171,22 @@ dependencies = [
|
|
|
4085
4171
|
"windows-sys 0.52.0",
|
|
4086
4172
|
]
|
|
4087
4173
|
|
|
4174
|
+
[[package]]
|
|
4175
|
+
name = "rolling-file"
|
|
4176
|
+
version = "0.2.0"
|
|
4177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4178
|
+
checksum = "8395b4f860856b740f20a296ea2cd4d823e81a2658cf05ef61be22916026a906"
|
|
4179
|
+
dependencies = [
|
|
4180
|
+
"chrono",
|
|
4181
|
+
]
|
|
4182
|
+
|
|
4088
4183
|
[[package]]
|
|
4089
4184
|
name = "ron"
|
|
4090
|
-
version = "0.12.
|
|
4185
|
+
version = "0.12.2"
|
|
4091
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
-
checksum = "
|
|
4187
|
+
checksum = "81116b9531d61eabc41aeb228e4b6b2435bcca3233b98cf3b3077d4e6e9debb3"
|
|
4093
4188
|
dependencies = [
|
|
4094
|
-
"bitflags",
|
|
4189
|
+
"bitflags 2.13.2",
|
|
4095
4190
|
"once_cell",
|
|
4096
4191
|
"serde",
|
|
4097
4192
|
"serde_derive",
|
|
@@ -4105,8 +4200,8 @@ version = "0.9.10"
|
|
|
4105
4200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4106
4201
|
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
4107
4202
|
dependencies = [
|
|
4108
|
-
"const-oid",
|
|
4109
|
-
"digest",
|
|
4203
|
+
"const-oid 0.9.6",
|
|
4204
|
+
"digest 0.10.7",
|
|
4110
4205
|
"num-bigint-dig",
|
|
4111
4206
|
"num-integer",
|
|
4112
4207
|
"num-traits",
|
|
@@ -4145,21 +4240,21 @@ dependencies = [
|
|
|
4145
4240
|
"serde-aux",
|
|
4146
4241
|
"serde_json",
|
|
4147
4242
|
"sqlx",
|
|
4148
|
-
"thiserror 2.0.
|
|
4243
|
+
"thiserror 2.0.20",
|
|
4149
4244
|
"tokio",
|
|
4150
4245
|
]
|
|
4151
4246
|
|
|
4152
4247
|
[[package]]
|
|
4153
4248
|
name = "rustc-demangle"
|
|
4154
|
-
version = "0.1.
|
|
4249
|
+
version = "0.1.28"
|
|
4155
4250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4156
|
-
checksum = "
|
|
4251
|
+
checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
|
|
4157
4252
|
|
|
4158
4253
|
[[package]]
|
|
4159
4254
|
name = "rustc-hash"
|
|
4160
|
-
version = "2.1.
|
|
4255
|
+
version = "2.1.3"
|
|
4161
4256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4257
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
4163
4258
|
|
|
4164
4259
|
[[package]]
|
|
4165
4260
|
name = "rustc_version"
|
|
@@ -4181,9 +4276,9 @@ dependencies = [
|
|
|
4181
4276
|
|
|
4182
4277
|
[[package]]
|
|
4183
4278
|
name = "rustls"
|
|
4184
|
-
version = "0.23.
|
|
4279
|
+
version = "0.23.44"
|
|
4185
4280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
-
checksum = "
|
|
4281
|
+
checksum = "6725596c3f2c3a0aef021139e145d4eafe314a6623e4680ca83852b2c67ab2ba"
|
|
4187
4282
|
dependencies = [
|
|
4188
4283
|
"aws-lc-rs",
|
|
4189
4284
|
"log",
|
|
@@ -4197,9 +4292,9 @@ dependencies = [
|
|
|
4197
4292
|
|
|
4198
4293
|
[[package]]
|
|
4199
4294
|
name = "rustls-native-certs"
|
|
4200
|
-
version = "0.8.
|
|
4295
|
+
version = "0.8.4"
|
|
4201
4296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4202
|
-
checksum = "
|
|
4297
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
4203
4298
|
dependencies = [
|
|
4204
4299
|
"openssl-probe",
|
|
4205
4300
|
"rustls-pki-types",
|
|
@@ -4209,19 +4304,46 @@ dependencies = [
|
|
|
4209
4304
|
|
|
4210
4305
|
[[package]]
|
|
4211
4306
|
name = "rustls-pki-types"
|
|
4212
|
-
version = "1.
|
|
4307
|
+
version = "1.15.1"
|
|
4213
4308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4214
|
-
checksum = "
|
|
4309
|
+
checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
|
|
4215
4310
|
dependencies = [
|
|
4216
4311
|
"web-time",
|
|
4217
4312
|
"zeroize",
|
|
4218
4313
|
]
|
|
4219
4314
|
|
|
4315
|
+
[[package]]
|
|
4316
|
+
name = "rustls-platform-verifier"
|
|
4317
|
+
version = "0.7.0"
|
|
4318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4319
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
4320
|
+
dependencies = [
|
|
4321
|
+
"core-foundation",
|
|
4322
|
+
"core-foundation-sys",
|
|
4323
|
+
"jni",
|
|
4324
|
+
"log",
|
|
4325
|
+
"once_cell",
|
|
4326
|
+
"rustls",
|
|
4327
|
+
"rustls-native-certs",
|
|
4328
|
+
"rustls-platform-verifier-android",
|
|
4329
|
+
"rustls-webpki",
|
|
4330
|
+
"security-framework",
|
|
4331
|
+
"security-framework-sys",
|
|
4332
|
+
"webpki-root-certs",
|
|
4333
|
+
"windows-sys 0.61.2",
|
|
4334
|
+
]
|
|
4335
|
+
|
|
4336
|
+
[[package]]
|
|
4337
|
+
name = "rustls-platform-verifier-android"
|
|
4338
|
+
version = "0.1.1"
|
|
4339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4340
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
4341
|
+
|
|
4220
4342
|
[[package]]
|
|
4221
4343
|
name = "rustls-webpki"
|
|
4222
|
-
version = "0.103.
|
|
4344
|
+
version = "0.103.15"
|
|
4223
4345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4224
|
-
checksum = "
|
|
4346
|
+
checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
|
|
4225
4347
|
dependencies = [
|
|
4226
4348
|
"aws-lc-rs",
|
|
4227
4349
|
"ring",
|
|
@@ -4231,9 +4353,9 @@ dependencies = [
|
|
|
4231
4353
|
|
|
4232
4354
|
[[package]]
|
|
4233
4355
|
name = "rustversion"
|
|
4234
|
-
version = "1.0.
|
|
4356
|
+
version = "1.0.23"
|
|
4235
4357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4236
|
-
checksum = "
|
|
4358
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
4237
4359
|
|
|
4238
4360
|
[[package]]
|
|
4239
4361
|
name = "ryu"
|
|
@@ -4273,9 +4395,9 @@ dependencies = [
|
|
|
4273
4395
|
|
|
4274
4396
|
[[package]]
|
|
4275
4397
|
name = "schemars"
|
|
4276
|
-
version = "1.2.
|
|
4398
|
+
version = "1.2.2"
|
|
4277
4399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4278
|
-
checksum = "
|
|
4400
|
+
checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
|
|
4279
4401
|
dependencies = [
|
|
4280
4402
|
"dyn-clone",
|
|
4281
4403
|
"ref-cast",
|
|
@@ -4305,7 +4427,7 @@ version = "3.7.0"
|
|
|
4305
4427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4306
4428
|
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
4307
4429
|
dependencies = [
|
|
4308
|
-
"bitflags",
|
|
4430
|
+
"bitflags 2.13.2",
|
|
4309
4431
|
"core-foundation",
|
|
4310
4432
|
"core-foundation-sys",
|
|
4311
4433
|
"libc",
|
|
@@ -4324,9 +4446,9 @@ dependencies = [
|
|
|
4324
4446
|
|
|
4325
4447
|
[[package]]
|
|
4326
4448
|
name = "semver"
|
|
4327
|
-
version = "1.0.
|
|
4449
|
+
version = "1.0.28"
|
|
4328
4450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4329
|
-
checksum = "
|
|
4451
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
4330
4452
|
|
|
4331
4453
|
[[package]]
|
|
4332
4454
|
name = "seq-macro"
|
|
@@ -4336,9 +4458,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
4336
4458
|
|
|
4337
4459
|
[[package]]
|
|
4338
4460
|
name = "serde"
|
|
4339
|
-
version = "1.0.
|
|
4461
|
+
version = "1.0.229"
|
|
4340
4462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
-
checksum = "
|
|
4463
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
4342
4464
|
dependencies = [
|
|
4343
4465
|
"serde_core",
|
|
4344
4466
|
"serde_derive",
|
|
@@ -4356,6 +4478,25 @@ dependencies = [
|
|
|
4356
4478
|
"serde_json",
|
|
4357
4479
|
]
|
|
4358
4480
|
|
|
4481
|
+
[[package]]
|
|
4482
|
+
name = "serde-saphyr"
|
|
4483
|
+
version = "0.0.29"
|
|
4484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4485
|
+
checksum = "7bd22781911de0ca6debda95f073c8f18bec65d1a94f1fa9573f3102e514cea4"
|
|
4486
|
+
dependencies = [
|
|
4487
|
+
"ahash",
|
|
4488
|
+
"annotate-snippets",
|
|
4489
|
+
"base64 0.22.1",
|
|
4490
|
+
"encoding_rs_io",
|
|
4491
|
+
"getrandom 0.3.4",
|
|
4492
|
+
"granit-parser",
|
|
4493
|
+
"nohash-hasher",
|
|
4494
|
+
"num-traits",
|
|
4495
|
+
"serde_core",
|
|
4496
|
+
"smallvec",
|
|
4497
|
+
"zmij",
|
|
4498
|
+
]
|
|
4499
|
+
|
|
4359
4500
|
[[package]]
|
|
4360
4501
|
name = "serde-untagged"
|
|
4361
4502
|
version = "0.1.9"
|
|
@@ -4374,35 +4515,35 @@ version = "0.7.0"
|
|
|
4374
4515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4375
4516
|
checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
|
|
4376
4517
|
dependencies = [
|
|
4377
|
-
"ordered-float
|
|
4518
|
+
"ordered-float",
|
|
4378
4519
|
"serde",
|
|
4379
4520
|
]
|
|
4380
4521
|
|
|
4381
4522
|
[[package]]
|
|
4382
4523
|
name = "serde_core"
|
|
4383
|
-
version = "1.0.
|
|
4524
|
+
version = "1.0.229"
|
|
4384
4525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4385
|
-
checksum = "
|
|
4526
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
4386
4527
|
dependencies = [
|
|
4387
4528
|
"serde_derive",
|
|
4388
4529
|
]
|
|
4389
4530
|
|
|
4390
4531
|
[[package]]
|
|
4391
4532
|
name = "serde_derive"
|
|
4392
|
-
version = "1.0.
|
|
4533
|
+
version = "1.0.229"
|
|
4393
4534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4394
|
-
checksum = "
|
|
4535
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
4395
4536
|
dependencies = [
|
|
4396
4537
|
"proc-macro2",
|
|
4397
4538
|
"quote",
|
|
4398
|
-
"syn",
|
|
4539
|
+
"syn 3.0.5",
|
|
4399
4540
|
]
|
|
4400
4541
|
|
|
4401
4542
|
[[package]]
|
|
4402
4543
|
name = "serde_json"
|
|
4403
|
-
version = "1.0.
|
|
4544
|
+
version = "1.0.151"
|
|
4404
4545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4405
|
-
checksum = "
|
|
4546
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
4406
4547
|
dependencies = [
|
|
4407
4548
|
"itoa",
|
|
4408
4549
|
"memchr",
|
|
@@ -4421,14 +4562,14 @@ dependencies = [
|
|
|
4421
4562
|
"futures",
|
|
4422
4563
|
"percent-encoding",
|
|
4423
4564
|
"serde",
|
|
4424
|
-
"thiserror 2.0.
|
|
4565
|
+
"thiserror 2.0.20",
|
|
4425
4566
|
]
|
|
4426
4567
|
|
|
4427
4568
|
[[package]]
|
|
4428
4569
|
name = "serde_spanned"
|
|
4429
|
-
version = "1.
|
|
4570
|
+
version = "1.1.1"
|
|
4430
4571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4431
|
-
checksum = "
|
|
4572
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
4432
4573
|
dependencies = [
|
|
4433
4574
|
"serde_core",
|
|
4434
4575
|
]
|
|
@@ -4447,17 +4588,19 @@ dependencies = [
|
|
|
4447
4588
|
|
|
4448
4589
|
[[package]]
|
|
4449
4590
|
name = "serde_with"
|
|
4450
|
-
version = "3.
|
|
4591
|
+
version = "3.23.0"
|
|
4451
4592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4452
|
-
checksum = "
|
|
4593
|
+
checksum = "935177bb8c0cd8ca1a4e6d1a2ac8988bea69cab4f9d3a31311e012ad27868ea4"
|
|
4453
4594
|
dependencies = [
|
|
4454
|
-
"base64",
|
|
4595
|
+
"base64 0.23.1",
|
|
4596
|
+
"bs58",
|
|
4455
4597
|
"chrono",
|
|
4456
4598
|
"hex",
|
|
4457
4599
|
"indexmap 1.9.3",
|
|
4458
|
-
"indexmap 2.
|
|
4600
|
+
"indexmap 2.14.2",
|
|
4601
|
+
"jiff",
|
|
4459
4602
|
"schemars 0.9.0",
|
|
4460
|
-
"schemars 1.2.
|
|
4603
|
+
"schemars 1.2.2",
|
|
4461
4604
|
"serde_core",
|
|
4462
4605
|
"serde_json",
|
|
4463
4606
|
"serde_with_macros",
|
|
@@ -4466,14 +4609,14 @@ dependencies = [
|
|
|
4466
4609
|
|
|
4467
4610
|
[[package]]
|
|
4468
4611
|
name = "serde_with_macros"
|
|
4469
|
-
version = "3.
|
|
4612
|
+
version = "3.23.0"
|
|
4470
4613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4471
|
-
checksum = "
|
|
4614
|
+
checksum = "1d607aa01a3cb0ad757d6fd216136910db3c97b102fe686585689615a02dbcdc"
|
|
4472
4615
|
dependencies = [
|
|
4473
|
-
"darling 0.
|
|
4616
|
+
"darling 0.24.1",
|
|
4474
4617
|
"proc-macro2",
|
|
4475
4618
|
"quote",
|
|
4476
|
-
"syn",
|
|
4619
|
+
"syn 3.0.5",
|
|
4477
4620
|
]
|
|
4478
4621
|
|
|
4479
4622
|
[[package]]
|
|
@@ -4482,7 +4625,7 @@ version = "0.9.34+deprecated"
|
|
|
4482
4625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4483
4626
|
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
4484
4627
|
dependencies = [
|
|
4485
|
-
"indexmap 2.
|
|
4628
|
+
"indexmap 2.14.2",
|
|
4486
4629
|
"itoa",
|
|
4487
4630
|
"ryu",
|
|
4488
4631
|
"serde",
|
|
@@ -4491,13 +4634,24 @@ dependencies = [
|
|
|
4491
4634
|
|
|
4492
4635
|
[[package]]
|
|
4493
4636
|
name = "sha1"
|
|
4494
|
-
version = "0.10.
|
|
4637
|
+
version = "0.10.7"
|
|
4495
4638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4496
|
-
checksum = "
|
|
4639
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
4497
4640
|
dependencies = [
|
|
4498
4641
|
"cfg-if",
|
|
4499
4642
|
"cpufeatures 0.2.17",
|
|
4500
|
-
"digest",
|
|
4643
|
+
"digest 0.10.7",
|
|
4644
|
+
]
|
|
4645
|
+
|
|
4646
|
+
[[package]]
|
|
4647
|
+
name = "sha1"
|
|
4648
|
+
version = "0.11.0"
|
|
4649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4650
|
+
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
4651
|
+
dependencies = [
|
|
4652
|
+
"cfg-if",
|
|
4653
|
+
"cpufeatures 0.3.1",
|
|
4654
|
+
"digest 0.11.3",
|
|
4501
4655
|
]
|
|
4502
4656
|
|
|
4503
4657
|
[[package]]
|
|
@@ -4508,7 +4662,7 @@ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
|
4508
4662
|
dependencies = [
|
|
4509
4663
|
"cfg-if",
|
|
4510
4664
|
"cpufeatures 0.2.17",
|
|
4511
|
-
"digest",
|
|
4665
|
+
"digest 0.10.7",
|
|
4512
4666
|
]
|
|
4513
4667
|
|
|
4514
4668
|
[[package]]
|
|
@@ -4528,9 +4682,9 @@ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
|
4528
4682
|
|
|
4529
4683
|
[[package]]
|
|
4530
4684
|
name = "shlex"
|
|
4531
|
-
version = "
|
|
4685
|
+
version = "2.0.1"
|
|
4532
4686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4533
|
-
checksum = "
|
|
4687
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
4534
4688
|
|
|
4535
4689
|
[[package]]
|
|
4536
4690
|
name = "signal-hook-registry"
|
|
@@ -4548,15 +4702,25 @@ version = "2.2.0"
|
|
|
4548
4702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
4703
|
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4550
4704
|
dependencies = [
|
|
4551
|
-
"digest",
|
|
4705
|
+
"digest 0.10.7",
|
|
4552
4706
|
"rand_core 0.6.4",
|
|
4553
4707
|
]
|
|
4554
4708
|
|
|
4555
4709
|
[[package]]
|
|
4556
4710
|
name = "simd-adler32"
|
|
4557
|
-
version = "0.3.
|
|
4711
|
+
version = "0.3.10"
|
|
4712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4713
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
4714
|
+
|
|
4715
|
+
[[package]]
|
|
4716
|
+
name = "simd_cesu8"
|
|
4717
|
+
version = "1.2.0"
|
|
4558
4718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4559
|
-
checksum = "
|
|
4719
|
+
checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
|
|
4720
|
+
dependencies = [
|
|
4721
|
+
"rustc_version",
|
|
4722
|
+
"simdutf8",
|
|
4723
|
+
]
|
|
4560
4724
|
|
|
4561
4725
|
[[package]]
|
|
4562
4726
|
name = "simdutf8"
|
|
@@ -4566,9 +4730,9 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
|
4566
4730
|
|
|
4567
4731
|
[[package]]
|
|
4568
4732
|
name = "siphasher"
|
|
4569
|
-
version = "1.0.
|
|
4733
|
+
version = "1.0.3"
|
|
4570
4734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4571
|
-
checksum = "
|
|
4735
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
4572
4736
|
|
|
4573
4737
|
[[package]]
|
|
4574
4738
|
name = "slab"
|
|
@@ -4578,9 +4742,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
4578
4742
|
|
|
4579
4743
|
[[package]]
|
|
4580
4744
|
name = "smallvec"
|
|
4581
|
-
version = "1.15.
|
|
4745
|
+
version = "1.15.2"
|
|
4582
4746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4583
|
-
checksum = "
|
|
4747
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
4584
4748
|
dependencies = [
|
|
4585
4749
|
"serde",
|
|
4586
4750
|
]
|
|
@@ -4592,32 +4756,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4592
4756
|
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
|
4593
4757
|
dependencies = [
|
|
4594
4758
|
"autocfg",
|
|
4595
|
-
"serde",
|
|
4596
4759
|
"static_assertions",
|
|
4597
4760
|
"version_check",
|
|
4598
4761
|
]
|
|
4599
4762
|
|
|
4600
4763
|
[[package]]
|
|
4601
4764
|
name = "snap"
|
|
4602
|
-
version = "1.1.
|
|
4603
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4604
|
-
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
4605
|
-
|
|
4606
|
-
[[package]]
|
|
4607
|
-
name = "socket2"
|
|
4608
|
-
version = "0.5.10"
|
|
4765
|
+
version = "1.1.2"
|
|
4609
4766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4610
|
-
checksum = "
|
|
4611
|
-
dependencies = [
|
|
4612
|
-
"libc",
|
|
4613
|
-
"windows-sys 0.52.0",
|
|
4614
|
-
]
|
|
4767
|
+
checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
|
|
4615
4768
|
|
|
4616
4769
|
[[package]]
|
|
4617
4770
|
name = "socket2"
|
|
4618
|
-
version = "0.6.
|
|
4771
|
+
version = "0.6.5"
|
|
4619
4772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4620
|
-
checksum = "
|
|
4773
|
+
checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
|
|
4621
4774
|
dependencies = [
|
|
4622
4775
|
"libc",
|
|
4623
4776
|
"windows-sys 0.61.2",
|
|
@@ -4631,9 +4784,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|
|
4631
4784
|
|
|
4632
4785
|
[[package]]
|
|
4633
4786
|
name = "spin"
|
|
4634
|
-
version = "0.9.
|
|
4787
|
+
version = "0.9.9"
|
|
4635
4788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4636
|
-
checksum = "
|
|
4789
|
+
checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
|
|
4637
4790
|
dependencies = [
|
|
4638
4791
|
"lock_api",
|
|
4639
4792
|
]
|
|
@@ -4667,7 +4820,7 @@ version = "0.8.6"
|
|
|
4667
4820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4668
4821
|
checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
|
|
4669
4822
|
dependencies = [
|
|
4670
|
-
"base64",
|
|
4823
|
+
"base64 0.22.1",
|
|
4671
4824
|
"bytes",
|
|
4672
4825
|
"chrono",
|
|
4673
4826
|
"crc",
|
|
@@ -4680,7 +4833,7 @@ dependencies = [
|
|
|
4680
4833
|
"futures-util",
|
|
4681
4834
|
"hashbrown 0.15.5",
|
|
4682
4835
|
"hashlink 0.10.0",
|
|
4683
|
-
"indexmap 2.
|
|
4836
|
+
"indexmap 2.14.2",
|
|
4684
4837
|
"log",
|
|
4685
4838
|
"memchr",
|
|
4686
4839
|
"once_cell",
|
|
@@ -4690,7 +4843,7 @@ dependencies = [
|
|
|
4690
4843
|
"serde_json",
|
|
4691
4844
|
"sha2",
|
|
4692
4845
|
"smallvec",
|
|
4693
|
-
"thiserror 2.0.
|
|
4846
|
+
"thiserror 2.0.20",
|
|
4694
4847
|
"tokio",
|
|
4695
4848
|
"tokio-stream",
|
|
4696
4849
|
"tracing",
|
|
@@ -4709,7 +4862,7 @@ dependencies = [
|
|
|
4709
4862
|
"quote",
|
|
4710
4863
|
"sqlx-core",
|
|
4711
4864
|
"sqlx-macros-core",
|
|
4712
|
-
"syn",
|
|
4865
|
+
"syn 2.0.119",
|
|
4713
4866
|
]
|
|
4714
4867
|
|
|
4715
4868
|
[[package]]
|
|
@@ -4732,7 +4885,7 @@ dependencies = [
|
|
|
4732
4885
|
"sqlx-mysql",
|
|
4733
4886
|
"sqlx-postgres",
|
|
4734
4887
|
"sqlx-sqlite",
|
|
4735
|
-
"syn",
|
|
4888
|
+
"syn 2.0.119",
|
|
4736
4889
|
"tokio",
|
|
4737
4890
|
"url",
|
|
4738
4891
|
]
|
|
@@ -4744,13 +4897,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4744
4897
|
checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
|
|
4745
4898
|
dependencies = [
|
|
4746
4899
|
"atoi",
|
|
4747
|
-
"base64",
|
|
4748
|
-
"bitflags",
|
|
4900
|
+
"base64 0.22.1",
|
|
4901
|
+
"bitflags 2.13.2",
|
|
4749
4902
|
"byteorder",
|
|
4750
4903
|
"bytes",
|
|
4751
4904
|
"chrono",
|
|
4752
4905
|
"crc",
|
|
4753
|
-
"digest",
|
|
4906
|
+
"digest 0.10.7",
|
|
4754
4907
|
"dotenvy",
|
|
4755
4908
|
"either",
|
|
4756
4909
|
"futures-channel",
|
|
@@ -4767,15 +4920,15 @@ dependencies = [
|
|
|
4767
4920
|
"memchr",
|
|
4768
4921
|
"once_cell",
|
|
4769
4922
|
"percent-encoding",
|
|
4770
|
-
"rand 0.8.
|
|
4923
|
+
"rand 0.8.8",
|
|
4771
4924
|
"rsa",
|
|
4772
4925
|
"serde",
|
|
4773
|
-
"sha1",
|
|
4926
|
+
"sha1 0.10.7",
|
|
4774
4927
|
"sha2",
|
|
4775
4928
|
"smallvec",
|
|
4776
4929
|
"sqlx-core",
|
|
4777
4930
|
"stringprep",
|
|
4778
|
-
"thiserror 2.0.
|
|
4931
|
+
"thiserror 2.0.20",
|
|
4779
4932
|
"tracing",
|
|
4780
4933
|
"uuid",
|
|
4781
4934
|
"whoami",
|
|
@@ -4788,8 +4941,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4788
4941
|
checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
|
|
4789
4942
|
dependencies = [
|
|
4790
4943
|
"atoi",
|
|
4791
|
-
"base64",
|
|
4792
|
-
"bitflags",
|
|
4944
|
+
"base64 0.22.1",
|
|
4945
|
+
"bitflags 2.13.2",
|
|
4793
4946
|
"byteorder",
|
|
4794
4947
|
"chrono",
|
|
4795
4948
|
"crc",
|
|
@@ -4807,14 +4960,14 @@ dependencies = [
|
|
|
4807
4960
|
"md-5",
|
|
4808
4961
|
"memchr",
|
|
4809
4962
|
"once_cell",
|
|
4810
|
-
"rand 0.8.
|
|
4963
|
+
"rand 0.8.8",
|
|
4811
4964
|
"serde",
|
|
4812
4965
|
"serde_json",
|
|
4813
4966
|
"sha2",
|
|
4814
4967
|
"smallvec",
|
|
4815
4968
|
"sqlx-core",
|
|
4816
4969
|
"stringprep",
|
|
4817
|
-
"thiserror 2.0.
|
|
4970
|
+
"thiserror 2.0.20",
|
|
4818
4971
|
"tracing",
|
|
4819
4972
|
"uuid",
|
|
4820
4973
|
"whoami",
|
|
@@ -4840,7 +4993,7 @@ dependencies = [
|
|
|
4840
4993
|
"serde",
|
|
4841
4994
|
"serde_urlencoded",
|
|
4842
4995
|
"sqlx-core",
|
|
4843
|
-
"thiserror 2.0.
|
|
4996
|
+
"thiserror 2.0.20",
|
|
4844
4997
|
"tracing",
|
|
4845
4998
|
"url",
|
|
4846
4999
|
"uuid",
|
|
@@ -4858,6 +5011,12 @@ version = "1.1.0"
|
|
|
4858
5011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4859
5012
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
4860
5013
|
|
|
5014
|
+
[[package]]
|
|
5015
|
+
name = "strfmt"
|
|
5016
|
+
version = "0.2.5"
|
|
5017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5018
|
+
checksum = "29fdc163db75f7b5ffa3daf0c5a7136fb0d4b2f35523cd1769da05e034159feb"
|
|
5019
|
+
|
|
4861
5020
|
[[package]]
|
|
4862
5021
|
name = "stringprep"
|
|
4863
5022
|
version = "0.1.5"
|
|
@@ -4893,7 +5052,7 @@ dependencies = [
|
|
|
4893
5052
|
"heck",
|
|
4894
5053
|
"proc-macro2",
|
|
4895
5054
|
"quote",
|
|
4896
|
-
"syn",
|
|
5055
|
+
"syn 2.0.119",
|
|
4897
5056
|
]
|
|
4898
5057
|
|
|
4899
5058
|
[[package]]
|
|
@@ -4902,11 +5061,28 @@ version = "2.6.1"
|
|
|
4902
5061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4903
5062
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
4904
5063
|
|
|
5064
|
+
[[package]]
|
|
5065
|
+
name = "symlink"
|
|
5066
|
+
version = "0.1.0"
|
|
5067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5068
|
+
checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a"
|
|
5069
|
+
|
|
5070
|
+
[[package]]
|
|
5071
|
+
name = "syn"
|
|
5072
|
+
version = "2.0.119"
|
|
5073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5074
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
5075
|
+
dependencies = [
|
|
5076
|
+
"proc-macro2",
|
|
5077
|
+
"quote",
|
|
5078
|
+
"unicode-ident",
|
|
5079
|
+
]
|
|
5080
|
+
|
|
4905
5081
|
[[package]]
|
|
4906
5082
|
name = "syn"
|
|
4907
|
-
version = "
|
|
5083
|
+
version = "3.0.5"
|
|
4908
5084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4909
|
-
checksum = "
|
|
5085
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
4910
5086
|
dependencies = [
|
|
4911
5087
|
"proc-macro2",
|
|
4912
5088
|
"quote",
|
|
@@ -4930,7 +5106,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
4930
5106
|
dependencies = [
|
|
4931
5107
|
"proc-macro2",
|
|
4932
5108
|
"quote",
|
|
4933
|
-
"syn",
|
|
5109
|
+
"syn 2.0.119",
|
|
4934
5110
|
]
|
|
4935
5111
|
|
|
4936
5112
|
[[package]]
|
|
@@ -4941,12 +5117,9 @@ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
|
4941
5117
|
|
|
4942
5118
|
[[package]]
|
|
4943
5119
|
name = "thin-vec"
|
|
4944
|
-
version = "0.2.
|
|
5120
|
+
version = "0.2.19"
|
|
4945
5121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4946
|
-
checksum = "
|
|
4947
|
-
dependencies = [
|
|
4948
|
-
"serde",
|
|
4949
|
-
]
|
|
5122
|
+
checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
|
|
4950
5123
|
|
|
4951
5124
|
[[package]]
|
|
4952
5125
|
name = "thiserror"
|
|
@@ -4959,11 +5132,11 @@ dependencies = [
|
|
|
4959
5132
|
|
|
4960
5133
|
[[package]]
|
|
4961
5134
|
name = "thiserror"
|
|
4962
|
-
version = "2.0.
|
|
5135
|
+
version = "2.0.20"
|
|
4963
5136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4964
|
-
checksum = "
|
|
5137
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
4965
5138
|
dependencies = [
|
|
4966
|
-
"thiserror-impl 2.0.
|
|
5139
|
+
"thiserror-impl 2.0.20",
|
|
4967
5140
|
]
|
|
4968
5141
|
|
|
4969
5142
|
[[package]]
|
|
@@ -4974,48 +5147,36 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
4974
5147
|
dependencies = [
|
|
4975
5148
|
"proc-macro2",
|
|
4976
5149
|
"quote",
|
|
4977
|
-
"syn",
|
|
5150
|
+
"syn 2.0.119",
|
|
4978
5151
|
]
|
|
4979
5152
|
|
|
4980
5153
|
[[package]]
|
|
4981
5154
|
name = "thiserror-impl"
|
|
4982
|
-
version = "2.0.
|
|
5155
|
+
version = "2.0.20"
|
|
4983
5156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4984
|
-
checksum = "
|
|
5157
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
4985
5158
|
dependencies = [
|
|
4986
5159
|
"proc-macro2",
|
|
4987
5160
|
"quote",
|
|
4988
|
-
"syn",
|
|
5161
|
+
"syn 3.0.5",
|
|
4989
5162
|
]
|
|
4990
5163
|
|
|
4991
5164
|
[[package]]
|
|
4992
5165
|
name = "thread_local"
|
|
4993
|
-
version = "1.1.
|
|
5166
|
+
version = "1.1.10"
|
|
4994
5167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4995
|
-
checksum = "
|
|
5168
|
+
checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
|
|
4996
5169
|
dependencies = [
|
|
4997
5170
|
"cfg-if",
|
|
4998
5171
|
]
|
|
4999
5172
|
|
|
5000
|
-
[[package]]
|
|
5001
|
-
name = "thrift"
|
|
5002
|
-
version = "0.17.0"
|
|
5003
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5004
|
-
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
5005
|
-
dependencies = [
|
|
5006
|
-
"byteorder",
|
|
5007
|
-
"integer-encoding",
|
|
5008
|
-
"ordered-float 2.10.1",
|
|
5009
|
-
]
|
|
5010
|
-
|
|
5011
5173
|
[[package]]
|
|
5012
5174
|
name = "time"
|
|
5013
|
-
version = "0.3.
|
|
5175
|
+
version = "0.3.55"
|
|
5014
5176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5015
|
-
checksum = "
|
|
5177
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
5016
5178
|
dependencies = [
|
|
5017
5179
|
"deranged",
|
|
5018
|
-
"itoa",
|
|
5019
5180
|
"num-conv",
|
|
5020
5181
|
"powerfmt",
|
|
5021
5182
|
"serde_core",
|
|
@@ -5025,15 +5186,15 @@ dependencies = [
|
|
|
5025
5186
|
|
|
5026
5187
|
[[package]]
|
|
5027
5188
|
name = "time-core"
|
|
5028
|
-
version = "0.1.
|
|
5189
|
+
version = "0.1.9"
|
|
5029
5190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5030
|
-
checksum = "
|
|
5191
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
5031
5192
|
|
|
5032
5193
|
[[package]]
|
|
5033
5194
|
name = "time-macros"
|
|
5034
|
-
version = "0.2.
|
|
5195
|
+
version = "0.2.32"
|
|
5035
5196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5036
|
-
checksum = "
|
|
5197
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
5037
5198
|
dependencies = [
|
|
5038
5199
|
"num-conv",
|
|
5039
5200
|
"time-core",
|
|
@@ -5050,9 +5211,9 @@ dependencies = [
|
|
|
5050
5211
|
|
|
5051
5212
|
[[package]]
|
|
5052
5213
|
name = "tinystr"
|
|
5053
|
-
version = "0.8.
|
|
5214
|
+
version = "0.8.4"
|
|
5054
5215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5055
|
-
checksum = "
|
|
5216
|
+
checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
|
|
5056
5217
|
dependencies = [
|
|
5057
5218
|
"displaydoc",
|
|
5058
5219
|
"zerovec",
|
|
@@ -5070,24 +5231,15 @@ dependencies = [
|
|
|
5070
5231
|
|
|
5071
5232
|
[[package]]
|
|
5072
5233
|
name = "tinyvec"
|
|
5073
|
-
version = "1.
|
|
5074
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5075
|
-
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
5076
|
-
dependencies = [
|
|
5077
|
-
"tinyvec_macros",
|
|
5078
|
-
]
|
|
5079
|
-
|
|
5080
|
-
[[package]]
|
|
5081
|
-
name = "tinyvec_macros"
|
|
5082
|
-
version = "0.1.1"
|
|
5234
|
+
version = "1.13.3"
|
|
5083
5235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5084
|
-
checksum = "
|
|
5236
|
+
checksum = "fd3ca314f692efd6c868f8408f53fe444634a845f96c028b97d35f6a1f79f0ee"
|
|
5085
5237
|
|
|
5086
5238
|
[[package]]
|
|
5087
5239
|
name = "tokio"
|
|
5088
|
-
version = "1.
|
|
5240
|
+
version = "1.53.1"
|
|
5089
5241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5090
|
-
checksum = "
|
|
5242
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
5091
5243
|
dependencies = [
|
|
5092
5244
|
"bytes",
|
|
5093
5245
|
"libc",
|
|
@@ -5095,7 +5247,7 @@ dependencies = [
|
|
|
5095
5247
|
"parking_lot",
|
|
5096
5248
|
"pin-project-lite",
|
|
5097
5249
|
"signal-hook-registry",
|
|
5098
|
-
"socket2
|
|
5250
|
+
"socket2",
|
|
5099
5251
|
"tokio-macros",
|
|
5100
5252
|
"windows-sys 0.61.2",
|
|
5101
5253
|
]
|
|
@@ -5118,20 +5270,20 @@ dependencies = [
|
|
|
5118
5270
|
|
|
5119
5271
|
[[package]]
|
|
5120
5272
|
name = "tokio-macros"
|
|
5121
|
-
version = "2.
|
|
5273
|
+
version = "2.7.2"
|
|
5122
5274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5123
|
-
checksum = "
|
|
5275
|
+
checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
5124
5276
|
dependencies = [
|
|
5125
5277
|
"proc-macro2",
|
|
5126
5278
|
"quote",
|
|
5127
|
-
"syn",
|
|
5279
|
+
"syn 3.0.5",
|
|
5128
5280
|
]
|
|
5129
5281
|
|
|
5130
5282
|
[[package]]
|
|
5131
5283
|
name = "tokio-rustls"
|
|
5132
|
-
version = "0.26.
|
|
5284
|
+
version = "0.26.5"
|
|
5133
5285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5134
|
-
checksum = "
|
|
5286
|
+
checksum = "b0c85f2c3ef0b1cd58b36682f4b17aaa995f0e5db534d85692b4903abce21f67"
|
|
5135
5287
|
dependencies = [
|
|
5136
5288
|
"rustls",
|
|
5137
5289
|
"tokio",
|
|
@@ -5139,9 +5291,9 @@ dependencies = [
|
|
|
5139
5291
|
|
|
5140
5292
|
[[package]]
|
|
5141
5293
|
name = "tokio-stream"
|
|
5142
|
-
version = "0.1.
|
|
5294
|
+
version = "0.1.19"
|
|
5143
5295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5144
|
-
checksum = "
|
|
5296
|
+
checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
|
|
5145
5297
|
dependencies = [
|
|
5146
5298
|
"futures-core",
|
|
5147
5299
|
"pin-project-lite",
|
|
@@ -5150,22 +5302,23 @@ dependencies = [
|
|
|
5150
5302
|
|
|
5151
5303
|
[[package]]
|
|
5152
5304
|
name = "tokio-util"
|
|
5153
|
-
version = "0.7.
|
|
5305
|
+
version = "0.7.19"
|
|
5154
5306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5155
|
-
checksum = "
|
|
5307
|
+
checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
|
|
5156
5308
|
dependencies = [
|
|
5157
5309
|
"bytes",
|
|
5158
5310
|
"futures-core",
|
|
5159
5311
|
"futures-sink",
|
|
5312
|
+
"libc",
|
|
5160
5313
|
"pin-project-lite",
|
|
5161
5314
|
"tokio",
|
|
5162
5315
|
]
|
|
5163
5316
|
|
|
5164
5317
|
[[package]]
|
|
5165
5318
|
name = "toml"
|
|
5166
|
-
version = "1.
|
|
5319
|
+
version = "1.1.6+spec-1.1.0"
|
|
5167
5320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5168
|
-
checksum = "
|
|
5321
|
+
checksum = "920602543f0911ab71da12c50d59701da54c196d1a2bf5cb4b75667f137a406a"
|
|
5169
5322
|
dependencies = [
|
|
5170
5323
|
"serde_core",
|
|
5171
5324
|
"serde_spanned",
|
|
@@ -5176,18 +5329,18 @@ dependencies = [
|
|
|
5176
5329
|
|
|
5177
5330
|
[[package]]
|
|
5178
5331
|
name = "toml_datetime"
|
|
5179
|
-
version = "1.
|
|
5332
|
+
version = "1.1.1+spec-1.1.0"
|
|
5180
5333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5181
|
-
checksum = "
|
|
5334
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
5182
5335
|
dependencies = [
|
|
5183
5336
|
"serde_core",
|
|
5184
5337
|
]
|
|
5185
5338
|
|
|
5186
5339
|
[[package]]
|
|
5187
5340
|
name = "toml_parser"
|
|
5188
|
-
version = "1.
|
|
5341
|
+
version = "1.1.3+spec-1.1.0"
|
|
5189
5342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5190
|
-
checksum = "
|
|
5343
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
5191
5344
|
dependencies = [
|
|
5192
5345
|
"winnow",
|
|
5193
5346
|
]
|
|
@@ -5211,23 +5364,23 @@ dependencies = [
|
|
|
5211
5364
|
|
|
5212
5365
|
[[package]]
|
|
5213
5366
|
name = "tower-http"
|
|
5214
|
-
version = "0.6.
|
|
5367
|
+
version = "0.6.11"
|
|
5215
5368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5216
|
-
checksum = "
|
|
5369
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
5217
5370
|
dependencies = [
|
|
5218
|
-
"base64",
|
|
5219
|
-
"bitflags",
|
|
5371
|
+
"base64 0.22.1",
|
|
5372
|
+
"bitflags 2.13.2",
|
|
5220
5373
|
"bytes",
|
|
5221
5374
|
"futures-util",
|
|
5222
|
-
"http 1.
|
|
5375
|
+
"http 1.5.0",
|
|
5223
5376
|
"http-body",
|
|
5224
|
-
"iri-string",
|
|
5225
5377
|
"mime",
|
|
5226
5378
|
"pin-project-lite",
|
|
5227
5379
|
"tower",
|
|
5228
5380
|
"tower-layer",
|
|
5229
5381
|
"tower-service",
|
|
5230
5382
|
"tracing",
|
|
5383
|
+
"url",
|
|
5231
5384
|
]
|
|
5232
5385
|
|
|
5233
5386
|
[[package]]
|
|
@@ -5256,9 +5409,9 @@ dependencies = [
|
|
|
5256
5409
|
|
|
5257
5410
|
[[package]]
|
|
5258
5411
|
name = "tracing-actix-web"
|
|
5259
|
-
version = "0.7.
|
|
5412
|
+
version = "0.7.22"
|
|
5260
5413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5261
|
-
checksum = "
|
|
5414
|
+
checksum = "36bb7a33ce7f0807d44124b5119ea3581fd59028db56477a7aa01741c869ca6a"
|
|
5262
5415
|
dependencies = [
|
|
5263
5416
|
"actix-web",
|
|
5264
5417
|
"mutually_exclusive_features",
|
|
@@ -5267,6 +5420,19 @@ dependencies = [
|
|
|
5267
5420
|
"uuid",
|
|
5268
5421
|
]
|
|
5269
5422
|
|
|
5423
|
+
[[package]]
|
|
5424
|
+
name = "tracing-appender"
|
|
5425
|
+
version = "0.2.5"
|
|
5426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5427
|
+
checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c"
|
|
5428
|
+
dependencies = [
|
|
5429
|
+
"crossbeam-channel",
|
|
5430
|
+
"symlink",
|
|
5431
|
+
"thiserror 2.0.20",
|
|
5432
|
+
"time",
|
|
5433
|
+
"tracing-subscriber",
|
|
5434
|
+
]
|
|
5435
|
+
|
|
5270
5436
|
[[package]]
|
|
5271
5437
|
name = "tracing-attributes"
|
|
5272
5438
|
version = "0.1.31"
|
|
@@ -5275,7 +5441,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
5275
5441
|
dependencies = [
|
|
5276
5442
|
"proc-macro2",
|
|
5277
5443
|
"quote",
|
|
5278
|
-
"syn",
|
|
5444
|
+
"syn 2.0.119",
|
|
5279
5445
|
]
|
|
5280
5446
|
|
|
5281
5447
|
[[package]]
|
|
@@ -5364,9 +5530,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5364
5530
|
|
|
5365
5531
|
[[package]]
|
|
5366
5532
|
name = "twox-hash"
|
|
5367
|
-
version = "2.1.
|
|
5533
|
+
version = "2.1.4"
|
|
5368
5534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5369
|
-
checksum = "
|
|
5535
|
+
checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a"
|
|
5370
5536
|
|
|
5371
5537
|
[[package]]
|
|
5372
5538
|
name = "typeid"
|
|
@@ -5376,9 +5542,9 @@ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
|
5376
5542
|
|
|
5377
5543
|
[[package]]
|
|
5378
5544
|
name = "typenum"
|
|
5379
|
-
version = "1.
|
|
5545
|
+
version = "1.20.1"
|
|
5380
5546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5381
|
-
checksum = "
|
|
5547
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
5382
5548
|
|
|
5383
5549
|
[[package]]
|
|
5384
5550
|
name = "ucd-trie"
|
|
@@ -5415,21 +5581,21 @@ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
|
5415
5581
|
|
|
5416
5582
|
[[package]]
|
|
5417
5583
|
name = "unicode-segmentation"
|
|
5418
|
-
version = "1.
|
|
5584
|
+
version = "1.13.3"
|
|
5419
5585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5420
|
-
checksum = "
|
|
5586
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
5421
5587
|
|
|
5422
5588
|
[[package]]
|
|
5423
|
-
name = "unicode-
|
|
5424
|
-
version = "0.2.
|
|
5589
|
+
name = "unicode-width"
|
|
5590
|
+
version = "0.2.2"
|
|
5425
5591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5426
|
-
checksum = "
|
|
5592
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
5427
5593
|
|
|
5428
5594
|
[[package]]
|
|
5429
|
-
name = "
|
|
5430
|
-
version = "0.2.
|
|
5595
|
+
name = "unicode-xid"
|
|
5596
|
+
version = "0.2.6"
|
|
5431
5597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5432
|
-
checksum = "
|
|
5598
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
5433
5599
|
|
|
5434
5600
|
[[package]]
|
|
5435
5601
|
name = "unsafe-libyaml"
|
|
@@ -5470,11 +5636,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
5470
5636
|
|
|
5471
5637
|
[[package]]
|
|
5472
5638
|
name = "uuid"
|
|
5473
|
-
version = "1.
|
|
5639
|
+
version = "1.26.1"
|
|
5474
5640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5475
|
-
checksum = "
|
|
5641
|
+
checksum = "2ef6dac1e96601b4fb3acccccff2139741fcb757cb9a36089bf5be91cfb285ce"
|
|
5476
5642
|
dependencies = [
|
|
5477
|
-
"getrandom 0.4.
|
|
5643
|
+
"getrandom 0.4.3",
|
|
5478
5644
|
"js-sys",
|
|
5479
5645
|
"wasm-bindgen",
|
|
5480
5646
|
]
|
|
@@ -5524,18 +5690,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
5524
5690
|
|
|
5525
5691
|
[[package]]
|
|
5526
5692
|
name = "wasip2"
|
|
5527
|
-
version = "1.0.
|
|
5693
|
+
version = "1.0.4+wasi-0.2.12"
|
|
5528
5694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5529
|
-
checksum = "
|
|
5530
|
-
dependencies = [
|
|
5531
|
-
"wit-bindgen",
|
|
5532
|
-
]
|
|
5533
|
-
|
|
5534
|
-
[[package]]
|
|
5535
|
-
name = "wasip3"
|
|
5536
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
5537
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5538
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
5695
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
5539
5696
|
dependencies = [
|
|
5540
5697
|
"wit-bindgen",
|
|
5541
5698
|
]
|
|
@@ -5548,9 +5705,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
|
|
|
5548
5705
|
|
|
5549
5706
|
[[package]]
|
|
5550
5707
|
name = "wasm-bindgen"
|
|
5551
|
-
version = "0.2.
|
|
5708
|
+
version = "0.2.128"
|
|
5552
5709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5553
|
-
checksum = "
|
|
5710
|
+
checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
|
|
5554
5711
|
dependencies = [
|
|
5555
5712
|
"cfg-if",
|
|
5556
5713
|
"once_cell",
|
|
@@ -5561,23 +5718,19 @@ dependencies = [
|
|
|
5561
5718
|
|
|
5562
5719
|
[[package]]
|
|
5563
5720
|
name = "wasm-bindgen-futures"
|
|
5564
|
-
version = "0.4.
|
|
5721
|
+
version = "0.4.78"
|
|
5565
5722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5566
|
-
checksum = "
|
|
5723
|
+
checksum = "6ef4c5d3d2cdf5c54f4231181768f5510842e350db025faf1f7163b1030ed928"
|
|
5567
5724
|
dependencies = [
|
|
5568
|
-
"cfg-if",
|
|
5569
|
-
"futures-util",
|
|
5570
5725
|
"js-sys",
|
|
5571
|
-
"once_cell",
|
|
5572
5726
|
"wasm-bindgen",
|
|
5573
|
-
"web-sys",
|
|
5574
5727
|
]
|
|
5575
5728
|
|
|
5576
5729
|
[[package]]
|
|
5577
5730
|
name = "wasm-bindgen-macro"
|
|
5578
|
-
version = "0.2.
|
|
5731
|
+
version = "0.2.128"
|
|
5579
5732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5580
|
-
checksum = "
|
|
5733
|
+
checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
|
|
5581
5734
|
dependencies = [
|
|
5582
5735
|
"quote",
|
|
5583
5736
|
"wasm-bindgen-macro-support",
|
|
@@ -5585,31 +5738,31 @@ dependencies = [
|
|
|
5585
5738
|
|
|
5586
5739
|
[[package]]
|
|
5587
5740
|
name = "wasm-bindgen-macro-support"
|
|
5588
|
-
version = "0.2.
|
|
5741
|
+
version = "0.2.128"
|
|
5589
5742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5590
|
-
checksum = "
|
|
5743
|
+
checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
|
|
5591
5744
|
dependencies = [
|
|
5592
5745
|
"bumpalo",
|
|
5593
5746
|
"proc-macro2",
|
|
5594
5747
|
"quote",
|
|
5595
|
-
"syn",
|
|
5748
|
+
"syn 3.0.5",
|
|
5596
5749
|
"wasm-bindgen-shared",
|
|
5597
5750
|
]
|
|
5598
5751
|
|
|
5599
5752
|
[[package]]
|
|
5600
5753
|
name = "wasm-bindgen-shared"
|
|
5601
|
-
version = "0.2.
|
|
5754
|
+
version = "0.2.128"
|
|
5602
5755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5603
|
-
checksum = "
|
|
5756
|
+
checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
|
|
5604
5757
|
dependencies = [
|
|
5605
5758
|
"unicode-ident",
|
|
5606
5759
|
]
|
|
5607
5760
|
|
|
5608
5761
|
[[package]]
|
|
5609
5762
|
name = "wasm-bindgen-test"
|
|
5610
|
-
version = "0.3.
|
|
5763
|
+
version = "0.3.78"
|
|
5611
5764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5612
|
-
checksum = "
|
|
5765
|
+
checksum = "45863ef0bef521c12124eb39d9a38513c47db75f22e503c06beacd40afeb35db"
|
|
5613
5766
|
dependencies = [
|
|
5614
5767
|
"async-trait",
|
|
5615
5768
|
"cast",
|
|
@@ -5629,42 +5782,20 @@ dependencies = [
|
|
|
5629
5782
|
|
|
5630
5783
|
[[package]]
|
|
5631
5784
|
name = "wasm-bindgen-test-macro"
|
|
5632
|
-
version = "0.3.
|
|
5785
|
+
version = "0.3.78"
|
|
5633
5786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5634
|
-
checksum = "
|
|
5787
|
+
checksum = "8c89dcab8b516b6b603baca9d550b7282d68fcc7f367e3956cff7ebf406a3f12"
|
|
5635
5788
|
dependencies = [
|
|
5636
5789
|
"proc-macro2",
|
|
5637
5790
|
"quote",
|
|
5638
|
-
"syn",
|
|
5791
|
+
"syn 3.0.5",
|
|
5639
5792
|
]
|
|
5640
5793
|
|
|
5641
5794
|
[[package]]
|
|
5642
5795
|
name = "wasm-bindgen-test-shared"
|
|
5643
|
-
version = "0.2.
|
|
5644
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5645
|
-
checksum = "cfe29135b180b72b04c74aa97b2b4a2ef275161eff9a6c7955ea9eaedc7e1d4e"
|
|
5646
|
-
|
|
5647
|
-
[[package]]
|
|
5648
|
-
name = "wasm-encoder"
|
|
5649
|
-
version = "0.244.0"
|
|
5650
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5651
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
5652
|
-
dependencies = [
|
|
5653
|
-
"leb128fmt",
|
|
5654
|
-
"wasmparser",
|
|
5655
|
-
]
|
|
5656
|
-
|
|
5657
|
-
[[package]]
|
|
5658
|
-
name = "wasm-metadata"
|
|
5659
|
-
version = "0.244.0"
|
|
5796
|
+
version = "0.2.128"
|
|
5660
5797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5661
|
-
checksum = "
|
|
5662
|
-
dependencies = [
|
|
5663
|
-
"anyhow",
|
|
5664
|
-
"indexmap 2.13.0",
|
|
5665
|
-
"wasm-encoder",
|
|
5666
|
-
"wasmparser",
|
|
5667
|
-
]
|
|
5798
|
+
checksum = "f37b4f992cebe528ef34964ae69681ac0fe7080071e7298e46008f9d380302af"
|
|
5668
5799
|
|
|
5669
5800
|
[[package]]
|
|
5670
5801
|
name = "wasm-streams"
|
|
@@ -5679,23 +5810,11 @@ dependencies = [
|
|
|
5679
5810
|
"web-sys",
|
|
5680
5811
|
]
|
|
5681
5812
|
|
|
5682
|
-
[[package]]
|
|
5683
|
-
name = "wasmparser"
|
|
5684
|
-
version = "0.244.0"
|
|
5685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5686
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
5687
|
-
dependencies = [
|
|
5688
|
-
"bitflags",
|
|
5689
|
-
"hashbrown 0.15.5",
|
|
5690
|
-
"indexmap 2.13.0",
|
|
5691
|
-
"semver",
|
|
5692
|
-
]
|
|
5693
|
-
|
|
5694
5813
|
[[package]]
|
|
5695
5814
|
name = "web-sys"
|
|
5696
|
-
version = "0.3.
|
|
5815
|
+
version = "0.3.105"
|
|
5697
5816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5698
|
-
checksum = "
|
|
5817
|
+
checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
|
|
5699
5818
|
dependencies = [
|
|
5700
5819
|
"js-sys",
|
|
5701
5820
|
"wasm-bindgen",
|
|
@@ -5711,20 +5830,29 @@ dependencies = [
|
|
|
5711
5830
|
"wasm-bindgen",
|
|
5712
5831
|
]
|
|
5713
5832
|
|
|
5833
|
+
[[package]]
|
|
5834
|
+
name = "webpki-root-certs"
|
|
5835
|
+
version = "1.0.9"
|
|
5836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5837
|
+
checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
|
|
5838
|
+
dependencies = [
|
|
5839
|
+
"rustls-pki-types",
|
|
5840
|
+
]
|
|
5841
|
+
|
|
5714
5842
|
[[package]]
|
|
5715
5843
|
name = "webpki-roots"
|
|
5716
5844
|
version = "0.26.11"
|
|
5717
5845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5718
5846
|
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
5719
5847
|
dependencies = [
|
|
5720
|
-
"webpki-roots 1.0.
|
|
5848
|
+
"webpki-roots 1.0.9",
|
|
5721
5849
|
]
|
|
5722
5850
|
|
|
5723
5851
|
[[package]]
|
|
5724
5852
|
name = "webpki-roots"
|
|
5725
|
-
version = "1.0.
|
|
5853
|
+
version = "1.0.9"
|
|
5726
5854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5727
|
-
checksum = "
|
|
5855
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
5728
5856
|
dependencies = [
|
|
5729
5857
|
"rustls-pki-types",
|
|
5730
5858
|
]
|
|
@@ -5791,7 +5919,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
5791
5919
|
dependencies = [
|
|
5792
5920
|
"proc-macro2",
|
|
5793
5921
|
"quote",
|
|
5794
|
-
"syn",
|
|
5922
|
+
"syn 2.0.119",
|
|
5795
5923
|
]
|
|
5796
5924
|
|
|
5797
5925
|
[[package]]
|
|
@@ -5802,7 +5930,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
5802
5930
|
dependencies = [
|
|
5803
5931
|
"proc-macro2",
|
|
5804
5932
|
"quote",
|
|
5805
|
-
"syn",
|
|
5933
|
+
"syn 2.0.119",
|
|
5806
5934
|
]
|
|
5807
5935
|
|
|
5808
5936
|
[[package]]
|
|
@@ -5847,15 +5975,6 @@ dependencies = [
|
|
|
5847
5975
|
"windows-targets 0.52.6",
|
|
5848
5976
|
]
|
|
5849
5977
|
|
|
5850
|
-
[[package]]
|
|
5851
|
-
name = "windows-sys"
|
|
5852
|
-
version = "0.60.2"
|
|
5853
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5854
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
5855
|
-
dependencies = [
|
|
5856
|
-
"windows-targets 0.53.5",
|
|
5857
|
-
]
|
|
5858
|
-
|
|
5859
5978
|
[[package]]
|
|
5860
5979
|
name = "windows-sys"
|
|
5861
5980
|
version = "0.61.2"
|
|
@@ -5889,30 +6008,13 @@ dependencies = [
|
|
|
5889
6008
|
"windows_aarch64_gnullvm 0.52.6",
|
|
5890
6009
|
"windows_aarch64_msvc 0.52.6",
|
|
5891
6010
|
"windows_i686_gnu 0.52.6",
|
|
5892
|
-
"windows_i686_gnullvm
|
|
6011
|
+
"windows_i686_gnullvm",
|
|
5893
6012
|
"windows_i686_msvc 0.52.6",
|
|
5894
6013
|
"windows_x86_64_gnu 0.52.6",
|
|
5895
6014
|
"windows_x86_64_gnullvm 0.52.6",
|
|
5896
6015
|
"windows_x86_64_msvc 0.52.6",
|
|
5897
6016
|
]
|
|
5898
6017
|
|
|
5899
|
-
[[package]]
|
|
5900
|
-
name = "windows-targets"
|
|
5901
|
-
version = "0.53.5"
|
|
5902
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5903
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
5904
|
-
dependencies = [
|
|
5905
|
-
"windows-link",
|
|
5906
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
5907
|
-
"windows_aarch64_msvc 0.53.1",
|
|
5908
|
-
"windows_i686_gnu 0.53.1",
|
|
5909
|
-
"windows_i686_gnullvm 0.53.1",
|
|
5910
|
-
"windows_i686_msvc 0.53.1",
|
|
5911
|
-
"windows_x86_64_gnu 0.53.1",
|
|
5912
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
5913
|
-
"windows_x86_64_msvc 0.53.1",
|
|
5914
|
-
]
|
|
5915
|
-
|
|
5916
6018
|
[[package]]
|
|
5917
6019
|
name = "windows_aarch64_gnullvm"
|
|
5918
6020
|
version = "0.48.5"
|
|
@@ -5925,12 +6027,6 @@ version = "0.52.6"
|
|
|
5925
6027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5926
6028
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
5927
6029
|
|
|
5928
|
-
[[package]]
|
|
5929
|
-
name = "windows_aarch64_gnullvm"
|
|
5930
|
-
version = "0.53.1"
|
|
5931
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5932
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
5933
|
-
|
|
5934
6030
|
[[package]]
|
|
5935
6031
|
name = "windows_aarch64_msvc"
|
|
5936
6032
|
version = "0.48.5"
|
|
@@ -5943,12 +6039,6 @@ version = "0.52.6"
|
|
|
5943
6039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5944
6040
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
5945
6041
|
|
|
5946
|
-
[[package]]
|
|
5947
|
-
name = "windows_aarch64_msvc"
|
|
5948
|
-
version = "0.53.1"
|
|
5949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5950
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
5951
|
-
|
|
5952
6042
|
[[package]]
|
|
5953
6043
|
name = "windows_i686_gnu"
|
|
5954
6044
|
version = "0.48.5"
|
|
@@ -5961,24 +6051,12 @@ version = "0.52.6"
|
|
|
5961
6051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5962
6052
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
5963
6053
|
|
|
5964
|
-
[[package]]
|
|
5965
|
-
name = "windows_i686_gnu"
|
|
5966
|
-
version = "0.53.1"
|
|
5967
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5968
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
5969
|
-
|
|
5970
6054
|
[[package]]
|
|
5971
6055
|
name = "windows_i686_gnullvm"
|
|
5972
6056
|
version = "0.52.6"
|
|
5973
6057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5974
6058
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
5975
6059
|
|
|
5976
|
-
[[package]]
|
|
5977
|
-
name = "windows_i686_gnullvm"
|
|
5978
|
-
version = "0.53.1"
|
|
5979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5980
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
5981
|
-
|
|
5982
6060
|
[[package]]
|
|
5983
6061
|
name = "windows_i686_msvc"
|
|
5984
6062
|
version = "0.48.5"
|
|
@@ -5991,12 +6069,6 @@ version = "0.52.6"
|
|
|
5991
6069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5992
6070
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
5993
6071
|
|
|
5994
|
-
[[package]]
|
|
5995
|
-
name = "windows_i686_msvc"
|
|
5996
|
-
version = "0.53.1"
|
|
5997
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5998
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
5999
|
-
|
|
6000
6072
|
[[package]]
|
|
6001
6073
|
name = "windows_x86_64_gnu"
|
|
6002
6074
|
version = "0.48.5"
|
|
@@ -6009,12 +6081,6 @@ version = "0.52.6"
|
|
|
6009
6081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6010
6082
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
6011
6083
|
|
|
6012
|
-
[[package]]
|
|
6013
|
-
name = "windows_x86_64_gnu"
|
|
6014
|
-
version = "0.53.1"
|
|
6015
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6016
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
6017
|
-
|
|
6018
6084
|
[[package]]
|
|
6019
6085
|
name = "windows_x86_64_gnullvm"
|
|
6020
6086
|
version = "0.48.5"
|
|
@@ -6027,12 +6093,6 @@ version = "0.52.6"
|
|
|
6027
6093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6028
6094
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
6029
6095
|
|
|
6030
|
-
[[package]]
|
|
6031
|
-
name = "windows_x86_64_gnullvm"
|
|
6032
|
-
version = "0.53.1"
|
|
6033
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6034
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
6035
|
-
|
|
6036
6096
|
[[package]]
|
|
6037
6097
|
name = "windows_x86_64_msvc"
|
|
6038
6098
|
version = "0.48.5"
|
|
@@ -6045,17 +6105,11 @@ version = "0.52.6"
|
|
|
6045
6105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6046
6106
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
6047
6107
|
|
|
6048
|
-
[[package]]
|
|
6049
|
-
name = "windows_x86_64_msvc"
|
|
6050
|
-
version = "0.53.1"
|
|
6051
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6052
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
6053
|
-
|
|
6054
6108
|
[[package]]
|
|
6055
6109
|
name = "winnow"
|
|
6056
|
-
version = "1.0.
|
|
6110
|
+
version = "1.0.4"
|
|
6057
6111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6058
|
-
checksum = "
|
|
6112
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
6059
6113
|
dependencies = [
|
|
6060
6114
|
"memchr",
|
|
6061
6115
|
]
|
|
@@ -6067,10 +6121,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
6067
6121
|
checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
|
|
6068
6122
|
dependencies = [
|
|
6069
6123
|
"assert-json-diff",
|
|
6070
|
-
"base64",
|
|
6124
|
+
"base64 0.22.1",
|
|
6071
6125
|
"deadpool",
|
|
6072
6126
|
"futures",
|
|
6073
|
-
"http 1.
|
|
6127
|
+
"http 1.5.0",
|
|
6074
6128
|
"http-body-util",
|
|
6075
6129
|
"hyper",
|
|
6076
6130
|
"hyper-util",
|
|
@@ -6085,97 +6139,15 @@ dependencies = [
|
|
|
6085
6139
|
|
|
6086
6140
|
[[package]]
|
|
6087
6141
|
name = "wit-bindgen"
|
|
6088
|
-
version = "0.
|
|
6089
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6090
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
6091
|
-
dependencies = [
|
|
6092
|
-
"wit-bindgen-rust-macro",
|
|
6093
|
-
]
|
|
6094
|
-
|
|
6095
|
-
[[package]]
|
|
6096
|
-
name = "wit-bindgen-core"
|
|
6097
|
-
version = "0.51.0"
|
|
6098
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6099
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
6100
|
-
dependencies = [
|
|
6101
|
-
"anyhow",
|
|
6102
|
-
"heck",
|
|
6103
|
-
"wit-parser",
|
|
6104
|
-
]
|
|
6105
|
-
|
|
6106
|
-
[[package]]
|
|
6107
|
-
name = "wit-bindgen-rust"
|
|
6108
|
-
version = "0.51.0"
|
|
6109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6110
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
6111
|
-
dependencies = [
|
|
6112
|
-
"anyhow",
|
|
6113
|
-
"heck",
|
|
6114
|
-
"indexmap 2.13.0",
|
|
6115
|
-
"prettyplease",
|
|
6116
|
-
"syn",
|
|
6117
|
-
"wasm-metadata",
|
|
6118
|
-
"wit-bindgen-core",
|
|
6119
|
-
"wit-component",
|
|
6120
|
-
]
|
|
6121
|
-
|
|
6122
|
-
[[package]]
|
|
6123
|
-
name = "wit-bindgen-rust-macro"
|
|
6124
|
-
version = "0.51.0"
|
|
6125
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6126
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
6127
|
-
dependencies = [
|
|
6128
|
-
"anyhow",
|
|
6129
|
-
"prettyplease",
|
|
6130
|
-
"proc-macro2",
|
|
6131
|
-
"quote",
|
|
6132
|
-
"syn",
|
|
6133
|
-
"wit-bindgen-core",
|
|
6134
|
-
"wit-bindgen-rust",
|
|
6135
|
-
]
|
|
6136
|
-
|
|
6137
|
-
[[package]]
|
|
6138
|
-
name = "wit-component"
|
|
6139
|
-
version = "0.244.0"
|
|
6140
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6141
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
6142
|
-
dependencies = [
|
|
6143
|
-
"anyhow",
|
|
6144
|
-
"bitflags",
|
|
6145
|
-
"indexmap 2.13.0",
|
|
6146
|
-
"log",
|
|
6147
|
-
"serde",
|
|
6148
|
-
"serde_derive",
|
|
6149
|
-
"serde_json",
|
|
6150
|
-
"wasm-encoder",
|
|
6151
|
-
"wasm-metadata",
|
|
6152
|
-
"wasmparser",
|
|
6153
|
-
"wit-parser",
|
|
6154
|
-
]
|
|
6155
|
-
|
|
6156
|
-
[[package]]
|
|
6157
|
-
name = "wit-parser"
|
|
6158
|
-
version = "0.244.0"
|
|
6142
|
+
version = "0.57.1"
|
|
6159
6143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6160
|
-
checksum = "
|
|
6161
|
-
dependencies = [
|
|
6162
|
-
"anyhow",
|
|
6163
|
-
"id-arena",
|
|
6164
|
-
"indexmap 2.13.0",
|
|
6165
|
-
"log",
|
|
6166
|
-
"semver",
|
|
6167
|
-
"serde",
|
|
6168
|
-
"serde_derive",
|
|
6169
|
-
"serde_json",
|
|
6170
|
-
"unicode-xid",
|
|
6171
|
-
"wasmparser",
|
|
6172
|
-
]
|
|
6144
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
6173
6145
|
|
|
6174
6146
|
[[package]]
|
|
6175
6147
|
name = "writeable"
|
|
6176
|
-
version = "0.6.
|
|
6148
|
+
version = "0.6.4"
|
|
6177
6149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6178
|
-
checksum = "
|
|
6150
|
+
checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
|
|
6179
6151
|
|
|
6180
6152
|
[[package]]
|
|
6181
6153
|
name = "x509-parser"
|
|
@@ -6190,26 +6162,26 @@ dependencies = [
|
|
|
6190
6162
|
"nom",
|
|
6191
6163
|
"oid-registry",
|
|
6192
6164
|
"rusticata-macros",
|
|
6193
|
-
"thiserror 2.0.
|
|
6165
|
+
"thiserror 2.0.20",
|
|
6194
6166
|
"time",
|
|
6195
6167
|
]
|
|
6196
6168
|
|
|
6197
6169
|
[[package]]
|
|
6198
6170
|
name = "yaml-rust2"
|
|
6199
|
-
version = "0.
|
|
6171
|
+
version = "0.11.1"
|
|
6200
6172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6201
|
-
checksum = "
|
|
6173
|
+
checksum = "b36710ce3a279cfce8465dbab826f161675a262950b922cb2c3663852dfe9eb0"
|
|
6202
6174
|
dependencies = [
|
|
6203
6175
|
"arraydeque",
|
|
6204
6176
|
"encoding_rs",
|
|
6205
|
-
"hashlink 0.
|
|
6177
|
+
"hashlink 0.11.1",
|
|
6206
6178
|
]
|
|
6207
6179
|
|
|
6208
6180
|
[[package]]
|
|
6209
6181
|
name = "yoke"
|
|
6210
|
-
version = "0.8.
|
|
6182
|
+
version = "0.8.3"
|
|
6211
6183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6212
|
-
checksum = "
|
|
6184
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
6213
6185
|
dependencies = [
|
|
6214
6186
|
"stable_deref_trait",
|
|
6215
6187
|
"yoke-derive",
|
|
@@ -6218,68 +6190,68 @@ dependencies = [
|
|
|
6218
6190
|
|
|
6219
6191
|
[[package]]
|
|
6220
6192
|
name = "yoke-derive"
|
|
6221
|
-
version = "0.8.
|
|
6193
|
+
version = "0.8.2"
|
|
6222
6194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6223
|
-
checksum = "
|
|
6195
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
6224
6196
|
dependencies = [
|
|
6225
6197
|
"proc-macro2",
|
|
6226
6198
|
"quote",
|
|
6227
|
-
"syn",
|
|
6199
|
+
"syn 2.0.119",
|
|
6228
6200
|
"synstructure",
|
|
6229
6201
|
]
|
|
6230
6202
|
|
|
6231
6203
|
[[package]]
|
|
6232
6204
|
name = "zerocopy"
|
|
6233
|
-
version = "0.8.
|
|
6205
|
+
version = "0.8.57"
|
|
6234
6206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6235
|
-
checksum = "
|
|
6207
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
6236
6208
|
dependencies = [
|
|
6237
6209
|
"zerocopy-derive",
|
|
6238
6210
|
]
|
|
6239
6211
|
|
|
6240
6212
|
[[package]]
|
|
6241
6213
|
name = "zerocopy-derive"
|
|
6242
|
-
version = "0.8.
|
|
6214
|
+
version = "0.8.57"
|
|
6243
6215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6244
|
-
checksum = "
|
|
6216
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
6245
6217
|
dependencies = [
|
|
6246
6218
|
"proc-macro2",
|
|
6247
6219
|
"quote",
|
|
6248
|
-
"syn",
|
|
6220
|
+
"syn 2.0.119",
|
|
6249
6221
|
]
|
|
6250
6222
|
|
|
6251
6223
|
[[package]]
|
|
6252
6224
|
name = "zerofrom"
|
|
6253
|
-
version = "0.1.
|
|
6225
|
+
version = "0.1.8"
|
|
6254
6226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6255
|
-
checksum = "
|
|
6227
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
6256
6228
|
dependencies = [
|
|
6257
6229
|
"zerofrom-derive",
|
|
6258
6230
|
]
|
|
6259
6231
|
|
|
6260
6232
|
[[package]]
|
|
6261
6233
|
name = "zerofrom-derive"
|
|
6262
|
-
version = "0.1.
|
|
6234
|
+
version = "0.1.7"
|
|
6263
6235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6264
|
-
checksum = "
|
|
6236
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
6265
6237
|
dependencies = [
|
|
6266
6238
|
"proc-macro2",
|
|
6267
6239
|
"quote",
|
|
6268
|
-
"syn",
|
|
6240
|
+
"syn 2.0.119",
|
|
6269
6241
|
"synstructure",
|
|
6270
6242
|
]
|
|
6271
6243
|
|
|
6272
6244
|
[[package]]
|
|
6273
6245
|
name = "zeroize"
|
|
6274
|
-
version = "1.
|
|
6246
|
+
version = "1.9.0"
|
|
6275
6247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6276
|
-
checksum = "
|
|
6248
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
6277
6249
|
|
|
6278
6250
|
[[package]]
|
|
6279
6251
|
name = "zerotrie"
|
|
6280
|
-
version = "0.2.
|
|
6252
|
+
version = "0.2.5"
|
|
6281
6253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6282
|
-
checksum = "
|
|
6254
|
+
checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
|
|
6283
6255
|
dependencies = [
|
|
6284
6256
|
"displaydoc",
|
|
6285
6257
|
"yoke",
|
|
@@ -6288,9 +6260,9 @@ dependencies = [
|
|
|
6288
6260
|
|
|
6289
6261
|
[[package]]
|
|
6290
6262
|
name = "zerovec"
|
|
6291
|
-
version = "0.11.
|
|
6263
|
+
version = "0.11.8"
|
|
6292
6264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6293
|
-
checksum = "
|
|
6265
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
6294
6266
|
dependencies = [
|
|
6295
6267
|
"yoke",
|
|
6296
6268
|
"zerofrom",
|
|
@@ -6299,26 +6271,26 @@ dependencies = [
|
|
|
6299
6271
|
|
|
6300
6272
|
[[package]]
|
|
6301
6273
|
name = "zerovec-derive"
|
|
6302
|
-
version = "0.11.
|
|
6274
|
+
version = "0.11.6"
|
|
6303
6275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6304
|
-
checksum = "
|
|
6276
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
6305
6277
|
dependencies = [
|
|
6306
6278
|
"proc-macro2",
|
|
6307
6279
|
"quote",
|
|
6308
|
-
"syn",
|
|
6280
|
+
"syn 3.0.5",
|
|
6309
6281
|
]
|
|
6310
6282
|
|
|
6311
6283
|
[[package]]
|
|
6312
6284
|
name = "zlib-rs"
|
|
6313
|
-
version = "0.6.
|
|
6285
|
+
version = "0.6.7"
|
|
6314
6286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6315
|
-
checksum = "
|
|
6287
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
6316
6288
|
|
|
6317
6289
|
[[package]]
|
|
6318
6290
|
name = "zmij"
|
|
6319
|
-
version = "1.0.
|
|
6291
|
+
version = "1.0.23"
|
|
6320
6292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6321
|
-
checksum = "
|
|
6293
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
6322
6294
|
|
|
6323
6295
|
[[package]]
|
|
6324
6296
|
name = "zstd"
|
|
@@ -6331,18 +6303,18 @@ dependencies = [
|
|
|
6331
6303
|
|
|
6332
6304
|
[[package]]
|
|
6333
6305
|
name = "zstd-safe"
|
|
6334
|
-
version = "7.
|
|
6306
|
+
version = "7.3.0"
|
|
6335
6307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6336
|
-
checksum = "
|
|
6308
|
+
checksum = "64d80649ab6db9d9f6f9c80a40becd948eda4714a0a5ac8c4d157a32231c7882"
|
|
6337
6309
|
dependencies = [
|
|
6338
6310
|
"zstd-sys",
|
|
6339
6311
|
]
|
|
6340
6312
|
|
|
6341
6313
|
[[package]]
|
|
6342
6314
|
name = "zstd-sys"
|
|
6343
|
-
version = "2.0
|
|
6315
|
+
version = "2.1.0+zstd.1.5.7"
|
|
6344
6316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6345
|
-
checksum = "
|
|
6317
|
+
checksum = "0ef0a8027ec3ee71300ab3bcbcd0393f434aa72b91ca6d635a39941deae8eea0"
|
|
6346
6318
|
dependencies = [
|
|
6347
6319
|
"cc",
|
|
6348
6320
|
"pkg-config",
|