python-auditor 0.6.2__tar.gz → 0.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_auditor-0.6.2 → python_auditor-0.7.0}/Cargo.lock +1444 -532
- {python_auditor-0.6.2 → python_auditor-0.7.0}/Cargo.toml +6 -6
- {python_auditor-0.6.2 → python_auditor-0.7.0}/PKG-INFO +2 -2
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/examples.rst +4 -4
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/index.rst +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/Cargo.toml +12 -10
- python_auditor-0.7.0/local_dependencies/auditor/certs/rootCA-key.pem +40 -0
- python_auditor-0.7.0/local_dependencies/auditor/certs/rootCA.pem +27 -0
- python_auditor-0.7.0/local_dependencies/auditor/certs/server-cert.pem +25 -0
- python_auditor-0.7.0/local_dependencies/auditor/certs/server-key.pem +28 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/base.yaml +5 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +3 -0
- python_auditor-0.7.0/local_dependencies/auditor/configuration/tls_config.yaml +21 -0
- python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/.env +6 -0
- python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +2 -0
- python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +83 -0
- python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/test_script.py +102 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +2 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +2 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +2 -1
- python_auditor-0.7.0/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +69 -0
- python_auditor-0.7.0/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +69 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/configuration.rs +49 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/constants.rs +0 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/record.rs +0 -37
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/score.rs +1 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/validname.rs +2 -13
- python_auditor-0.7.0/local_dependencies/auditor/src/main.rs +126 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/startup.rs +20 -5
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/add.rs +0 -67
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/get_since.rs +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/helpers.rs +8 -8
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/update.rs +3 -3
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/Cargo.toml +6 -5
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/lib.rs +125 -22
- {python_auditor-0.6.2 → python_auditor-0.7.0}/pyproject.toml +1 -2
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_add_update.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_add_update_blocking.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_add_update_queued.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_advanced_query.py +12 -5
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_advanced_query_blocking.py +12 -5
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_advanced_query_queued.py +12 -5
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_bulk_insert.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_bulk_insert_blocking.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_bulk_insert_queued.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_components.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_components_blocking.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_components_queued.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_eq.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_get_since.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_get_since_blocking.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_get_since_queued.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_get_single_record.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_get_single_record_blocking.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_get_single_record_queued.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_meta.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_meta_blocking.py +3 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/scripts/test_meta_queued.py +3 -1
- python_auditor-0.7.0/scripts/test_tls.py +117 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/blocking_client.rs +8 -2
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/builder.rs +24 -2
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/client.rs +29 -29
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/domain/record.rs +2 -2
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/lib.rs +1 -1
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/queued_client.rs +26 -26
- python_auditor-0.6.2/local_dependencies/auditor/src/main.rs +0 -48
- {python_auditor-0.6.2 → python_auditor-0.7.0}/.cargo/config.toml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/.readthedocs.yaml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/README.md +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/Makefile +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/api.rst +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/changelog.rst +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/conf.py +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/docs/make.bat +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.env +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/build.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/meta.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/error.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/lib.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/macros.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/metrics/database.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/add.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/get.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/update.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/src/telemetry.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/get.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.env +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/README.md +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/configuration.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/constants.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/database.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/domain/component.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/domain/meta.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/domain/mod.rs +0 -0
- {python_auditor-0.6.2 → python_auditor-0.7.0}/src/domain/score.rs +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "actix-codec"
|
|
@@ -8,7 +8,7 @@ version = "0.5.2"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"bitflags 2.
|
|
11
|
+
"bitflags 2.8.0",
|
|
12
12
|
"bytes",
|
|
13
13
|
"futures-core",
|
|
14
14
|
"futures-sink",
|
|
@@ -21,17 +21,18 @@ dependencies = [
|
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
23
23
|
name = "actix-http"
|
|
24
|
-
version = "3.
|
|
24
|
+
version = "3.9.0"
|
|
25
25
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
26
|
+
checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
|
|
27
27
|
dependencies = [
|
|
28
28
|
"actix-codec",
|
|
29
29
|
"actix-rt",
|
|
30
30
|
"actix-service",
|
|
31
|
+
"actix-tls",
|
|
31
32
|
"actix-utils",
|
|
32
33
|
"ahash 0.8.11",
|
|
33
34
|
"base64 0.22.1",
|
|
34
|
-
"bitflags 2.
|
|
35
|
+
"bitflags 2.8.0",
|
|
35
36
|
"brotli",
|
|
36
37
|
"bytes",
|
|
37
38
|
"bytestring",
|
|
@@ -65,7 +66,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
65
66
|
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
66
67
|
dependencies = [
|
|
67
68
|
"quote",
|
|
68
|
-
"syn 2.0.
|
|
69
|
+
"syn 2.0.96",
|
|
69
70
|
]
|
|
70
71
|
|
|
71
72
|
[[package]]
|
|
@@ -95,16 +96,16 @@ dependencies = [
|
|
|
95
96
|
|
|
96
97
|
[[package]]
|
|
97
98
|
name = "actix-server"
|
|
98
|
-
version = "2.
|
|
99
|
+
version = "2.5.0"
|
|
99
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
101
|
+
checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
|
|
101
102
|
dependencies = [
|
|
102
103
|
"actix-rt",
|
|
103
104
|
"actix-service",
|
|
104
105
|
"actix-utils",
|
|
105
106
|
"futures-core",
|
|
106
107
|
"futures-util",
|
|
107
|
-
"mio
|
|
108
|
+
"mio",
|
|
108
109
|
"socket2",
|
|
109
110
|
"tokio",
|
|
110
111
|
"tracing",
|
|
@@ -121,6 +122,25 @@ dependencies = [
|
|
|
121
122
|
"pin-project-lite",
|
|
122
123
|
]
|
|
123
124
|
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "actix-tls"
|
|
127
|
+
version = "3.4.0"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"actix-rt",
|
|
132
|
+
"actix-service",
|
|
133
|
+
"actix-utils",
|
|
134
|
+
"futures-core",
|
|
135
|
+
"impl-more",
|
|
136
|
+
"pin-project-lite",
|
|
137
|
+
"rustls-pki-types",
|
|
138
|
+
"tokio",
|
|
139
|
+
"tokio-rustls 0.26.1",
|
|
140
|
+
"tokio-util",
|
|
141
|
+
"tracing",
|
|
142
|
+
]
|
|
143
|
+
|
|
124
144
|
[[package]]
|
|
125
145
|
name = "actix-utils"
|
|
126
146
|
version = "3.0.1"
|
|
@@ -133,9 +153,9 @@ dependencies = [
|
|
|
133
153
|
|
|
134
154
|
[[package]]
|
|
135
155
|
name = "actix-web"
|
|
136
|
-
version = "4.
|
|
156
|
+
version = "4.9.0"
|
|
137
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
-
checksum = "
|
|
158
|
+
checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
|
|
139
159
|
dependencies = [
|
|
140
160
|
"actix-codec",
|
|
141
161
|
"actix-http",
|
|
@@ -144,6 +164,7 @@ dependencies = [
|
|
|
144
164
|
"actix-rt",
|
|
145
165
|
"actix-server",
|
|
146
166
|
"actix-service",
|
|
167
|
+
"actix-tls",
|
|
147
168
|
"actix-utils",
|
|
148
169
|
"actix-web-codegen",
|
|
149
170
|
"ahash 0.8.11",
|
|
@@ -155,6 +176,7 @@ dependencies = [
|
|
|
155
176
|
"encoding_rs",
|
|
156
177
|
"futures-core",
|
|
157
178
|
"futures-util",
|
|
179
|
+
"impl-more",
|
|
158
180
|
"itoa",
|
|
159
181
|
"language-tags",
|
|
160
182
|
"log",
|
|
@@ -181,7 +203,7 @@ dependencies = [
|
|
|
181
203
|
"actix-router",
|
|
182
204
|
"proc-macro2",
|
|
183
205
|
"quote",
|
|
184
|
-
"syn 2.0.
|
|
206
|
+
"syn 2.0.96",
|
|
185
207
|
]
|
|
186
208
|
|
|
187
209
|
[[package]]
|
|
@@ -215,6 +237,12 @@ version = "1.0.2"
|
|
|
215
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
238
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
217
239
|
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "adler2"
|
|
242
|
+
version = "2.0.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
245
|
+
|
|
218
246
|
[[package]]
|
|
219
247
|
name = "ahash"
|
|
220
248
|
version = "0.7.8"
|
|
@@ -265,9 +293,9 @@ dependencies = [
|
|
|
265
293
|
|
|
266
294
|
[[package]]
|
|
267
295
|
name = "allocator-api2"
|
|
268
|
-
version = "0.2.
|
|
296
|
+
version = "0.2.21"
|
|
269
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
-
checksum = "
|
|
298
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
271
299
|
|
|
272
300
|
[[package]]
|
|
273
301
|
name = "android-tzdata"
|
|
@@ -292,15 +320,15 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
|
292
320
|
|
|
293
321
|
[[package]]
|
|
294
322
|
name = "anstyle"
|
|
295
|
-
version = "1.0.
|
|
323
|
+
version = "1.0.10"
|
|
296
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
325
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
298
326
|
|
|
299
327
|
[[package]]
|
|
300
328
|
name = "anyhow"
|
|
301
|
-
version = "1.0.
|
|
329
|
+
version = "1.0.95"
|
|
302
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "
|
|
331
|
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
|
304
332
|
|
|
305
333
|
[[package]]
|
|
306
334
|
name = "assert-json-diff"
|
|
@@ -314,13 +342,13 @@ dependencies = [
|
|
|
314
342
|
|
|
315
343
|
[[package]]
|
|
316
344
|
name = "async-trait"
|
|
317
|
-
version = "0.1.
|
|
345
|
+
version = "0.1.85"
|
|
318
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
347
|
+
checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
|
|
320
348
|
dependencies = [
|
|
321
349
|
"proc-macro2",
|
|
322
350
|
"quote",
|
|
323
|
-
"syn 2.0.
|
|
351
|
+
"syn 2.0.96",
|
|
324
352
|
]
|
|
325
353
|
|
|
326
354
|
[[package]]
|
|
@@ -340,8 +368,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
340
368
|
|
|
341
369
|
[[package]]
|
|
342
370
|
name = "auditor"
|
|
343
|
-
version = "0.
|
|
371
|
+
version = "0.7.0"
|
|
344
372
|
dependencies = [
|
|
373
|
+
"actix-tls",
|
|
345
374
|
"actix-web",
|
|
346
375
|
"actix-web-opentelemetry",
|
|
347
376
|
"anyhow",
|
|
@@ -354,7 +383,6 @@ dependencies = [
|
|
|
354
383
|
"once_cell",
|
|
355
384
|
"opentelemetry 0.23.0",
|
|
356
385
|
"opentelemetry-prometheus 0.16.0",
|
|
357
|
-
"opentelemetry_api",
|
|
358
386
|
"opentelemetry_sdk 0.23.0",
|
|
359
387
|
"prometheus",
|
|
360
388
|
"quickcheck",
|
|
@@ -362,6 +390,8 @@ dependencies = [
|
|
|
362
390
|
"rand",
|
|
363
391
|
"regex",
|
|
364
392
|
"reqwest",
|
|
393
|
+
"rustls 0.23.21",
|
|
394
|
+
"rustls-pemfile 2.2.0",
|
|
365
395
|
"secrecy",
|
|
366
396
|
"serde",
|
|
367
397
|
"serde-aux",
|
|
@@ -369,7 +399,7 @@ dependencies = [
|
|
|
369
399
|
"serde_qs",
|
|
370
400
|
"serde_with",
|
|
371
401
|
"sqlx",
|
|
372
|
-
"thiserror",
|
|
402
|
+
"thiserror 2.0.11",
|
|
373
403
|
"tokio",
|
|
374
404
|
"tracing",
|
|
375
405
|
"tracing-actix-web",
|
|
@@ -384,7 +414,7 @@ dependencies = [
|
|
|
384
414
|
|
|
385
415
|
[[package]]
|
|
386
416
|
name = "auditor-client"
|
|
387
|
-
version = "0.
|
|
417
|
+
version = "0.7.0"
|
|
388
418
|
dependencies = [
|
|
389
419
|
"anyhow",
|
|
390
420
|
"auditor",
|
|
@@ -400,11 +430,12 @@ dependencies = [
|
|
|
400
430
|
"rand",
|
|
401
431
|
"rand_distr",
|
|
402
432
|
"reqwest",
|
|
433
|
+
"rustls 0.23.21",
|
|
403
434
|
"serde",
|
|
404
435
|
"serde-aux",
|
|
405
436
|
"serde_qs",
|
|
406
437
|
"sqlx",
|
|
407
|
-
"thiserror",
|
|
438
|
+
"thiserror 2.0.11",
|
|
408
439
|
"tokio",
|
|
409
440
|
"tracing",
|
|
410
441
|
"tracing-subscriber",
|
|
@@ -413,9 +444,33 @@ dependencies = [
|
|
|
413
444
|
"wiremock",
|
|
414
445
|
]
|
|
415
446
|
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "auditor-kubernetes-collector"
|
|
449
|
+
version = "0.7.0"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"anyhow",
|
|
452
|
+
"auditor",
|
|
453
|
+
"auditor-client",
|
|
454
|
+
"bincode",
|
|
455
|
+
"chrono",
|
|
456
|
+
"fake",
|
|
457
|
+
"k8s-openapi",
|
|
458
|
+
"kube",
|
|
459
|
+
"prometheus-http-query",
|
|
460
|
+
"reqwest",
|
|
461
|
+
"serde",
|
|
462
|
+
"serde_yaml",
|
|
463
|
+
"sqlx",
|
|
464
|
+
"tokio",
|
|
465
|
+
"tracing",
|
|
466
|
+
"tracing-subscriber",
|
|
467
|
+
"uuid",
|
|
468
|
+
"wiremock",
|
|
469
|
+
]
|
|
470
|
+
|
|
416
471
|
[[package]]
|
|
417
472
|
name = "auditor-priority-plugin"
|
|
418
|
-
version = "0.
|
|
473
|
+
version = "0.7.0"
|
|
419
474
|
dependencies = [
|
|
420
475
|
"actix-web",
|
|
421
476
|
"actix-web-opentelemetry",
|
|
@@ -427,7 +482,6 @@ dependencies = [
|
|
|
427
482
|
"num-traits",
|
|
428
483
|
"opentelemetry 0.23.0",
|
|
429
484
|
"opentelemetry-prometheus 0.16.0",
|
|
430
|
-
"opentelemetry_api",
|
|
431
485
|
"opentelemetry_sdk 0.23.0",
|
|
432
486
|
"prometheus",
|
|
433
487
|
"serde",
|
|
@@ -443,7 +497,7 @@ dependencies = [
|
|
|
443
497
|
|
|
444
498
|
[[package]]
|
|
445
499
|
name = "auditor-slurm-collector"
|
|
446
|
-
version = "0.
|
|
500
|
+
version = "0.7.0"
|
|
447
501
|
dependencies = [
|
|
448
502
|
"anyhow",
|
|
449
503
|
"auditor",
|
|
@@ -469,12 +523,13 @@ dependencies = [
|
|
|
469
523
|
|
|
470
524
|
[[package]]
|
|
471
525
|
name = "auditor-slurm-epilog-collector"
|
|
472
|
-
version = "0.
|
|
526
|
+
version = "0.7.0"
|
|
473
527
|
dependencies = [
|
|
474
528
|
"anyhow",
|
|
475
529
|
"auditor",
|
|
476
530
|
"auditor-client",
|
|
477
531
|
"chrono",
|
|
532
|
+
"color-eyre",
|
|
478
533
|
"config",
|
|
479
534
|
"regex",
|
|
480
535
|
"serde",
|
|
@@ -487,9 +542,34 @@ dependencies = [
|
|
|
487
542
|
|
|
488
543
|
[[package]]
|
|
489
544
|
name = "autocfg"
|
|
490
|
-
version = "1.
|
|
545
|
+
version = "1.4.0"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "aws-lc-rs"
|
|
551
|
+
version = "1.12.2"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "4c2b7ddaa2c56a367ad27a094ad8ef4faacf8a617c2575acb2ba88949df999ca"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"aws-lc-sys",
|
|
556
|
+
"paste",
|
|
557
|
+
"zeroize",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "aws-lc-sys"
|
|
562
|
+
version = "0.25.0"
|
|
491
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
564
|
+
checksum = "71b2ddd3ada61a305e1d8bb6c005d1eaa7d14d903681edfc400406d523a9b491"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"bindgen",
|
|
567
|
+
"cc",
|
|
568
|
+
"cmake",
|
|
569
|
+
"dunce",
|
|
570
|
+
"fs_extra",
|
|
571
|
+
"paste",
|
|
572
|
+
]
|
|
493
573
|
|
|
494
574
|
[[package]]
|
|
495
575
|
name = "backtrace"
|
|
@@ -501,7 +581,7 @@ dependencies = [
|
|
|
501
581
|
"cc",
|
|
502
582
|
"cfg-if",
|
|
503
583
|
"libc",
|
|
504
|
-
"miniz_oxide",
|
|
584
|
+
"miniz_oxide 0.7.4",
|
|
505
585
|
"object",
|
|
506
586
|
"rustc-demangle",
|
|
507
587
|
]
|
|
@@ -539,6 +619,29 @@ dependencies = [
|
|
|
539
619
|
"serde",
|
|
540
620
|
]
|
|
541
621
|
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "bindgen"
|
|
624
|
+
version = "0.69.5"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"bitflags 2.8.0",
|
|
629
|
+
"cexpr",
|
|
630
|
+
"clang-sys",
|
|
631
|
+
"itertools 0.12.1",
|
|
632
|
+
"lazy_static",
|
|
633
|
+
"lazycell",
|
|
634
|
+
"log",
|
|
635
|
+
"prettyplease",
|
|
636
|
+
"proc-macro2",
|
|
637
|
+
"quote",
|
|
638
|
+
"regex",
|
|
639
|
+
"rustc-hash 1.1.0",
|
|
640
|
+
"shlex",
|
|
641
|
+
"syn 2.0.96",
|
|
642
|
+
"which",
|
|
643
|
+
]
|
|
644
|
+
|
|
542
645
|
[[package]]
|
|
543
646
|
name = "bitflags"
|
|
544
647
|
version = "1.3.2"
|
|
@@ -547,9 +650,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
547
650
|
|
|
548
651
|
[[package]]
|
|
549
652
|
name = "bitflags"
|
|
550
|
-
version = "2.
|
|
653
|
+
version = "2.8.0"
|
|
551
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
655
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
553
656
|
dependencies = [
|
|
554
657
|
"serde",
|
|
555
658
|
]
|
|
@@ -576,9 +679,9 @@ dependencies = [
|
|
|
576
679
|
|
|
577
680
|
[[package]]
|
|
578
681
|
name = "brotli-decompressor"
|
|
579
|
-
version = "4.0.
|
|
682
|
+
version = "4.0.2"
|
|
580
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
-
checksum = "
|
|
684
|
+
checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
|
|
582
685
|
dependencies = [
|
|
583
686
|
"alloc-no-stdlib",
|
|
584
687
|
"alloc-stdlib",
|
|
@@ -598,15 +701,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
598
701
|
|
|
599
702
|
[[package]]
|
|
600
703
|
name = "bytes"
|
|
601
|
-
version = "1.
|
|
704
|
+
version = "1.9.0"
|
|
602
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
706
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
|
604
707
|
|
|
605
708
|
[[package]]
|
|
606
709
|
name = "bytestring"
|
|
607
|
-
version = "1.
|
|
710
|
+
version = "1.4.0"
|
|
608
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "
|
|
712
|
+
checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
|
|
610
713
|
dependencies = [
|
|
611
714
|
"bytes",
|
|
612
715
|
]
|
|
@@ -619,12 +722,22 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
619
722
|
|
|
620
723
|
[[package]]
|
|
621
724
|
name = "cc"
|
|
622
|
-
version = "1.
|
|
725
|
+
version = "1.2.10"
|
|
623
726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
727
|
+
checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
|
|
625
728
|
dependencies = [
|
|
626
729
|
"jobserver",
|
|
627
730
|
"libc",
|
|
731
|
+
"shlex",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "cexpr"
|
|
736
|
+
version = "0.6.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"nom",
|
|
628
741
|
]
|
|
629
742
|
|
|
630
743
|
[[package]]
|
|
@@ -633,11 +746,17 @@ version = "1.0.0"
|
|
|
633
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
747
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
635
748
|
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "cfg_aliases"
|
|
751
|
+
version = "0.2.1"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
754
|
+
|
|
636
755
|
[[package]]
|
|
637
756
|
name = "chrono"
|
|
638
|
-
version = "0.4.
|
|
757
|
+
version = "0.4.39"
|
|
639
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
-
checksum = "
|
|
759
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
|
641
760
|
dependencies = [
|
|
642
761
|
"android-tzdata",
|
|
643
762
|
"iana-time-zone",
|
|
@@ -682,20 +801,31 @@ dependencies = [
|
|
|
682
801
|
"autocfg",
|
|
683
802
|
]
|
|
684
803
|
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "clang-sys"
|
|
806
|
+
version = "1.8.1"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"glob",
|
|
811
|
+
"libc",
|
|
812
|
+
"libloading",
|
|
813
|
+
]
|
|
814
|
+
|
|
685
815
|
[[package]]
|
|
686
816
|
name = "clap"
|
|
687
|
-
version = "4.5.
|
|
817
|
+
version = "4.5.27"
|
|
688
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "
|
|
819
|
+
checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796"
|
|
690
820
|
dependencies = [
|
|
691
821
|
"clap_builder",
|
|
692
822
|
]
|
|
693
823
|
|
|
694
824
|
[[package]]
|
|
695
825
|
name = "clap_builder"
|
|
696
|
-
version = "4.5.
|
|
826
|
+
version = "4.5.27"
|
|
697
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "
|
|
828
|
+
checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7"
|
|
699
829
|
dependencies = [
|
|
700
830
|
"anstyle",
|
|
701
831
|
"clap_lex",
|
|
@@ -703,9 +833,18 @@ dependencies = [
|
|
|
703
833
|
|
|
704
834
|
[[package]]
|
|
705
835
|
name = "clap_lex"
|
|
706
|
-
version = "0.7.
|
|
836
|
+
version = "0.7.4"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "cmake"
|
|
842
|
+
version = "0.1.52"
|
|
707
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
-
checksum = "
|
|
844
|
+
checksum = "c682c223677e0e5b6b7f63a64b9351844c3f1b1678a68b7ee617e30fb082620e"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"cc",
|
|
847
|
+
]
|
|
709
848
|
|
|
710
849
|
[[package]]
|
|
711
850
|
name = "color-eyre"
|
|
@@ -734,6 +873,15 @@ dependencies = [
|
|
|
734
873
|
"tracing-error",
|
|
735
874
|
]
|
|
736
875
|
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "concurrent-queue"
|
|
878
|
+
version = "2.5.0"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"crossbeam-utils",
|
|
883
|
+
]
|
|
884
|
+
|
|
737
885
|
[[package]]
|
|
738
886
|
name = "config"
|
|
739
887
|
version = "0.13.4"
|
|
@@ -776,17 +924,27 @@ dependencies = [
|
|
|
776
924
|
"version_check",
|
|
777
925
|
]
|
|
778
926
|
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "core-foundation"
|
|
929
|
+
version = "0.9.4"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"core-foundation-sys",
|
|
934
|
+
"libc",
|
|
935
|
+
]
|
|
936
|
+
|
|
779
937
|
[[package]]
|
|
780
938
|
name = "core-foundation-sys"
|
|
781
|
-
version = "0.8.
|
|
939
|
+
version = "0.8.7"
|
|
782
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
-
checksum = "
|
|
941
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
784
942
|
|
|
785
943
|
[[package]]
|
|
786
944
|
name = "cpufeatures"
|
|
787
|
-
version = "0.2.
|
|
945
|
+
version = "0.2.17"
|
|
788
946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
947
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
790
948
|
dependencies = [
|
|
791
949
|
"libc",
|
|
792
950
|
]
|
|
@@ -865,9 +1023,9 @@ dependencies = [
|
|
|
865
1023
|
|
|
866
1024
|
[[package]]
|
|
867
1025
|
name = "crossbeam-deque"
|
|
868
|
-
version = "0.8.
|
|
1026
|
+
version = "0.8.6"
|
|
869
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
-
checksum = "
|
|
1028
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
871
1029
|
dependencies = [
|
|
872
1030
|
"crossbeam-epoch",
|
|
873
1031
|
"crossbeam-utils",
|
|
@@ -884,24 +1042,24 @@ dependencies = [
|
|
|
884
1042
|
|
|
885
1043
|
[[package]]
|
|
886
1044
|
name = "crossbeam-queue"
|
|
887
|
-
version = "0.3.
|
|
1045
|
+
version = "0.3.12"
|
|
888
1046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
-
checksum = "
|
|
1047
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
890
1048
|
dependencies = [
|
|
891
1049
|
"crossbeam-utils",
|
|
892
1050
|
]
|
|
893
1051
|
|
|
894
1052
|
[[package]]
|
|
895
1053
|
name = "crossbeam-utils"
|
|
896
|
-
version = "0.8.
|
|
1054
|
+
version = "0.8.21"
|
|
897
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
-
checksum = "
|
|
1056
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
899
1057
|
|
|
900
1058
|
[[package]]
|
|
901
1059
|
name = "crunchy"
|
|
902
|
-
version = "0.2.
|
|
1060
|
+
version = "0.2.3"
|
|
903
1061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
-
checksum = "
|
|
1062
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
905
1063
|
|
|
906
1064
|
[[package]]
|
|
907
1065
|
name = "crypto-common"
|
|
@@ -934,7 +1092,7 @@ dependencies = [
|
|
|
934
1092
|
"proc-macro2",
|
|
935
1093
|
"quote",
|
|
936
1094
|
"strsim",
|
|
937
|
-
"syn 2.0.
|
|
1095
|
+
"syn 2.0.96",
|
|
938
1096
|
]
|
|
939
1097
|
|
|
940
1098
|
[[package]]
|
|
@@ -945,7 +1103,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
945
1103
|
dependencies = [
|
|
946
1104
|
"darling_core",
|
|
947
1105
|
"quote",
|
|
948
|
-
"syn 2.0.
|
|
1106
|
+
"syn 2.0.96",
|
|
949
1107
|
]
|
|
950
1108
|
|
|
951
1109
|
[[package]]
|
|
@@ -997,7 +1155,7 @@ dependencies = [
|
|
|
997
1155
|
"proc-macro2",
|
|
998
1156
|
"quote",
|
|
999
1157
|
"rustc_version",
|
|
1000
|
-
"syn 2.0.
|
|
1158
|
+
"syn 2.0.96",
|
|
1001
1159
|
]
|
|
1002
1160
|
|
|
1003
1161
|
[[package]]
|
|
@@ -1018,6 +1176,17 @@ dependencies = [
|
|
|
1018
1176
|
"subtle",
|
|
1019
1177
|
]
|
|
1020
1178
|
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "displaydoc"
|
|
1181
|
+
version = "0.2.5"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"proc-macro2",
|
|
1186
|
+
"quote",
|
|
1187
|
+
"syn 2.0.96",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1021
1190
|
[[package]]
|
|
1022
1191
|
name = "dlv-list"
|
|
1023
1192
|
version = "0.3.0"
|
|
@@ -1030,6 +1199,24 @@ version = "0.15.7"
|
|
|
1030
1199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
1200
|
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
|
1032
1201
|
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "dummy"
|
|
1204
|
+
version = "0.8.0"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "1cac124e13ae9aa56acc4241f8c8207501d93afdd8d8e62f0c1f2e12f6508c65"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"darling",
|
|
1209
|
+
"proc-macro2",
|
|
1210
|
+
"quote",
|
|
1211
|
+
"syn 2.0.96",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "dunce"
|
|
1216
|
+
version = "1.0.5"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1219
|
+
|
|
1033
1220
|
[[package]]
|
|
1034
1221
|
name = "either"
|
|
1035
1222
|
version = "1.13.0"
|
|
@@ -1041,13 +1228,25 @@ dependencies = [
|
|
|
1041
1228
|
|
|
1042
1229
|
[[package]]
|
|
1043
1230
|
name = "encoding_rs"
|
|
1044
|
-
version = "0.8.
|
|
1231
|
+
version = "0.8.35"
|
|
1045
1232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
-
checksum = "
|
|
1233
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
1047
1234
|
dependencies = [
|
|
1048
1235
|
"cfg-if",
|
|
1049
1236
|
]
|
|
1050
1237
|
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "enum-as-inner"
|
|
1240
|
+
version = "0.6.1"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"heck",
|
|
1245
|
+
"proc-macro2",
|
|
1246
|
+
"quote",
|
|
1247
|
+
"syn 2.0.96",
|
|
1248
|
+
]
|
|
1249
|
+
|
|
1051
1250
|
[[package]]
|
|
1052
1251
|
name = "env_logger"
|
|
1053
1252
|
version = "0.8.4"
|
|
@@ -1066,12 +1265,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
1066
1265
|
|
|
1067
1266
|
[[package]]
|
|
1068
1267
|
name = "errno"
|
|
1069
|
-
version = "0.3.
|
|
1268
|
+
version = "0.3.10"
|
|
1070
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
-
checksum = "
|
|
1270
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
1072
1271
|
dependencies = [
|
|
1073
1272
|
"libc",
|
|
1074
|
-
"windows-sys 0.
|
|
1273
|
+
"windows-sys 0.59.0",
|
|
1075
1274
|
]
|
|
1076
1275
|
|
|
1077
1276
|
[[package]]
|
|
@@ -1087,9 +1286,14 @@ dependencies = [
|
|
|
1087
1286
|
|
|
1088
1287
|
[[package]]
|
|
1089
1288
|
name = "event-listener"
|
|
1090
|
-
version = "
|
|
1289
|
+
version = "5.4.0"
|
|
1091
1290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
-
checksum = "
|
|
1291
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"concurrent-queue",
|
|
1294
|
+
"parking",
|
|
1295
|
+
"pin-project-lite",
|
|
1296
|
+
]
|
|
1093
1297
|
|
|
1094
1298
|
[[package]]
|
|
1095
1299
|
name = "eyre"
|
|
@@ -1103,36 +1307,37 @@ dependencies = [
|
|
|
1103
1307
|
|
|
1104
1308
|
[[package]]
|
|
1105
1309
|
name = "fake"
|
|
1106
|
-
version = "2.
|
|
1310
|
+
version = "2.10.0"
|
|
1107
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
-
checksum = "
|
|
1312
|
+
checksum = "2d391ba4af7f1d93f01fcf7b2f29e2bc9348e109dfdbf4dcbdc51dfa38dab0b6"
|
|
1109
1313
|
dependencies = [
|
|
1110
1314
|
"chrono",
|
|
1111
1315
|
"deunicode",
|
|
1316
|
+
"dummy",
|
|
1112
1317
|
"rand",
|
|
1113
1318
|
]
|
|
1114
1319
|
|
|
1115
1320
|
[[package]]
|
|
1116
1321
|
name = "fastrand"
|
|
1117
|
-
version = "2.
|
|
1322
|
+
version = "2.3.0"
|
|
1118
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
-
checksum = "
|
|
1324
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1120
1325
|
|
|
1121
1326
|
[[package]]
|
|
1122
1327
|
name = "flate2"
|
|
1123
|
-
version = "1.0.
|
|
1328
|
+
version = "1.0.35"
|
|
1124
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
-
checksum = "
|
|
1330
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
|
1126
1331
|
dependencies = [
|
|
1127
1332
|
"crc32fast",
|
|
1128
|
-
"miniz_oxide",
|
|
1333
|
+
"miniz_oxide 0.8.3",
|
|
1129
1334
|
]
|
|
1130
1335
|
|
|
1131
1336
|
[[package]]
|
|
1132
1337
|
name = "flume"
|
|
1133
|
-
version = "0.11.
|
|
1338
|
+
version = "0.11.1"
|
|
1134
1339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
-
checksum = "
|
|
1340
|
+
checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
|
|
1136
1341
|
dependencies = [
|
|
1137
1342
|
"futures-core",
|
|
1138
1343
|
"futures-sink",
|
|
@@ -1145,6 +1350,12 @@ version = "1.0.7"
|
|
|
1145
1350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
1351
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1147
1352
|
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "foldhash"
|
|
1355
|
+
version = "0.1.4"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
|
1358
|
+
|
|
1148
1359
|
[[package]]
|
|
1149
1360
|
name = "form_urlencoded"
|
|
1150
1361
|
version = "1.2.1"
|
|
@@ -1154,11 +1365,17 @@ dependencies = [
|
|
|
1154
1365
|
"percent-encoding",
|
|
1155
1366
|
]
|
|
1156
1367
|
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "fs_extra"
|
|
1370
|
+
version = "1.3.0"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1373
|
+
|
|
1157
1374
|
[[package]]
|
|
1158
1375
|
name = "futures"
|
|
1159
|
-
version = "0.3.
|
|
1376
|
+
version = "0.3.31"
|
|
1160
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
-
checksum = "
|
|
1378
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1162
1379
|
dependencies = [
|
|
1163
1380
|
"futures-channel",
|
|
1164
1381
|
"futures-core",
|
|
@@ -1171,9 +1388,9 @@ dependencies = [
|
|
|
1171
1388
|
|
|
1172
1389
|
[[package]]
|
|
1173
1390
|
name = "futures-channel"
|
|
1174
|
-
version = "0.3.
|
|
1391
|
+
version = "0.3.31"
|
|
1175
1392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "
|
|
1393
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1177
1394
|
dependencies = [
|
|
1178
1395
|
"futures-core",
|
|
1179
1396
|
"futures-sink",
|
|
@@ -1181,15 +1398,15 @@ dependencies = [
|
|
|
1181
1398
|
|
|
1182
1399
|
[[package]]
|
|
1183
1400
|
name = "futures-core"
|
|
1184
|
-
version = "0.3.
|
|
1401
|
+
version = "0.3.31"
|
|
1185
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
-
checksum = "
|
|
1403
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1187
1404
|
|
|
1188
1405
|
[[package]]
|
|
1189
1406
|
name = "futures-executor"
|
|
1190
|
-
version = "0.3.
|
|
1407
|
+
version = "0.3.31"
|
|
1191
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
-
checksum = "
|
|
1409
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1193
1410
|
dependencies = [
|
|
1194
1411
|
"futures-core",
|
|
1195
1412
|
"futures-task",
|
|
@@ -1209,38 +1426,38 @@ dependencies = [
|
|
|
1209
1426
|
|
|
1210
1427
|
[[package]]
|
|
1211
1428
|
name = "futures-io"
|
|
1212
|
-
version = "0.3.
|
|
1429
|
+
version = "0.3.31"
|
|
1213
1430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
-
checksum = "
|
|
1431
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1215
1432
|
|
|
1216
1433
|
[[package]]
|
|
1217
1434
|
name = "futures-macro"
|
|
1218
|
-
version = "0.3.
|
|
1435
|
+
version = "0.3.31"
|
|
1219
1436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
-
checksum = "
|
|
1437
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1221
1438
|
dependencies = [
|
|
1222
1439
|
"proc-macro2",
|
|
1223
1440
|
"quote",
|
|
1224
|
-
"syn 2.0.
|
|
1441
|
+
"syn 2.0.96",
|
|
1225
1442
|
]
|
|
1226
1443
|
|
|
1227
1444
|
[[package]]
|
|
1228
1445
|
name = "futures-sink"
|
|
1229
|
-
version = "0.3.
|
|
1446
|
+
version = "0.3.31"
|
|
1230
1447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
-
checksum = "
|
|
1448
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1232
1449
|
|
|
1233
1450
|
[[package]]
|
|
1234
1451
|
name = "futures-task"
|
|
1235
|
-
version = "0.3.
|
|
1452
|
+
version = "0.3.31"
|
|
1236
1453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
-
checksum = "
|
|
1454
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1238
1455
|
|
|
1239
1456
|
[[package]]
|
|
1240
1457
|
name = "futures-util"
|
|
1241
|
-
version = "0.3.
|
|
1458
|
+
version = "0.3.31"
|
|
1242
1459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
-
checksum = "
|
|
1460
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1244
1461
|
dependencies = [
|
|
1245
1462
|
"futures-channel",
|
|
1246
1463
|
"futures-core",
|
|
@@ -1281,8 +1498,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1281
1498
|
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
1282
1499
|
dependencies = [
|
|
1283
1500
|
"cfg-if",
|
|
1501
|
+
"js-sys",
|
|
1284
1502
|
"libc",
|
|
1285
1503
|
"wasi",
|
|
1504
|
+
"wasm-bindgen",
|
|
1286
1505
|
]
|
|
1287
1506
|
|
|
1288
1507
|
[[package]]
|
|
@@ -1293,9 +1512,9 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
|
1293
1512
|
|
|
1294
1513
|
[[package]]
|
|
1295
1514
|
name = "glob"
|
|
1296
|
-
version = "0.3.
|
|
1515
|
+
version = "0.3.2"
|
|
1297
1516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
-
checksum = "
|
|
1517
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
1299
1518
|
|
|
1300
1519
|
[[package]]
|
|
1301
1520
|
name = "h2"
|
|
@@ -1309,7 +1528,7 @@ dependencies = [
|
|
|
1309
1528
|
"futures-sink",
|
|
1310
1529
|
"futures-util",
|
|
1311
1530
|
"http 0.2.12",
|
|
1312
|
-
"indexmap 2.
|
|
1531
|
+
"indexmap 2.7.1",
|
|
1313
1532
|
"slab",
|
|
1314
1533
|
"tokio",
|
|
1315
1534
|
"tokio-util",
|
|
@@ -1318,17 +1537,17 @@ dependencies = [
|
|
|
1318
1537
|
|
|
1319
1538
|
[[package]]
|
|
1320
1539
|
name = "h2"
|
|
1321
|
-
version = "0.4.
|
|
1540
|
+
version = "0.4.7"
|
|
1322
1541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
-
checksum = "
|
|
1542
|
+
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
|
|
1324
1543
|
dependencies = [
|
|
1325
1544
|
"atomic-waker",
|
|
1326
1545
|
"bytes",
|
|
1327
1546
|
"fnv",
|
|
1328
1547
|
"futures-core",
|
|
1329
1548
|
"futures-sink",
|
|
1330
|
-
"http 1.
|
|
1331
|
-
"indexmap 2.
|
|
1549
|
+
"http 1.2.0",
|
|
1550
|
+
"indexmap 2.7.1",
|
|
1332
1551
|
"slab",
|
|
1333
1552
|
"tokio",
|
|
1334
1553
|
"tokio-util",
|
|
@@ -1356,31 +1575,29 @@ dependencies = [
|
|
|
1356
1575
|
|
|
1357
1576
|
[[package]]
|
|
1358
1577
|
name = "hashbrown"
|
|
1359
|
-
version = "0.
|
|
1578
|
+
version = "0.15.2"
|
|
1360
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
-
checksum = "
|
|
1580
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1362
1581
|
dependencies = [
|
|
1363
|
-
"ahash 0.8.11",
|
|
1364
1582
|
"allocator-api2",
|
|
1583
|
+
"equivalent",
|
|
1584
|
+
"foldhash",
|
|
1365
1585
|
]
|
|
1366
1586
|
|
|
1367
1587
|
[[package]]
|
|
1368
1588
|
name = "hashlink"
|
|
1369
|
-
version = "0.
|
|
1589
|
+
version = "0.10.0"
|
|
1370
1590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
-
checksum = "
|
|
1591
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
1372
1592
|
dependencies = [
|
|
1373
|
-
"hashbrown 0.
|
|
1593
|
+
"hashbrown 0.15.2",
|
|
1374
1594
|
]
|
|
1375
1595
|
|
|
1376
1596
|
[[package]]
|
|
1377
1597
|
name = "heck"
|
|
1378
|
-
version = "0.
|
|
1598
|
+
version = "0.5.0"
|
|
1379
1599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
1381
|
-
dependencies = [
|
|
1382
|
-
"unicode-segmentation",
|
|
1383
|
-
]
|
|
1600
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1384
1601
|
|
|
1385
1602
|
[[package]]
|
|
1386
1603
|
name = "hermit-abi"
|
|
@@ -1388,6 +1605,12 @@ version = "0.3.9"
|
|
|
1388
1605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
1606
|
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1390
1607
|
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "hermit-abi"
|
|
1610
|
+
version = "0.4.0"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
1613
|
+
|
|
1391
1614
|
[[package]]
|
|
1392
1615
|
name = "hex"
|
|
1393
1616
|
version = "0.4.3"
|
|
@@ -1414,11 +1637,11 @@ dependencies = [
|
|
|
1414
1637
|
|
|
1415
1638
|
[[package]]
|
|
1416
1639
|
name = "home"
|
|
1417
|
-
version = "0.5.
|
|
1640
|
+
version = "0.5.11"
|
|
1418
1641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
-
checksum = "
|
|
1642
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
1420
1643
|
dependencies = [
|
|
1421
|
-
"windows-sys 0.
|
|
1644
|
+
"windows-sys 0.59.0",
|
|
1422
1645
|
]
|
|
1423
1646
|
|
|
1424
1647
|
[[package]]
|
|
@@ -1434,15 +1657,26 @@ dependencies = [
|
|
|
1434
1657
|
|
|
1435
1658
|
[[package]]
|
|
1436
1659
|
name = "http"
|
|
1437
|
-
version = "1.
|
|
1660
|
+
version = "1.2.0"
|
|
1438
1661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
-
checksum = "
|
|
1662
|
+
checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
|
|
1440
1663
|
dependencies = [
|
|
1441
1664
|
"bytes",
|
|
1442
1665
|
"fnv",
|
|
1443
1666
|
"itoa",
|
|
1444
1667
|
]
|
|
1445
1668
|
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "http-body"
|
|
1671
|
+
version = "0.4.6"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"bytes",
|
|
1676
|
+
"http 0.2.12",
|
|
1677
|
+
"pin-project-lite",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1446
1680
|
[[package]]
|
|
1447
1681
|
name = "http-body"
|
|
1448
1682
|
version = "1.0.1"
|
|
@@ -1450,7 +1684,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1450
1684
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1451
1685
|
dependencies = [
|
|
1452
1686
|
"bytes",
|
|
1453
|
-
"http 1.
|
|
1687
|
+
"http 1.2.0",
|
|
1454
1688
|
]
|
|
1455
1689
|
|
|
1456
1690
|
[[package]]
|
|
@@ -1461,16 +1695,22 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
|
1461
1695
|
dependencies = [
|
|
1462
1696
|
"bytes",
|
|
1463
1697
|
"futures-util",
|
|
1464
|
-
"http 1.
|
|
1465
|
-
"http-body",
|
|
1698
|
+
"http 1.2.0",
|
|
1699
|
+
"http-body 1.0.1",
|
|
1466
1700
|
"pin-project-lite",
|
|
1467
1701
|
]
|
|
1468
1702
|
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "http-range-header"
|
|
1705
|
+
version = "0.3.1"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
|
|
1708
|
+
|
|
1469
1709
|
[[package]]
|
|
1470
1710
|
name = "httparse"
|
|
1471
|
-
version = "1.9.
|
|
1711
|
+
version = "1.9.5"
|
|
1472
1712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
-
checksum = "
|
|
1713
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
|
1474
1714
|
|
|
1475
1715
|
[[package]]
|
|
1476
1716
|
name = "httpdate"
|
|
@@ -1480,16 +1720,39 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1480
1720
|
|
|
1481
1721
|
[[package]]
|
|
1482
1722
|
name = "hyper"
|
|
1483
|
-
version = "
|
|
1723
|
+
version = "0.14.32"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
1726
|
+
dependencies = [
|
|
1727
|
+
"bytes",
|
|
1728
|
+
"futures-channel",
|
|
1729
|
+
"futures-core",
|
|
1730
|
+
"futures-util",
|
|
1731
|
+
"http 0.2.12",
|
|
1732
|
+
"http-body 0.4.6",
|
|
1733
|
+
"httparse",
|
|
1734
|
+
"httpdate",
|
|
1735
|
+
"itoa",
|
|
1736
|
+
"pin-project-lite",
|
|
1737
|
+
"socket2",
|
|
1738
|
+
"tokio",
|
|
1739
|
+
"tower-service",
|
|
1740
|
+
"tracing",
|
|
1741
|
+
"want",
|
|
1742
|
+
]
|
|
1743
|
+
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "hyper"
|
|
1746
|
+
version = "1.5.2"
|
|
1484
1747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1748
|
+
checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
|
|
1486
1749
|
dependencies = [
|
|
1487
1750
|
"bytes",
|
|
1488
1751
|
"futures-channel",
|
|
1489
1752
|
"futures-util",
|
|
1490
|
-
"h2 0.4.
|
|
1491
|
-
"http 1.
|
|
1492
|
-
"http-body",
|
|
1753
|
+
"h2 0.4.7",
|
|
1754
|
+
"http 1.2.0",
|
|
1755
|
+
"http-body 1.0.1",
|
|
1493
1756
|
"httparse",
|
|
1494
1757
|
"httpdate",
|
|
1495
1758
|
"itoa",
|
|
@@ -1501,47 +1764,74 @@ dependencies = [
|
|
|
1501
1764
|
|
|
1502
1765
|
[[package]]
|
|
1503
1766
|
name = "hyper-rustls"
|
|
1504
|
-
version = "0.
|
|
1767
|
+
version = "0.24.2"
|
|
1768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
1770
|
+
dependencies = [
|
|
1771
|
+
"futures-util",
|
|
1772
|
+
"http 0.2.12",
|
|
1773
|
+
"hyper 0.14.32",
|
|
1774
|
+
"log",
|
|
1775
|
+
"rustls 0.21.12",
|
|
1776
|
+
"rustls-native-certs",
|
|
1777
|
+
"tokio",
|
|
1778
|
+
"tokio-rustls 0.24.1",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "hyper-rustls"
|
|
1783
|
+
version = "0.27.5"
|
|
1505
1784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
-
checksum = "
|
|
1785
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
1507
1786
|
dependencies = [
|
|
1508
1787
|
"futures-util",
|
|
1509
|
-
"http 1.
|
|
1510
|
-
"hyper",
|
|
1788
|
+
"http 1.2.0",
|
|
1789
|
+
"hyper 1.5.2",
|
|
1511
1790
|
"hyper-util",
|
|
1512
|
-
"rustls 0.23.
|
|
1791
|
+
"rustls 0.23.21",
|
|
1513
1792
|
"rustls-pki-types",
|
|
1514
1793
|
"tokio",
|
|
1515
|
-
"tokio-rustls",
|
|
1794
|
+
"tokio-rustls 0.26.1",
|
|
1516
1795
|
"tower-service",
|
|
1517
|
-
"webpki-roots
|
|
1796
|
+
"webpki-roots",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "hyper-timeout"
|
|
1801
|
+
version = "0.4.1"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"hyper 0.14.32",
|
|
1806
|
+
"pin-project-lite",
|
|
1807
|
+
"tokio",
|
|
1808
|
+
"tokio-io-timeout",
|
|
1518
1809
|
]
|
|
1519
1810
|
|
|
1520
1811
|
[[package]]
|
|
1521
1812
|
name = "hyper-util"
|
|
1522
|
-
version = "0.1.
|
|
1813
|
+
version = "0.1.10"
|
|
1523
1814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
-
checksum = "
|
|
1815
|
+
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
|
|
1525
1816
|
dependencies = [
|
|
1526
1817
|
"bytes",
|
|
1527
1818
|
"futures-channel",
|
|
1528
1819
|
"futures-util",
|
|
1529
|
-
"http 1.
|
|
1530
|
-
"http-body",
|
|
1531
|
-
"hyper",
|
|
1820
|
+
"http 1.2.0",
|
|
1821
|
+
"http-body 1.0.1",
|
|
1822
|
+
"hyper 1.5.2",
|
|
1532
1823
|
"pin-project-lite",
|
|
1533
1824
|
"socket2",
|
|
1534
1825
|
"tokio",
|
|
1535
|
-
"tower",
|
|
1536
1826
|
"tower-service",
|
|
1537
1827
|
"tracing",
|
|
1538
1828
|
]
|
|
1539
1829
|
|
|
1540
1830
|
[[package]]
|
|
1541
1831
|
name = "iana-time-zone"
|
|
1542
|
-
version = "0.1.
|
|
1832
|
+
version = "0.1.61"
|
|
1543
1833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
-
checksum = "
|
|
1834
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
|
1545
1835
|
dependencies = [
|
|
1546
1836
|
"android_system_properties",
|
|
1547
1837
|
"core-foundation-sys",
|
|
@@ -1561,21 +1851,156 @@ dependencies = [
|
|
|
1561
1851
|
]
|
|
1562
1852
|
|
|
1563
1853
|
[[package]]
|
|
1564
|
-
name = "
|
|
1565
|
-
version = "1.0
|
|
1854
|
+
name = "icu_collections"
|
|
1855
|
+
version = "1.5.0"
|
|
1566
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
-
checksum = "
|
|
1857
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1858
|
+
dependencies = [
|
|
1859
|
+
"displaydoc",
|
|
1860
|
+
"yoke",
|
|
1861
|
+
"zerofrom",
|
|
1862
|
+
"zerovec",
|
|
1863
|
+
]
|
|
1568
1864
|
|
|
1569
1865
|
[[package]]
|
|
1570
|
-
name = "
|
|
1571
|
-
version = "
|
|
1866
|
+
name = "icu_locid"
|
|
1867
|
+
version = "1.5.0"
|
|
1572
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
-
checksum = "
|
|
1869
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1574
1870
|
dependencies = [
|
|
1575
|
-
"
|
|
1576
|
-
"
|
|
1871
|
+
"displaydoc",
|
|
1872
|
+
"litemap",
|
|
1873
|
+
"tinystr",
|
|
1874
|
+
"writeable",
|
|
1875
|
+
"zerovec",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "icu_locid_transform"
|
|
1880
|
+
version = "1.5.0"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"displaydoc",
|
|
1885
|
+
"icu_locid",
|
|
1886
|
+
"icu_locid_transform_data",
|
|
1887
|
+
"icu_provider",
|
|
1888
|
+
"tinystr",
|
|
1889
|
+
"zerovec",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "icu_locid_transform_data"
|
|
1894
|
+
version = "1.5.0"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "icu_normalizer"
|
|
1900
|
+
version = "1.5.0"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"displaydoc",
|
|
1905
|
+
"icu_collections",
|
|
1906
|
+
"icu_normalizer_data",
|
|
1907
|
+
"icu_properties",
|
|
1908
|
+
"icu_provider",
|
|
1909
|
+
"smallvec",
|
|
1910
|
+
"utf16_iter",
|
|
1911
|
+
"utf8_iter",
|
|
1912
|
+
"write16",
|
|
1913
|
+
"zerovec",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "icu_normalizer_data"
|
|
1918
|
+
version = "1.5.0"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "icu_properties"
|
|
1924
|
+
version = "1.5.1"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"displaydoc",
|
|
1929
|
+
"icu_collections",
|
|
1930
|
+
"icu_locid_transform",
|
|
1931
|
+
"icu_properties_data",
|
|
1932
|
+
"icu_provider",
|
|
1933
|
+
"tinystr",
|
|
1934
|
+
"zerovec",
|
|
1935
|
+
]
|
|
1936
|
+
|
|
1937
|
+
[[package]]
|
|
1938
|
+
name = "icu_properties_data"
|
|
1939
|
+
version = "1.5.0"
|
|
1940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "icu_provider"
|
|
1945
|
+
version = "1.5.0"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"displaydoc",
|
|
1950
|
+
"icu_locid",
|
|
1951
|
+
"icu_provider_macros",
|
|
1952
|
+
"stable_deref_trait",
|
|
1953
|
+
"tinystr",
|
|
1954
|
+
"writeable",
|
|
1955
|
+
"yoke",
|
|
1956
|
+
"zerofrom",
|
|
1957
|
+
"zerovec",
|
|
1958
|
+
]
|
|
1959
|
+
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "icu_provider_macros"
|
|
1962
|
+
version = "1.5.0"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"proc-macro2",
|
|
1967
|
+
"quote",
|
|
1968
|
+
"syn 2.0.96",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "ident_case"
|
|
1973
|
+
version = "1.0.1"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "idna"
|
|
1979
|
+
version = "1.0.3"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"idna_adapter",
|
|
1984
|
+
"smallvec",
|
|
1985
|
+
"utf8_iter",
|
|
1986
|
+
]
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "idna_adapter"
|
|
1990
|
+
version = "1.2.0"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"icu_normalizer",
|
|
1995
|
+
"icu_properties",
|
|
1577
1996
|
]
|
|
1578
1997
|
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "impl-more"
|
|
2000
|
+
version = "0.1.9"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
|
|
2003
|
+
|
|
1579
2004
|
[[package]]
|
|
1580
2005
|
name = "indenter"
|
|
1581
2006
|
version = "0.3.3"
|
|
@@ -1595,12 +2020,12 @@ dependencies = [
|
|
|
1595
2020
|
|
|
1596
2021
|
[[package]]
|
|
1597
2022
|
name = "indexmap"
|
|
1598
|
-
version = "2.
|
|
2023
|
+
version = "2.7.1"
|
|
1599
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
-
checksum = "
|
|
2025
|
+
checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
|
|
1601
2026
|
dependencies = [
|
|
1602
2027
|
"equivalent",
|
|
1603
|
-
"hashbrown 0.
|
|
2028
|
+
"hashbrown 0.15.2",
|
|
1604
2029
|
"serde",
|
|
1605
2030
|
]
|
|
1606
2031
|
|
|
@@ -1612,19 +2037,19 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
|
1612
2037
|
|
|
1613
2038
|
[[package]]
|
|
1614
2039
|
name = "ipnet"
|
|
1615
|
-
version = "2.
|
|
2040
|
+
version = "2.11.0"
|
|
1616
2041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
-
checksum = "
|
|
2042
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1618
2043
|
|
|
1619
2044
|
[[package]]
|
|
1620
2045
|
name = "is-terminal"
|
|
1621
|
-
version = "0.4.
|
|
2046
|
+
version = "0.4.15"
|
|
1622
2047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
-
checksum = "
|
|
2048
|
+
checksum = "e19b23d53f35ce9f56aebc7d1bb4e6ac1e9c0db7ac85c8d1760c04379edced37"
|
|
1624
2049
|
dependencies = [
|
|
1625
|
-
"hermit-abi",
|
|
2050
|
+
"hermit-abi 0.4.0",
|
|
1626
2051
|
"libc",
|
|
1627
|
-
"windows-sys 0.
|
|
2052
|
+
"windows-sys 0.59.0",
|
|
1628
2053
|
]
|
|
1629
2054
|
|
|
1630
2055
|
[[package]]
|
|
@@ -1636,6 +2061,15 @@ dependencies = [
|
|
|
1636
2061
|
"either",
|
|
1637
2062
|
]
|
|
1638
2063
|
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "itertools"
|
|
2066
|
+
version = "0.12.1"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"either",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
1639
2073
|
[[package]]
|
|
1640
2074
|
name = "itertools"
|
|
1641
2075
|
version = "0.13.0"
|
|
@@ -1647,9 +2081,9 @@ dependencies = [
|
|
|
1647
2081
|
|
|
1648
2082
|
[[package]]
|
|
1649
2083
|
name = "itoa"
|
|
1650
|
-
version = "1.0.
|
|
2084
|
+
version = "1.0.14"
|
|
1651
2085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
-
checksum = "
|
|
2086
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
|
1653
2087
|
|
|
1654
2088
|
[[package]]
|
|
1655
2089
|
name = "jobserver"
|
|
@@ -1662,10 +2096,11 @@ dependencies = [
|
|
|
1662
2096
|
|
|
1663
2097
|
[[package]]
|
|
1664
2098
|
name = "js-sys"
|
|
1665
|
-
version = "0.3.
|
|
2099
|
+
version = "0.3.77"
|
|
1666
2100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
-
checksum = "
|
|
2101
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1668
2102
|
dependencies = [
|
|
2103
|
+
"once_cell",
|
|
1669
2104
|
"wasm-bindgen",
|
|
1670
2105
|
]
|
|
1671
2106
|
|
|
@@ -1680,6 +2115,95 @@ dependencies = [
|
|
|
1680
2115
|
"serde",
|
|
1681
2116
|
]
|
|
1682
2117
|
|
|
2118
|
+
[[package]]
|
|
2119
|
+
name = "jsonpath-rust"
|
|
2120
|
+
version = "0.4.0"
|
|
2121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
+
checksum = "96acbc6188d3bd83519d053efec756aa4419de62ec47be7f28dec297f7dc9eb0"
|
|
2123
|
+
dependencies = [
|
|
2124
|
+
"pest",
|
|
2125
|
+
"pest_derive",
|
|
2126
|
+
"regex",
|
|
2127
|
+
"serde_json",
|
|
2128
|
+
"thiserror 1.0.69",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "k8s-openapi"
|
|
2133
|
+
version = "0.21.1"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "550f99d93aa4c2b25de527bce492d772caf5e21d7ac9bd4b508ba781c8d91e30"
|
|
2136
|
+
dependencies = [
|
|
2137
|
+
"base64 0.21.7",
|
|
2138
|
+
"chrono",
|
|
2139
|
+
"serde",
|
|
2140
|
+
"serde-value",
|
|
2141
|
+
"serde_json",
|
|
2142
|
+
]
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "kube"
|
|
2146
|
+
version = "0.88.1"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "462fe330a0617b276ec864c2255810adcdf519ecb6844253c54074b2086a97bc"
|
|
2149
|
+
dependencies = [
|
|
2150
|
+
"k8s-openapi",
|
|
2151
|
+
"kube-client",
|
|
2152
|
+
"kube-core",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "kube-client"
|
|
2157
|
+
version = "0.88.1"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "7fe0d65dd6f3adba29cfb84f19dfe55449c7f6c35425f9d8294bec40313e0b64"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"base64 0.21.7",
|
|
2162
|
+
"bytes",
|
|
2163
|
+
"chrono",
|
|
2164
|
+
"either",
|
|
2165
|
+
"futures",
|
|
2166
|
+
"home",
|
|
2167
|
+
"http 0.2.12",
|
|
2168
|
+
"http-body 0.4.6",
|
|
2169
|
+
"hyper 0.14.32",
|
|
2170
|
+
"hyper-rustls 0.24.2",
|
|
2171
|
+
"hyper-timeout",
|
|
2172
|
+
"jsonpath-rust",
|
|
2173
|
+
"k8s-openapi",
|
|
2174
|
+
"kube-core",
|
|
2175
|
+
"pem",
|
|
2176
|
+
"pin-project",
|
|
2177
|
+
"rustls 0.21.12",
|
|
2178
|
+
"rustls-pemfile 1.0.4",
|
|
2179
|
+
"secrecy",
|
|
2180
|
+
"serde",
|
|
2181
|
+
"serde_json",
|
|
2182
|
+
"serde_yaml",
|
|
2183
|
+
"thiserror 1.0.69",
|
|
2184
|
+
"tokio",
|
|
2185
|
+
"tokio-util",
|
|
2186
|
+
"tower 0.4.13",
|
|
2187
|
+
"tower-http",
|
|
2188
|
+
"tracing",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "kube-core"
|
|
2193
|
+
version = "0.88.1"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "a6b42844e9172f631b8263ea9ce003b9251da13beb1401580937ad206dd82f4c"
|
|
2196
|
+
dependencies = [
|
|
2197
|
+
"chrono",
|
|
2198
|
+
"form_urlencoded",
|
|
2199
|
+
"http 0.2.12",
|
|
2200
|
+
"k8s-openapi",
|
|
2201
|
+
"once_cell",
|
|
2202
|
+
"serde",
|
|
2203
|
+
"serde_json",
|
|
2204
|
+
"thiserror 1.0.69",
|
|
2205
|
+
]
|
|
2206
|
+
|
|
1683
2207
|
[[package]]
|
|
1684
2208
|
name = "language-tags"
|
|
1685
2209
|
version = "0.3.2"
|
|
@@ -1695,23 +2219,39 @@ dependencies = [
|
|
|
1695
2219
|
"spin",
|
|
1696
2220
|
]
|
|
1697
2221
|
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "lazycell"
|
|
2224
|
+
version = "1.3.0"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
2227
|
+
|
|
1698
2228
|
[[package]]
|
|
1699
2229
|
name = "libc"
|
|
1700
|
-
version = "0.2.
|
|
2230
|
+
version = "0.2.169"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "libloading"
|
|
2236
|
+
version = "0.8.6"
|
|
1701
2237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
2238
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
2239
|
+
dependencies = [
|
|
2240
|
+
"cfg-if",
|
|
2241
|
+
"windows-targets 0.52.6",
|
|
2242
|
+
]
|
|
1703
2243
|
|
|
1704
2244
|
[[package]]
|
|
1705
2245
|
name = "libm"
|
|
1706
|
-
version = "0.2.
|
|
2246
|
+
version = "0.2.11"
|
|
1707
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
-
checksum = "
|
|
2248
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
1709
2249
|
|
|
1710
2250
|
[[package]]
|
|
1711
2251
|
name = "libsqlite3-sys"
|
|
1712
|
-
version = "0.
|
|
2252
|
+
version = "0.30.1"
|
|
1713
2253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
-
checksum = "
|
|
2254
|
+
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
|
|
1715
2255
|
dependencies = [
|
|
1716
2256
|
"cc",
|
|
1717
2257
|
"pkg-config",
|
|
@@ -1726,9 +2266,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
1726
2266
|
|
|
1727
2267
|
[[package]]
|
|
1728
2268
|
name = "linux-raw-sys"
|
|
1729
|
-
version = "0.4.
|
|
2269
|
+
version = "0.4.15"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "litemap"
|
|
2275
|
+
version = "0.7.4"
|
|
1730
2276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "
|
|
2277
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
|
1732
2278
|
|
|
1733
2279
|
[[package]]
|
|
1734
2280
|
name = "local-channel"
|
|
@@ -1759,9 +2305,9 @@ dependencies = [
|
|
|
1759
2305
|
|
|
1760
2306
|
[[package]]
|
|
1761
2307
|
name = "log"
|
|
1762
|
-
version = "0.4.
|
|
2308
|
+
version = "0.4.25"
|
|
1763
2309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
-
checksum = "
|
|
2310
|
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
|
1765
2311
|
|
|
1766
2312
|
[[package]]
|
|
1767
2313
|
name = "matchers"
|
|
@@ -1819,34 +2365,31 @@ dependencies = [
|
|
|
1819
2365
|
]
|
|
1820
2366
|
|
|
1821
2367
|
[[package]]
|
|
1822
|
-
name = "
|
|
1823
|
-
version = "0.8.
|
|
2368
|
+
name = "miniz_oxide"
|
|
2369
|
+
version = "0.8.3"
|
|
1824
2370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
-
checksum = "
|
|
2371
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
|
1826
2372
|
dependencies = [
|
|
1827
|
-
"
|
|
1828
|
-
"log",
|
|
1829
|
-
"wasi",
|
|
1830
|
-
"windows-sys 0.48.0",
|
|
2373
|
+
"adler2",
|
|
1831
2374
|
]
|
|
1832
2375
|
|
|
1833
2376
|
[[package]]
|
|
1834
2377
|
name = "mio"
|
|
1835
|
-
version = "1.0.
|
|
2378
|
+
version = "1.0.3"
|
|
1836
2379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
2380
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1838
2381
|
dependencies = [
|
|
1839
|
-
"hermit-abi",
|
|
1840
2382
|
"libc",
|
|
2383
|
+
"log",
|
|
1841
2384
|
"wasi",
|
|
1842
2385
|
"windows-sys 0.52.0",
|
|
1843
2386
|
]
|
|
1844
2387
|
|
|
1845
2388
|
[[package]]
|
|
1846
2389
|
name = "mutually_exclusive_features"
|
|
1847
|
-
version = "0.0
|
|
2390
|
+
version = "0.1.0"
|
|
1848
2391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
-
checksum = "
|
|
2392
|
+
checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
|
|
1850
2393
|
|
|
1851
2394
|
[[package]]
|
|
1852
2395
|
name = "nom"
|
|
@@ -1927,7 +2470,7 @@ version = "1.16.0"
|
|
|
1927
2470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
2471
|
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1929
2472
|
dependencies = [
|
|
1930
|
-
"hermit-abi",
|
|
2473
|
+
"hermit-abi 0.3.9",
|
|
1931
2474
|
"libc",
|
|
1932
2475
|
]
|
|
1933
2476
|
|
|
@@ -1942,9 +2485,9 @@ dependencies = [
|
|
|
1942
2485
|
|
|
1943
2486
|
[[package]]
|
|
1944
2487
|
name = "once_cell"
|
|
1945
|
-
version = "1.
|
|
2488
|
+
version = "1.20.2"
|
|
1946
2489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
-
checksum = "
|
|
2490
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
1948
2491
|
|
|
1949
2492
|
[[package]]
|
|
1950
2493
|
name = "oorandom"
|
|
@@ -1952,6 +2495,12 @@ version = "11.1.4"
|
|
|
1952
2495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
2496
|
checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
|
|
1954
2497
|
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "openssl-probe"
|
|
2500
|
+
version = "0.1.6"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
2503
|
+
|
|
1955
2504
|
[[package]]
|
|
1956
2505
|
name = "opentelemetry"
|
|
1957
2506
|
version = "0.22.0"
|
|
@@ -1963,7 +2512,7 @@ dependencies = [
|
|
|
1963
2512
|
"js-sys",
|
|
1964
2513
|
"once_cell",
|
|
1965
2514
|
"pin-project-lite",
|
|
1966
|
-
"thiserror",
|
|
2515
|
+
"thiserror 1.0.69",
|
|
1967
2516
|
"urlencoding",
|
|
1968
2517
|
]
|
|
1969
2518
|
|
|
@@ -1978,7 +2527,7 @@ dependencies = [
|
|
|
1978
2527
|
"js-sys",
|
|
1979
2528
|
"once_cell",
|
|
1980
2529
|
"pin-project-lite",
|
|
1981
|
-
"thiserror",
|
|
2530
|
+
"thiserror 1.0.69",
|
|
1982
2531
|
]
|
|
1983
2532
|
|
|
1984
2533
|
[[package]]
|
|
@@ -2013,22 +2562,6 @@ version = "0.14.0"
|
|
|
2013
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
2563
|
checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
|
|
2015
2564
|
|
|
2016
|
-
[[package]]
|
|
2017
|
-
name = "opentelemetry_api"
|
|
2018
|
-
version = "0.20.0"
|
|
2019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "8a81f725323db1b1206ca3da8bb19874bbd3f57c3bcd59471bfb04525b265b9b"
|
|
2021
|
-
dependencies = [
|
|
2022
|
-
"futures-channel",
|
|
2023
|
-
"futures-util",
|
|
2024
|
-
"indexmap 1.9.3",
|
|
2025
|
-
"js-sys",
|
|
2026
|
-
"once_cell",
|
|
2027
|
-
"pin-project-lite",
|
|
2028
|
-
"thiserror",
|
|
2029
|
-
"urlencoding",
|
|
2030
|
-
]
|
|
2031
|
-
|
|
2032
2565
|
[[package]]
|
|
2033
2566
|
name = "opentelemetry_sdk"
|
|
2034
2567
|
version = "0.22.1"
|
|
@@ -2042,8 +2575,8 @@ dependencies = [
|
|
|
2042
2575
|
"glob",
|
|
2043
2576
|
"once_cell",
|
|
2044
2577
|
"opentelemetry 0.22.0",
|
|
2045
|
-
"ordered-float",
|
|
2046
|
-
"thiserror",
|
|
2578
|
+
"ordered-float 4.6.0",
|
|
2579
|
+
"thiserror 1.0.69",
|
|
2047
2580
|
]
|
|
2048
2581
|
|
|
2049
2582
|
[[package]]
|
|
@@ -2060,17 +2593,26 @@ dependencies = [
|
|
|
2060
2593
|
"lazy_static",
|
|
2061
2594
|
"once_cell",
|
|
2062
2595
|
"opentelemetry 0.23.0",
|
|
2063
|
-
"ordered-float",
|
|
2596
|
+
"ordered-float 4.6.0",
|
|
2064
2597
|
"percent-encoding",
|
|
2065
2598
|
"rand",
|
|
2066
|
-
"thiserror",
|
|
2599
|
+
"thiserror 1.0.69",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "ordered-float"
|
|
2604
|
+
version = "2.10.1"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
2607
|
+
dependencies = [
|
|
2608
|
+
"num-traits",
|
|
2067
2609
|
]
|
|
2068
2610
|
|
|
2069
2611
|
[[package]]
|
|
2070
2612
|
name = "ordered-float"
|
|
2071
|
-
version = "4.
|
|
2613
|
+
version = "4.6.0"
|
|
2072
2614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
-
checksum = "
|
|
2615
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2074
2616
|
dependencies = [
|
|
2075
2617
|
"num-traits",
|
|
2076
2618
|
]
|
|
@@ -2097,6 +2639,12 @@ version = "3.5.0"
|
|
|
2097
2639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
2640
|
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
2099
2641
|
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "parking"
|
|
2644
|
+
version = "2.2.1"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2647
|
+
|
|
2100
2648
|
[[package]]
|
|
2101
2649
|
name = "parking_lot"
|
|
2102
2650
|
version = "0.12.3"
|
|
@@ -2115,7 +2663,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
|
2115
2663
|
dependencies = [
|
|
2116
2664
|
"cfg-if",
|
|
2117
2665
|
"libc",
|
|
2118
|
-
"redox_syscall
|
|
2666
|
+
"redox_syscall",
|
|
2119
2667
|
"smallvec",
|
|
2120
2668
|
"windows-targets 0.52.6",
|
|
2121
2669
|
]
|
|
@@ -2128,9 +2676,19 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
|
2128
2676
|
|
|
2129
2677
|
[[package]]
|
|
2130
2678
|
name = "pathdiff"
|
|
2131
|
-
version = "0.2.
|
|
2679
|
+
version = "0.2.3"
|
|
2132
2680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
-
checksum = "
|
|
2681
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
2682
|
+
|
|
2683
|
+
[[package]]
|
|
2684
|
+
name = "pem"
|
|
2685
|
+
version = "3.0.4"
|
|
2686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
+
checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
|
|
2688
|
+
dependencies = [
|
|
2689
|
+
"base64 0.22.1",
|
|
2690
|
+
"serde",
|
|
2691
|
+
]
|
|
2134
2692
|
|
|
2135
2693
|
[[package]]
|
|
2136
2694
|
name = "pem-rfc7468"
|
|
@@ -2149,20 +2707,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
2149
2707
|
|
|
2150
2708
|
[[package]]
|
|
2151
2709
|
name = "pest"
|
|
2152
|
-
version = "2.7.
|
|
2710
|
+
version = "2.7.15"
|
|
2153
2711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
-
checksum = "
|
|
2712
|
+
checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
|
|
2155
2713
|
dependencies = [
|
|
2156
2714
|
"memchr",
|
|
2157
|
-
"thiserror",
|
|
2715
|
+
"thiserror 2.0.11",
|
|
2158
2716
|
"ucd-trie",
|
|
2159
2717
|
]
|
|
2160
2718
|
|
|
2161
2719
|
[[package]]
|
|
2162
2720
|
name = "pest_derive"
|
|
2163
|
-
version = "2.7.
|
|
2721
|
+
version = "2.7.15"
|
|
2164
2722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
-
checksum = "
|
|
2723
|
+
checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
|
|
2166
2724
|
dependencies = [
|
|
2167
2725
|
"pest",
|
|
2168
2726
|
"pest_generator",
|
|
@@ -2170,22 +2728,22 @@ dependencies = [
|
|
|
2170
2728
|
|
|
2171
2729
|
[[package]]
|
|
2172
2730
|
name = "pest_generator"
|
|
2173
|
-
version = "2.7.
|
|
2731
|
+
version = "2.7.15"
|
|
2174
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
-
checksum = "
|
|
2733
|
+
checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
|
|
2176
2734
|
dependencies = [
|
|
2177
2735
|
"pest",
|
|
2178
2736
|
"pest_meta",
|
|
2179
2737
|
"proc-macro2",
|
|
2180
2738
|
"quote",
|
|
2181
|
-
"syn 2.0.
|
|
2739
|
+
"syn 2.0.96",
|
|
2182
2740
|
]
|
|
2183
2741
|
|
|
2184
2742
|
[[package]]
|
|
2185
2743
|
name = "pest_meta"
|
|
2186
|
-
version = "2.7.
|
|
2744
|
+
version = "2.7.15"
|
|
2187
2745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
-
checksum = "
|
|
2746
|
+
checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
|
|
2189
2747
|
dependencies = [
|
|
2190
2748
|
"once_cell",
|
|
2191
2749
|
"pest",
|
|
@@ -2194,29 +2752,29 @@ dependencies = [
|
|
|
2194
2752
|
|
|
2195
2753
|
[[package]]
|
|
2196
2754
|
name = "pin-project"
|
|
2197
|
-
version = "1.1.
|
|
2755
|
+
version = "1.1.8"
|
|
2198
2756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
-
checksum = "
|
|
2757
|
+
checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
|
|
2200
2758
|
dependencies = [
|
|
2201
2759
|
"pin-project-internal",
|
|
2202
2760
|
]
|
|
2203
2761
|
|
|
2204
2762
|
[[package]]
|
|
2205
2763
|
name = "pin-project-internal"
|
|
2206
|
-
version = "1.1.
|
|
2764
|
+
version = "1.1.8"
|
|
2207
2765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
-
checksum = "
|
|
2766
|
+
checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
|
|
2209
2767
|
dependencies = [
|
|
2210
2768
|
"proc-macro2",
|
|
2211
2769
|
"quote",
|
|
2212
|
-
"syn 2.0.
|
|
2770
|
+
"syn 2.0.96",
|
|
2213
2771
|
]
|
|
2214
2772
|
|
|
2215
2773
|
[[package]]
|
|
2216
2774
|
name = "pin-project-lite"
|
|
2217
|
-
version = "0.2.
|
|
2775
|
+
version = "0.2.16"
|
|
2218
2776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
-
checksum = "
|
|
2777
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2220
2778
|
|
|
2221
2779
|
[[package]]
|
|
2222
2780
|
name = "pin-utils"
|
|
@@ -2247,15 +2805,15 @@ dependencies = [
|
|
|
2247
2805
|
|
|
2248
2806
|
[[package]]
|
|
2249
2807
|
name = "pkg-config"
|
|
2250
|
-
version = "0.3.
|
|
2808
|
+
version = "0.3.31"
|
|
2251
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
-
checksum = "
|
|
2810
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
|
2253
2811
|
|
|
2254
2812
|
[[package]]
|
|
2255
2813
|
name = "plotters"
|
|
2256
|
-
version = "0.3.
|
|
2814
|
+
version = "0.3.7"
|
|
2257
2815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
-
checksum = "
|
|
2816
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2259
2817
|
dependencies = [
|
|
2260
2818
|
"num-traits",
|
|
2261
2819
|
"plotters-backend",
|
|
@@ -2266,24 +2824,24 @@ dependencies = [
|
|
|
2266
2824
|
|
|
2267
2825
|
[[package]]
|
|
2268
2826
|
name = "plotters-backend"
|
|
2269
|
-
version = "0.3.
|
|
2827
|
+
version = "0.3.7"
|
|
2270
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
-
checksum = "
|
|
2829
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2272
2830
|
|
|
2273
2831
|
[[package]]
|
|
2274
2832
|
name = "plotters-svg"
|
|
2275
|
-
version = "0.3.
|
|
2833
|
+
version = "0.3.7"
|
|
2276
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
-
checksum = "
|
|
2835
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2278
2836
|
dependencies = [
|
|
2279
2837
|
"plotters-backend",
|
|
2280
2838
|
]
|
|
2281
2839
|
|
|
2282
2840
|
[[package]]
|
|
2283
2841
|
name = "portable-atomic"
|
|
2284
|
-
version = "1.
|
|
2842
|
+
version = "1.10.0"
|
|
2285
2843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
-
checksum = "
|
|
2844
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
2287
2845
|
|
|
2288
2846
|
[[package]]
|
|
2289
2847
|
name = "powerfmt"
|
|
@@ -2293,15 +2851,28 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2293
2851
|
|
|
2294
2852
|
[[package]]
|
|
2295
2853
|
name = "ppv-lite86"
|
|
2296
|
-
version = "0.2.
|
|
2854
|
+
version = "0.2.20"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
2857
|
+
dependencies = [
|
|
2858
|
+
"zerocopy",
|
|
2859
|
+
]
|
|
2860
|
+
|
|
2861
|
+
[[package]]
|
|
2862
|
+
name = "prettyplease"
|
|
2863
|
+
version = "0.2.29"
|
|
2297
2864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
-
checksum = "
|
|
2865
|
+
checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
|
|
2866
|
+
dependencies = [
|
|
2867
|
+
"proc-macro2",
|
|
2868
|
+
"syn 2.0.96",
|
|
2869
|
+
]
|
|
2299
2870
|
|
|
2300
2871
|
[[package]]
|
|
2301
2872
|
name = "proc-macro2"
|
|
2302
|
-
version = "1.0.
|
|
2873
|
+
version = "1.0.93"
|
|
2303
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
-
checksum = "
|
|
2875
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
2305
2876
|
dependencies = [
|
|
2306
2877
|
"unicode-ident",
|
|
2307
2878
|
]
|
|
@@ -2318,7 +2889,21 @@ dependencies = [
|
|
|
2318
2889
|
"memchr",
|
|
2319
2890
|
"parking_lot",
|
|
2320
2891
|
"protobuf",
|
|
2321
|
-
"thiserror",
|
|
2892
|
+
"thiserror 1.0.69",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "prometheus-http-query"
|
|
2897
|
+
version = "0.8.3"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "0fcebfa99f03ae51220778316b37d24981e36322c82c24848f48c5bd0f64cbdb"
|
|
2900
|
+
dependencies = [
|
|
2901
|
+
"enum-as-inner",
|
|
2902
|
+
"mime",
|
|
2903
|
+
"reqwest",
|
|
2904
|
+
"serde",
|
|
2905
|
+
"time",
|
|
2906
|
+
"url",
|
|
2322
2907
|
]
|
|
2323
2908
|
|
|
2324
2909
|
[[package]]
|
|
@@ -2329,9 +2914,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
|
2329
2914
|
|
|
2330
2915
|
[[package]]
|
|
2331
2916
|
name = "pyo3"
|
|
2332
|
-
version = "0.
|
|
2917
|
+
version = "0.22.6"
|
|
2333
2918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
-
checksum = "
|
|
2919
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
2335
2920
|
dependencies = [
|
|
2336
2921
|
"anyhow",
|
|
2337
2922
|
"cfg-if",
|
|
@@ -2339,7 +2924,7 @@ dependencies = [
|
|
|
2339
2924
|
"indoc",
|
|
2340
2925
|
"libc",
|
|
2341
2926
|
"memoffset",
|
|
2342
|
-
"
|
|
2927
|
+
"once_cell",
|
|
2343
2928
|
"portable-atomic",
|
|
2344
2929
|
"pyo3-build-config",
|
|
2345
2930
|
"pyo3-ffi",
|
|
@@ -2348,35 +2933,35 @@ dependencies = [
|
|
|
2348
2933
|
]
|
|
2349
2934
|
|
|
2350
2935
|
[[package]]
|
|
2351
|
-
name = "pyo3-
|
|
2352
|
-
version = "0.
|
|
2936
|
+
name = "pyo3-async-runtimes"
|
|
2937
|
+
version = "0.22.0"
|
|
2353
2938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2939
|
+
checksum = "2529f0be73ffd2be0cc43c013a640796558aa12d7ca0aab5cc14f375b4733031"
|
|
2355
2940
|
dependencies = [
|
|
2356
2941
|
"futures",
|
|
2357
2942
|
"once_cell",
|
|
2358
2943
|
"pin-project-lite",
|
|
2359
2944
|
"pyo3",
|
|
2360
|
-
"pyo3-
|
|
2945
|
+
"pyo3-async-runtimes-macros",
|
|
2361
2946
|
"tokio",
|
|
2362
2947
|
]
|
|
2363
2948
|
|
|
2364
2949
|
[[package]]
|
|
2365
|
-
name = "pyo3-
|
|
2366
|
-
version = "0.
|
|
2950
|
+
name = "pyo3-async-runtimes-macros"
|
|
2951
|
+
version = "0.22.0"
|
|
2367
2952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2368
|
-
checksum = "
|
|
2953
|
+
checksum = "22c26fd8e9fc19f53f0c1e00bf61471de6789f7eb263056f7f944a9cceb5823e"
|
|
2369
2954
|
dependencies = [
|
|
2370
2955
|
"proc-macro2",
|
|
2371
2956
|
"quote",
|
|
2372
|
-
"syn
|
|
2957
|
+
"syn 2.0.96",
|
|
2373
2958
|
]
|
|
2374
2959
|
|
|
2375
2960
|
[[package]]
|
|
2376
2961
|
name = "pyo3-build-config"
|
|
2377
|
-
version = "0.
|
|
2962
|
+
version = "0.22.6"
|
|
2378
2963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
-
checksum = "
|
|
2964
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
2380
2965
|
dependencies = [
|
|
2381
2966
|
"once_cell",
|
|
2382
2967
|
"target-lexicon",
|
|
@@ -2384,9 +2969,9 @@ dependencies = [
|
|
|
2384
2969
|
|
|
2385
2970
|
[[package]]
|
|
2386
2971
|
name = "pyo3-ffi"
|
|
2387
|
-
version = "0.
|
|
2972
|
+
version = "0.22.6"
|
|
2388
2973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
-
checksum = "
|
|
2974
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
2390
2975
|
dependencies = [
|
|
2391
2976
|
"libc",
|
|
2392
2977
|
"pyo3-build-config",
|
|
@@ -2394,39 +2979,39 @@ dependencies = [
|
|
|
2394
2979
|
|
|
2395
2980
|
[[package]]
|
|
2396
2981
|
name = "pyo3-macros"
|
|
2397
|
-
version = "0.
|
|
2982
|
+
version = "0.22.6"
|
|
2398
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
-
checksum = "
|
|
2984
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
2400
2985
|
dependencies = [
|
|
2401
2986
|
"proc-macro2",
|
|
2402
2987
|
"pyo3-macros-backend",
|
|
2403
2988
|
"quote",
|
|
2404
|
-
"syn 2.0.
|
|
2989
|
+
"syn 2.0.96",
|
|
2405
2990
|
]
|
|
2406
2991
|
|
|
2407
2992
|
[[package]]
|
|
2408
2993
|
name = "pyo3-macros-backend"
|
|
2409
|
-
version = "0.
|
|
2994
|
+
version = "0.22.6"
|
|
2410
2995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
-
checksum = "
|
|
2996
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
2412
2997
|
dependencies = [
|
|
2413
2998
|
"heck",
|
|
2414
2999
|
"proc-macro2",
|
|
2415
3000
|
"pyo3-build-config",
|
|
2416
3001
|
"quote",
|
|
2417
|
-
"syn 2.0.
|
|
3002
|
+
"syn 2.0.96",
|
|
2418
3003
|
]
|
|
2419
3004
|
|
|
2420
3005
|
[[package]]
|
|
2421
3006
|
name = "python-auditor"
|
|
2422
|
-
version = "0.
|
|
3007
|
+
version = "0.7.0"
|
|
2423
3008
|
dependencies = [
|
|
2424
3009
|
"anyhow",
|
|
2425
3010
|
"auditor",
|
|
2426
3011
|
"auditor-client",
|
|
2427
3012
|
"chrono",
|
|
2428
3013
|
"pyo3",
|
|
2429
|
-
"pyo3-
|
|
3014
|
+
"pyo3-async-runtimes",
|
|
2430
3015
|
"serde",
|
|
2431
3016
|
"serde_json",
|
|
2432
3017
|
"tokio",
|
|
@@ -2456,55 +3041,61 @@ dependencies = [
|
|
|
2456
3041
|
|
|
2457
3042
|
[[package]]
|
|
2458
3043
|
name = "quinn"
|
|
2459
|
-
version = "0.11.
|
|
3044
|
+
version = "0.11.6"
|
|
2460
3045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
-
checksum = "
|
|
3046
|
+
checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
|
|
2462
3047
|
dependencies = [
|
|
2463
3048
|
"bytes",
|
|
2464
3049
|
"pin-project-lite",
|
|
2465
3050
|
"quinn-proto",
|
|
2466
3051
|
"quinn-udp",
|
|
2467
|
-
"rustc-hash",
|
|
2468
|
-
"rustls 0.23.
|
|
2469
|
-
"
|
|
3052
|
+
"rustc-hash 2.1.0",
|
|
3053
|
+
"rustls 0.23.21",
|
|
3054
|
+
"socket2",
|
|
3055
|
+
"thiserror 2.0.11",
|
|
2470
3056
|
"tokio",
|
|
2471
3057
|
"tracing",
|
|
2472
3058
|
]
|
|
2473
3059
|
|
|
2474
3060
|
[[package]]
|
|
2475
3061
|
name = "quinn-proto"
|
|
2476
|
-
version = "0.11.
|
|
3062
|
+
version = "0.11.9"
|
|
2477
3063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
-
checksum = "
|
|
3064
|
+
checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
|
|
2479
3065
|
dependencies = [
|
|
2480
3066
|
"bytes",
|
|
3067
|
+
"getrandom",
|
|
2481
3068
|
"rand",
|
|
2482
3069
|
"ring",
|
|
2483
|
-
"rustc-hash",
|
|
2484
|
-
"rustls 0.23.
|
|
3070
|
+
"rustc-hash 2.1.0",
|
|
3071
|
+
"rustls 0.23.21",
|
|
3072
|
+
"rustls-pki-types",
|
|
2485
3073
|
"slab",
|
|
2486
|
-
"thiserror",
|
|
3074
|
+
"thiserror 2.0.11",
|
|
2487
3075
|
"tinyvec",
|
|
2488
3076
|
"tracing",
|
|
3077
|
+
"web-time",
|
|
2489
3078
|
]
|
|
2490
3079
|
|
|
2491
3080
|
[[package]]
|
|
2492
3081
|
name = "quinn-udp"
|
|
2493
|
-
version = "0.5.
|
|
3082
|
+
version = "0.5.9"
|
|
2494
3083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
-
checksum = "
|
|
3084
|
+
checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
|
|
2496
3085
|
dependencies = [
|
|
3086
|
+
"cfg_aliases",
|
|
2497
3087
|
"libc",
|
|
2498
3088
|
"once_cell",
|
|
2499
3089
|
"socket2",
|
|
2500
|
-
"
|
|
3090
|
+
"tracing",
|
|
3091
|
+
"windows-sys 0.59.0",
|
|
2501
3092
|
]
|
|
2502
3093
|
|
|
2503
3094
|
[[package]]
|
|
2504
3095
|
name = "quote"
|
|
2505
|
-
version = "1.0.
|
|
3096
|
+
version = "1.0.38"
|
|
2506
3097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
-
checksum = "
|
|
3098
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
2508
3099
|
dependencies = [
|
|
2509
3100
|
"proc-macro2",
|
|
2510
3101
|
]
|
|
@@ -2571,32 +3162,23 @@ dependencies = [
|
|
|
2571
3162
|
|
|
2572
3163
|
[[package]]
|
|
2573
3164
|
name = "redox_syscall"
|
|
2574
|
-
version = "0.
|
|
2575
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
-
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
2577
|
-
dependencies = [
|
|
2578
|
-
"bitflags 1.3.2",
|
|
2579
|
-
]
|
|
2580
|
-
|
|
2581
|
-
[[package]]
|
|
2582
|
-
name = "redox_syscall"
|
|
2583
|
-
version = "0.5.3"
|
|
3165
|
+
version = "0.5.8"
|
|
2584
3166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
-
checksum = "
|
|
3167
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
|
2586
3168
|
dependencies = [
|
|
2587
|
-
"bitflags 2.
|
|
3169
|
+
"bitflags 2.8.0",
|
|
2588
3170
|
]
|
|
2589
3171
|
|
|
2590
3172
|
[[package]]
|
|
2591
3173
|
name = "regex"
|
|
2592
|
-
version = "1.
|
|
3174
|
+
version = "1.11.1"
|
|
2593
3175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
-
checksum = "
|
|
3176
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
2595
3177
|
dependencies = [
|
|
2596
3178
|
"aho-corasick",
|
|
2597
3179
|
"memchr",
|
|
2598
|
-
"regex-automata 0.4.
|
|
2599
|
-
"regex-syntax 0.8.
|
|
3180
|
+
"regex-automata 0.4.9",
|
|
3181
|
+
"regex-syntax 0.8.5",
|
|
2600
3182
|
]
|
|
2601
3183
|
|
|
2602
3184
|
[[package]]
|
|
@@ -2610,13 +3192,13 @@ dependencies = [
|
|
|
2610
3192
|
|
|
2611
3193
|
[[package]]
|
|
2612
3194
|
name = "regex-automata"
|
|
2613
|
-
version = "0.4.
|
|
3195
|
+
version = "0.4.9"
|
|
2614
3196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
-
checksum = "
|
|
3197
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2616
3198
|
dependencies = [
|
|
2617
3199
|
"aho-corasick",
|
|
2618
3200
|
"memchr",
|
|
2619
|
-
"regex-syntax 0.8.
|
|
3201
|
+
"regex-syntax 0.8.5",
|
|
2620
3202
|
]
|
|
2621
3203
|
|
|
2622
3204
|
[[package]]
|
|
@@ -2633,26 +3215,26 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2633
3215
|
|
|
2634
3216
|
[[package]]
|
|
2635
3217
|
name = "regex-syntax"
|
|
2636
|
-
version = "0.8.
|
|
3218
|
+
version = "0.8.5"
|
|
2637
3219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
3220
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2639
3221
|
|
|
2640
3222
|
[[package]]
|
|
2641
3223
|
name = "reqwest"
|
|
2642
|
-
version = "0.12.
|
|
3224
|
+
version = "0.12.12"
|
|
2643
3225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
-
checksum = "
|
|
3226
|
+
checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
|
|
2645
3227
|
dependencies = [
|
|
2646
3228
|
"base64 0.22.1",
|
|
2647
3229
|
"bytes",
|
|
2648
3230
|
"futures-channel",
|
|
2649
3231
|
"futures-core",
|
|
2650
3232
|
"futures-util",
|
|
2651
|
-
"http 1.
|
|
2652
|
-
"http-body",
|
|
3233
|
+
"http 1.2.0",
|
|
3234
|
+
"http-body 1.0.1",
|
|
2653
3235
|
"http-body-util",
|
|
2654
|
-
"hyper",
|
|
2655
|
-
"hyper-rustls",
|
|
3236
|
+
"hyper 1.5.2",
|
|
3237
|
+
"hyper-rustls 0.27.5",
|
|
2656
3238
|
"hyper-util",
|
|
2657
3239
|
"ipnet",
|
|
2658
3240
|
"js-sys",
|
|
@@ -2662,22 +3244,23 @@ dependencies = [
|
|
|
2662
3244
|
"percent-encoding",
|
|
2663
3245
|
"pin-project-lite",
|
|
2664
3246
|
"quinn",
|
|
2665
|
-
"rustls 0.23.
|
|
2666
|
-
"rustls-pemfile 2.
|
|
3247
|
+
"rustls 0.23.21",
|
|
3248
|
+
"rustls-pemfile 2.2.0",
|
|
2667
3249
|
"rustls-pki-types",
|
|
2668
3250
|
"serde",
|
|
2669
3251
|
"serde_json",
|
|
2670
3252
|
"serde_urlencoded",
|
|
2671
3253
|
"sync_wrapper",
|
|
2672
3254
|
"tokio",
|
|
2673
|
-
"tokio-rustls",
|
|
3255
|
+
"tokio-rustls 0.26.1",
|
|
3256
|
+
"tower 0.5.2",
|
|
2674
3257
|
"tower-service",
|
|
2675
3258
|
"url",
|
|
2676
3259
|
"wasm-bindgen",
|
|
2677
3260
|
"wasm-bindgen-futures",
|
|
2678
3261
|
"web-sys",
|
|
2679
|
-
"webpki-roots
|
|
2680
|
-
"
|
|
3262
|
+
"webpki-roots",
|
|
3263
|
+
"windows-registry",
|
|
2681
3264
|
]
|
|
2682
3265
|
|
|
2683
3266
|
[[package]]
|
|
@@ -2708,9 +3291,9 @@ dependencies = [
|
|
|
2708
3291
|
|
|
2709
3292
|
[[package]]
|
|
2710
3293
|
name = "rsa"
|
|
2711
|
-
version = "0.9.
|
|
3294
|
+
version = "0.9.7"
|
|
2712
3295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
-
checksum = "
|
|
3296
|
+
checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
|
|
2714
3297
|
dependencies = [
|
|
2715
3298
|
"const-oid",
|
|
2716
3299
|
"digest",
|
|
@@ -2748,26 +3331,32 @@ version = "1.1.0"
|
|
|
2748
3331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
3332
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2750
3333
|
|
|
3334
|
+
[[package]]
|
|
3335
|
+
name = "rustc-hash"
|
|
3336
|
+
version = "2.1.0"
|
|
3337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3338
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
|
3339
|
+
|
|
2751
3340
|
[[package]]
|
|
2752
3341
|
name = "rustc_version"
|
|
2753
|
-
version = "0.4.
|
|
3342
|
+
version = "0.4.1"
|
|
2754
3343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
-
checksum = "
|
|
3344
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2756
3345
|
dependencies = [
|
|
2757
3346
|
"semver",
|
|
2758
3347
|
]
|
|
2759
3348
|
|
|
2760
3349
|
[[package]]
|
|
2761
3350
|
name = "rustix"
|
|
2762
|
-
version = "0.38.
|
|
3351
|
+
version = "0.38.44"
|
|
2763
3352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
-
checksum = "
|
|
3353
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2765
3354
|
dependencies = [
|
|
2766
|
-
"bitflags 2.
|
|
3355
|
+
"bitflags 2.8.0",
|
|
2767
3356
|
"errno",
|
|
2768
3357
|
"libc",
|
|
2769
3358
|
"linux-raw-sys",
|
|
2770
|
-
"windows-sys 0.
|
|
3359
|
+
"windows-sys 0.59.0",
|
|
2771
3360
|
]
|
|
2772
3361
|
|
|
2773
3362
|
[[package]]
|
|
@@ -2776,6 +3365,7 @@ version = "0.21.12"
|
|
|
2776
3365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
3366
|
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
2778
3367
|
dependencies = [
|
|
3368
|
+
"log",
|
|
2779
3369
|
"ring",
|
|
2780
3370
|
"rustls-webpki 0.101.7",
|
|
2781
3371
|
"sct",
|
|
@@ -2783,18 +3373,32 @@ dependencies = [
|
|
|
2783
3373
|
|
|
2784
3374
|
[[package]]
|
|
2785
3375
|
name = "rustls"
|
|
2786
|
-
version = "0.23.
|
|
3376
|
+
version = "0.23.21"
|
|
2787
3377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
-
checksum = "
|
|
3378
|
+
checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
|
|
2789
3379
|
dependencies = [
|
|
3380
|
+
"aws-lc-rs",
|
|
3381
|
+
"log",
|
|
2790
3382
|
"once_cell",
|
|
2791
3383
|
"ring",
|
|
2792
3384
|
"rustls-pki-types",
|
|
2793
|
-
"rustls-webpki 0.102.
|
|
3385
|
+
"rustls-webpki 0.102.8",
|
|
2794
3386
|
"subtle",
|
|
2795
3387
|
"zeroize",
|
|
2796
3388
|
]
|
|
2797
3389
|
|
|
3390
|
+
[[package]]
|
|
3391
|
+
name = "rustls-native-certs"
|
|
3392
|
+
version = "0.6.3"
|
|
3393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3394
|
+
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
|
|
3395
|
+
dependencies = [
|
|
3396
|
+
"openssl-probe",
|
|
3397
|
+
"rustls-pemfile 1.0.4",
|
|
3398
|
+
"schannel",
|
|
3399
|
+
"security-framework",
|
|
3400
|
+
]
|
|
3401
|
+
|
|
2798
3402
|
[[package]]
|
|
2799
3403
|
name = "rustls-pemfile"
|
|
2800
3404
|
version = "1.0.4"
|
|
@@ -2806,19 +3410,21 @@ dependencies = [
|
|
|
2806
3410
|
|
|
2807
3411
|
[[package]]
|
|
2808
3412
|
name = "rustls-pemfile"
|
|
2809
|
-
version = "2.
|
|
3413
|
+
version = "2.2.0"
|
|
2810
3414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
-
checksum = "
|
|
3415
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2812
3416
|
dependencies = [
|
|
2813
|
-
"base64 0.22.1",
|
|
2814
3417
|
"rustls-pki-types",
|
|
2815
3418
|
]
|
|
2816
3419
|
|
|
2817
3420
|
[[package]]
|
|
2818
3421
|
name = "rustls-pki-types"
|
|
2819
|
-
version = "1.
|
|
3422
|
+
version = "1.11.0"
|
|
2820
3423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
-
checksum = "
|
|
3424
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
3425
|
+
dependencies = [
|
|
3426
|
+
"web-time",
|
|
3427
|
+
]
|
|
2822
3428
|
|
|
2823
3429
|
[[package]]
|
|
2824
3430
|
name = "rustls-webpki"
|
|
@@ -2832,15 +3438,22 @@ dependencies = [
|
|
|
2832
3438
|
|
|
2833
3439
|
[[package]]
|
|
2834
3440
|
name = "rustls-webpki"
|
|
2835
|
-
version = "0.102.
|
|
3441
|
+
version = "0.102.8"
|
|
2836
3442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
-
checksum = "
|
|
3443
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
2838
3444
|
dependencies = [
|
|
3445
|
+
"aws-lc-rs",
|
|
2839
3446
|
"ring",
|
|
2840
3447
|
"rustls-pki-types",
|
|
2841
3448
|
"untrusted",
|
|
2842
3449
|
]
|
|
2843
3450
|
|
|
3451
|
+
[[package]]
|
|
3452
|
+
name = "rustversion"
|
|
3453
|
+
version = "1.0.19"
|
|
3454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3455
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
|
3456
|
+
|
|
2844
3457
|
[[package]]
|
|
2845
3458
|
name = "ryu"
|
|
2846
3459
|
version = "1.0.18"
|
|
@@ -2856,6 +3469,15 @@ dependencies = [
|
|
|
2856
3469
|
"winapi-util",
|
|
2857
3470
|
]
|
|
2858
3471
|
|
|
3472
|
+
[[package]]
|
|
3473
|
+
name = "schannel"
|
|
3474
|
+
version = "0.1.27"
|
|
3475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
3477
|
+
dependencies = [
|
|
3478
|
+
"windows-sys 0.59.0",
|
|
3479
|
+
]
|
|
3480
|
+
|
|
2859
3481
|
[[package]]
|
|
2860
3482
|
name = "scopeguard"
|
|
2861
3483
|
version = "1.2.0"
|
|
@@ -2882,17 +3504,40 @@ dependencies = [
|
|
|
2882
3504
|
"zeroize",
|
|
2883
3505
|
]
|
|
2884
3506
|
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "security-framework"
|
|
3509
|
+
version = "2.11.1"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
3512
|
+
dependencies = [
|
|
3513
|
+
"bitflags 2.8.0",
|
|
3514
|
+
"core-foundation",
|
|
3515
|
+
"core-foundation-sys",
|
|
3516
|
+
"libc",
|
|
3517
|
+
"security-framework-sys",
|
|
3518
|
+
]
|
|
3519
|
+
|
|
3520
|
+
[[package]]
|
|
3521
|
+
name = "security-framework-sys"
|
|
3522
|
+
version = "2.14.0"
|
|
3523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3524
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
3525
|
+
dependencies = [
|
|
3526
|
+
"core-foundation-sys",
|
|
3527
|
+
"libc",
|
|
3528
|
+
]
|
|
3529
|
+
|
|
2885
3530
|
[[package]]
|
|
2886
3531
|
name = "semver"
|
|
2887
|
-
version = "1.0.
|
|
3532
|
+
version = "1.0.25"
|
|
2888
3533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2889
|
-
checksum = "
|
|
3534
|
+
checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
|
|
2890
3535
|
|
|
2891
3536
|
[[package]]
|
|
2892
3537
|
name = "serde"
|
|
2893
|
-
version = "1.0.
|
|
3538
|
+
version = "1.0.217"
|
|
2894
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2895
|
-
checksum = "
|
|
3540
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
|
2896
3541
|
dependencies = [
|
|
2897
3542
|
"serde_derive",
|
|
2898
3543
|
]
|
|
@@ -2908,22 +3553,32 @@ dependencies = [
|
|
|
2908
3553
|
"serde_json",
|
|
2909
3554
|
]
|
|
2910
3555
|
|
|
3556
|
+
[[package]]
|
|
3557
|
+
name = "serde-value"
|
|
3558
|
+
version = "0.7.0"
|
|
3559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
+
checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
|
|
3561
|
+
dependencies = [
|
|
3562
|
+
"ordered-float 2.10.1",
|
|
3563
|
+
"serde",
|
|
3564
|
+
]
|
|
3565
|
+
|
|
2911
3566
|
[[package]]
|
|
2912
3567
|
name = "serde_derive"
|
|
2913
|
-
version = "1.0.
|
|
3568
|
+
version = "1.0.217"
|
|
2914
3569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
-
checksum = "
|
|
3570
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
|
2916
3571
|
dependencies = [
|
|
2917
3572
|
"proc-macro2",
|
|
2918
3573
|
"quote",
|
|
2919
|
-
"syn 2.0.
|
|
3574
|
+
"syn 2.0.96",
|
|
2920
3575
|
]
|
|
2921
3576
|
|
|
2922
3577
|
[[package]]
|
|
2923
3578
|
name = "serde_json"
|
|
2924
|
-
version = "1.0.
|
|
3579
|
+
version = "1.0.137"
|
|
2925
3580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
-
checksum = "
|
|
3581
|
+
checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
|
|
2927
3582
|
dependencies = [
|
|
2928
3583
|
"itoa",
|
|
2929
3584
|
"memchr",
|
|
@@ -2941,7 +3596,7 @@ dependencies = [
|
|
|
2941
3596
|
"futures",
|
|
2942
3597
|
"percent-encoding",
|
|
2943
3598
|
"serde",
|
|
2944
|
-
"thiserror",
|
|
3599
|
+
"thiserror 1.0.69",
|
|
2945
3600
|
]
|
|
2946
3601
|
|
|
2947
3602
|
[[package]]
|
|
@@ -2958,15 +3613,15 @@ dependencies = [
|
|
|
2958
3613
|
|
|
2959
3614
|
[[package]]
|
|
2960
3615
|
name = "serde_with"
|
|
2961
|
-
version = "3.
|
|
3616
|
+
version = "3.12.0"
|
|
2962
3617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
-
checksum = "
|
|
3618
|
+
checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
|
|
2964
3619
|
dependencies = [
|
|
2965
3620
|
"base64 0.22.1",
|
|
2966
3621
|
"chrono",
|
|
2967
3622
|
"hex",
|
|
2968
3623
|
"indexmap 1.9.3",
|
|
2969
|
-
"indexmap 2.
|
|
3624
|
+
"indexmap 2.7.1",
|
|
2970
3625
|
"serde",
|
|
2971
3626
|
"serde_derive",
|
|
2972
3627
|
"serde_json",
|
|
@@ -2976,14 +3631,27 @@ dependencies = [
|
|
|
2976
3631
|
|
|
2977
3632
|
[[package]]
|
|
2978
3633
|
name = "serde_with_macros"
|
|
2979
|
-
version = "3.
|
|
3634
|
+
version = "3.12.0"
|
|
2980
3635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
-
checksum = "
|
|
3636
|
+
checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
|
|
2982
3637
|
dependencies = [
|
|
2983
3638
|
"darling",
|
|
2984
3639
|
"proc-macro2",
|
|
2985
3640
|
"quote",
|
|
2986
|
-
"syn 2.0.
|
|
3641
|
+
"syn 2.0.96",
|
|
3642
|
+
]
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "serde_yaml"
|
|
3646
|
+
version = "0.9.34+deprecated"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3649
|
+
dependencies = [
|
|
3650
|
+
"indexmap 2.7.1",
|
|
3651
|
+
"itoa",
|
|
3652
|
+
"ryu",
|
|
3653
|
+
"serde",
|
|
3654
|
+
"unsafe-libyaml",
|
|
2987
3655
|
]
|
|
2988
3656
|
|
|
2989
3657
|
[[package]]
|
|
@@ -3023,6 +3691,12 @@ version = "1.1.0"
|
|
|
3023
3691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
3692
|
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
3025
3693
|
|
|
3694
|
+
[[package]]
|
|
3695
|
+
name = "shlex"
|
|
3696
|
+
version = "1.3.0"
|
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3699
|
+
|
|
3026
3700
|
[[package]]
|
|
3027
3701
|
name = "signal-hook-registry"
|
|
3028
3702
|
version = "1.4.2"
|
|
@@ -3056,12 +3730,15 @@ name = "smallvec"
|
|
|
3056
3730
|
version = "1.13.2"
|
|
3057
3731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
3732
|
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
3733
|
+
dependencies = [
|
|
3734
|
+
"serde",
|
|
3735
|
+
]
|
|
3059
3736
|
|
|
3060
3737
|
[[package]]
|
|
3061
3738
|
name = "socket2"
|
|
3062
|
-
version = "0.5.
|
|
3739
|
+
version = "0.5.8"
|
|
3063
3740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
-
checksum = "
|
|
3741
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
|
3065
3742
|
dependencies = [
|
|
3066
3743
|
"libc",
|
|
3067
3744
|
"windows-sys 0.52.0",
|
|
@@ -3086,21 +3763,11 @@ dependencies = [
|
|
|
3086
3763
|
"der",
|
|
3087
3764
|
]
|
|
3088
3765
|
|
|
3089
|
-
[[package]]
|
|
3090
|
-
name = "sqlformat"
|
|
3091
|
-
version = "0.2.4"
|
|
3092
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
-
checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f"
|
|
3094
|
-
dependencies = [
|
|
3095
|
-
"nom",
|
|
3096
|
-
"unicode_categories",
|
|
3097
|
-
]
|
|
3098
|
-
|
|
3099
3766
|
[[package]]
|
|
3100
3767
|
name = "sqlx"
|
|
3101
|
-
version = "0.
|
|
3768
|
+
version = "0.8.3"
|
|
3102
3769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3103
|
-
checksum = "
|
|
3770
|
+
checksum = "4410e73b3c0d8442c5f99b425d7a435b5ee0ae4167b3196771dd3f7a01be745f"
|
|
3104
3771
|
dependencies = [
|
|
3105
3772
|
"sqlx-core",
|
|
3106
3773
|
"sqlx-macros",
|
|
@@ -3111,66 +3778,60 @@ dependencies = [
|
|
|
3111
3778
|
|
|
3112
3779
|
[[package]]
|
|
3113
3780
|
name = "sqlx-core"
|
|
3114
|
-
version = "0.
|
|
3781
|
+
version = "0.8.3"
|
|
3115
3782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
-
checksum = "
|
|
3783
|
+
checksum = "6a007b6936676aa9ab40207cde35daab0a04b823be8ae004368c0793b96a61e0"
|
|
3117
3784
|
dependencies = [
|
|
3118
|
-
"ahash 0.8.11",
|
|
3119
|
-
"atoi",
|
|
3120
|
-
"byteorder",
|
|
3121
3785
|
"bytes",
|
|
3122
3786
|
"chrono",
|
|
3123
3787
|
"crc",
|
|
3124
3788
|
"crossbeam-queue",
|
|
3125
3789
|
"either",
|
|
3126
3790
|
"event-listener",
|
|
3127
|
-
"futures-channel",
|
|
3128
3791
|
"futures-core",
|
|
3129
3792
|
"futures-intrusive",
|
|
3130
3793
|
"futures-io",
|
|
3131
3794
|
"futures-util",
|
|
3795
|
+
"hashbrown 0.15.2",
|
|
3132
3796
|
"hashlink",
|
|
3133
|
-
"
|
|
3134
|
-
"indexmap 2.2.6",
|
|
3797
|
+
"indexmap 2.7.1",
|
|
3135
3798
|
"log",
|
|
3136
3799
|
"memchr",
|
|
3137
3800
|
"once_cell",
|
|
3138
|
-
"paste",
|
|
3139
3801
|
"percent-encoding",
|
|
3140
|
-
"rustls 0.21
|
|
3141
|
-
"rustls-pemfile
|
|
3802
|
+
"rustls 0.23.21",
|
|
3803
|
+
"rustls-pemfile 2.2.0",
|
|
3142
3804
|
"serde",
|
|
3143
3805
|
"serde_json",
|
|
3144
3806
|
"sha2",
|
|
3145
3807
|
"smallvec",
|
|
3146
|
-
"
|
|
3147
|
-
"thiserror",
|
|
3808
|
+
"thiserror 2.0.11",
|
|
3148
3809
|
"tokio",
|
|
3149
3810
|
"tokio-stream",
|
|
3150
3811
|
"tracing",
|
|
3151
3812
|
"url",
|
|
3152
3813
|
"uuid",
|
|
3153
|
-
"webpki-roots
|
|
3814
|
+
"webpki-roots",
|
|
3154
3815
|
]
|
|
3155
3816
|
|
|
3156
3817
|
[[package]]
|
|
3157
3818
|
name = "sqlx-macros"
|
|
3158
|
-
version = "0.
|
|
3819
|
+
version = "0.8.3"
|
|
3159
3820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
-
checksum = "
|
|
3821
|
+
checksum = "3112e2ad78643fef903618d78cf0aec1cb3134b019730edb039b69eaf531f310"
|
|
3161
3822
|
dependencies = [
|
|
3162
3823
|
"proc-macro2",
|
|
3163
3824
|
"quote",
|
|
3164
3825
|
"sqlx-core",
|
|
3165
3826
|
"sqlx-macros-core",
|
|
3166
|
-
"syn
|
|
3827
|
+
"syn 2.0.96",
|
|
3167
3828
|
]
|
|
3168
3829
|
|
|
3169
3830
|
[[package]]
|
|
3170
3831
|
name = "sqlx-macros-core"
|
|
3171
|
-
version = "0.
|
|
3832
|
+
version = "0.8.3"
|
|
3172
3833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
-
checksum = "
|
|
3834
|
+
checksum = "4e9f90acc5ab146a99bf5061a7eb4976b573f560bc898ef3bf8435448dd5e7ad"
|
|
3174
3835
|
dependencies = [
|
|
3175
3836
|
"dotenvy",
|
|
3176
3837
|
"either",
|
|
@@ -3186,7 +3847,7 @@ dependencies = [
|
|
|
3186
3847
|
"sqlx-mysql",
|
|
3187
3848
|
"sqlx-postgres",
|
|
3188
3849
|
"sqlx-sqlite",
|
|
3189
|
-
"syn
|
|
3850
|
+
"syn 2.0.96",
|
|
3190
3851
|
"tempfile",
|
|
3191
3852
|
"tokio",
|
|
3192
3853
|
"url",
|
|
@@ -3194,13 +3855,13 @@ dependencies = [
|
|
|
3194
3855
|
|
|
3195
3856
|
[[package]]
|
|
3196
3857
|
name = "sqlx-mysql"
|
|
3197
|
-
version = "0.
|
|
3858
|
+
version = "0.8.3"
|
|
3198
3859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3199
|
-
checksum = "
|
|
3860
|
+
checksum = "4560278f0e00ce64938540546f59f590d60beee33fffbd3b9cd47851e5fff233"
|
|
3200
3861
|
dependencies = [
|
|
3201
3862
|
"atoi",
|
|
3202
|
-
"base64 0.
|
|
3203
|
-
"bitflags 2.
|
|
3863
|
+
"base64 0.22.1",
|
|
3864
|
+
"bitflags 2.8.0",
|
|
3204
3865
|
"byteorder",
|
|
3205
3866
|
"bytes",
|
|
3206
3867
|
"chrono",
|
|
@@ -3230,7 +3891,7 @@ dependencies = [
|
|
|
3230
3891
|
"smallvec",
|
|
3231
3892
|
"sqlx-core",
|
|
3232
3893
|
"stringprep",
|
|
3233
|
-
"thiserror",
|
|
3894
|
+
"thiserror 2.0.11",
|
|
3234
3895
|
"tracing",
|
|
3235
3896
|
"uuid",
|
|
3236
3897
|
"whoami",
|
|
@@ -3238,13 +3899,13 @@ dependencies = [
|
|
|
3238
3899
|
|
|
3239
3900
|
[[package]]
|
|
3240
3901
|
name = "sqlx-postgres"
|
|
3241
|
-
version = "0.
|
|
3902
|
+
version = "0.8.3"
|
|
3242
3903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
-
checksum = "
|
|
3904
|
+
checksum = "c5b98a57f363ed6764d5b3a12bfedf62f07aa16e1856a7ddc2a0bb190a959613"
|
|
3244
3905
|
dependencies = [
|
|
3245
3906
|
"atoi",
|
|
3246
|
-
"base64 0.
|
|
3247
|
-
"bitflags 2.
|
|
3907
|
+
"base64 0.22.1",
|
|
3908
|
+
"bitflags 2.8.0",
|
|
3248
3909
|
"byteorder",
|
|
3249
3910
|
"chrono",
|
|
3250
3911
|
"crc",
|
|
@@ -3252,7 +3913,6 @@ dependencies = [
|
|
|
3252
3913
|
"etcetera",
|
|
3253
3914
|
"futures-channel",
|
|
3254
3915
|
"futures-core",
|
|
3255
|
-
"futures-io",
|
|
3256
3916
|
"futures-util",
|
|
3257
3917
|
"hex",
|
|
3258
3918
|
"hkdf",
|
|
@@ -3270,7 +3930,7 @@ dependencies = [
|
|
|
3270
3930
|
"smallvec",
|
|
3271
3931
|
"sqlx-core",
|
|
3272
3932
|
"stringprep",
|
|
3273
|
-
"thiserror",
|
|
3933
|
+
"thiserror 2.0.11",
|
|
3274
3934
|
"tracing",
|
|
3275
3935
|
"uuid",
|
|
3276
3936
|
"whoami",
|
|
@@ -3278,9 +3938,9 @@ dependencies = [
|
|
|
3278
3938
|
|
|
3279
3939
|
[[package]]
|
|
3280
3940
|
name = "sqlx-sqlite"
|
|
3281
|
-
version = "0.
|
|
3941
|
+
version = "0.8.3"
|
|
3282
3942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
-
checksum = "
|
|
3943
|
+
checksum = "f85ca71d3a5b24e64e1d08dd8fe36c6c95c339a896cc33068148906784620540"
|
|
3284
3944
|
dependencies = [
|
|
3285
3945
|
"atoi",
|
|
3286
3946
|
"chrono",
|
|
@@ -3294,13 +3954,19 @@ dependencies = [
|
|
|
3294
3954
|
"log",
|
|
3295
3955
|
"percent-encoding",
|
|
3296
3956
|
"serde",
|
|
3957
|
+
"serde_urlencoded",
|
|
3297
3958
|
"sqlx-core",
|
|
3298
3959
|
"tracing",
|
|
3299
3960
|
"url",
|
|
3300
|
-
"urlencoding",
|
|
3301
3961
|
"uuid",
|
|
3302
3962
|
]
|
|
3303
3963
|
|
|
3964
|
+
[[package]]
|
|
3965
|
+
name = "stable_deref_trait"
|
|
3966
|
+
version = "1.2.0"
|
|
3967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3969
|
+
|
|
3304
3970
|
[[package]]
|
|
3305
3971
|
name = "stringprep"
|
|
3306
3972
|
version = "0.1.5"
|
|
@@ -3337,9 +4003,9 @@ dependencies = [
|
|
|
3337
4003
|
|
|
3338
4004
|
[[package]]
|
|
3339
4005
|
name = "syn"
|
|
3340
|
-
version = "2.0.
|
|
4006
|
+
version = "2.0.96"
|
|
3341
4007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3342
|
-
checksum = "
|
|
4008
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
|
3343
4009
|
dependencies = [
|
|
3344
4010
|
"proc-macro2",
|
|
3345
4011
|
"quote",
|
|
@@ -3348,46 +4014,82 @@ dependencies = [
|
|
|
3348
4014
|
|
|
3349
4015
|
[[package]]
|
|
3350
4016
|
name = "sync_wrapper"
|
|
3351
|
-
version = "1.0.
|
|
4017
|
+
version = "1.0.2"
|
|
4018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4019
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
4020
|
+
dependencies = [
|
|
4021
|
+
"futures-core",
|
|
4022
|
+
]
|
|
4023
|
+
|
|
4024
|
+
[[package]]
|
|
4025
|
+
name = "synstructure"
|
|
4026
|
+
version = "0.13.1"
|
|
3352
4027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3353
|
-
checksum = "
|
|
4028
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
4029
|
+
dependencies = [
|
|
4030
|
+
"proc-macro2",
|
|
4031
|
+
"quote",
|
|
4032
|
+
"syn 2.0.96",
|
|
4033
|
+
]
|
|
3354
4034
|
|
|
3355
4035
|
[[package]]
|
|
3356
4036
|
name = "target-lexicon"
|
|
3357
|
-
version = "0.12.
|
|
4037
|
+
version = "0.12.16"
|
|
3358
4038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
-
checksum = "
|
|
4039
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3360
4040
|
|
|
3361
4041
|
[[package]]
|
|
3362
4042
|
name = "tempfile"
|
|
3363
|
-
version = "3.
|
|
4043
|
+
version = "3.15.0"
|
|
3364
4044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
-
checksum = "
|
|
4045
|
+
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
|
|
3366
4046
|
dependencies = [
|
|
3367
4047
|
"cfg-if",
|
|
3368
4048
|
"fastrand",
|
|
4049
|
+
"getrandom",
|
|
4050
|
+
"once_cell",
|
|
3369
4051
|
"rustix",
|
|
3370
|
-
"windows-sys 0.
|
|
4052
|
+
"windows-sys 0.59.0",
|
|
3371
4053
|
]
|
|
3372
4054
|
|
|
3373
4055
|
[[package]]
|
|
3374
4056
|
name = "thiserror"
|
|
3375
|
-
version = "1.0.
|
|
4057
|
+
version = "1.0.69"
|
|
3376
4058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
-
checksum = "
|
|
4059
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3378
4060
|
dependencies = [
|
|
3379
|
-
"thiserror-impl",
|
|
4061
|
+
"thiserror-impl 1.0.69",
|
|
4062
|
+
]
|
|
4063
|
+
|
|
4064
|
+
[[package]]
|
|
4065
|
+
name = "thiserror"
|
|
4066
|
+
version = "2.0.11"
|
|
4067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4068
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
|
4069
|
+
dependencies = [
|
|
4070
|
+
"thiserror-impl 2.0.11",
|
|
3380
4071
|
]
|
|
3381
4072
|
|
|
3382
4073
|
[[package]]
|
|
3383
4074
|
name = "thiserror-impl"
|
|
3384
|
-
version = "1.0.
|
|
4075
|
+
version = "1.0.69"
|
|
3385
4076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
4077
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3387
4078
|
dependencies = [
|
|
3388
4079
|
"proc-macro2",
|
|
3389
4080
|
"quote",
|
|
3390
|
-
"syn 2.0.
|
|
4081
|
+
"syn 2.0.96",
|
|
4082
|
+
]
|
|
4083
|
+
|
|
4084
|
+
[[package]]
|
|
4085
|
+
name = "thiserror-impl"
|
|
4086
|
+
version = "2.0.11"
|
|
4087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4088
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
|
4089
|
+
dependencies = [
|
|
4090
|
+
"proc-macro2",
|
|
4091
|
+
"quote",
|
|
4092
|
+
"syn 2.0.96",
|
|
3391
4093
|
]
|
|
3392
4094
|
|
|
3393
4095
|
[[package]]
|
|
@@ -3402,9 +4104,9 @@ dependencies = [
|
|
|
3402
4104
|
|
|
3403
4105
|
[[package]]
|
|
3404
4106
|
name = "time"
|
|
3405
|
-
version = "0.3.
|
|
4107
|
+
version = "0.3.37"
|
|
3406
4108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
-
checksum = "
|
|
4109
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
|
3408
4110
|
dependencies = [
|
|
3409
4111
|
"deranged",
|
|
3410
4112
|
"itoa",
|
|
@@ -3423,14 +4125,24 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
|
3423
4125
|
|
|
3424
4126
|
[[package]]
|
|
3425
4127
|
name = "time-macros"
|
|
3426
|
-
version = "0.2.
|
|
4128
|
+
version = "0.2.19"
|
|
3427
4129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
-
checksum = "
|
|
4130
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
|
3429
4131
|
dependencies = [
|
|
3430
4132
|
"num-conv",
|
|
3431
4133
|
"time-core",
|
|
3432
4134
|
]
|
|
3433
4135
|
|
|
4136
|
+
[[package]]
|
|
4137
|
+
name = "tinystr"
|
|
4138
|
+
version = "0.7.6"
|
|
4139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4140
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
4141
|
+
dependencies = [
|
|
4142
|
+
"displaydoc",
|
|
4143
|
+
"zerovec",
|
|
4144
|
+
]
|
|
4145
|
+
|
|
3434
4146
|
[[package]]
|
|
3435
4147
|
name = "tinytemplate"
|
|
3436
4148
|
version = "1.2.1"
|
|
@@ -3443,9 +4155,9 @@ dependencies = [
|
|
|
3443
4155
|
|
|
3444
4156
|
[[package]]
|
|
3445
4157
|
name = "tinyvec"
|
|
3446
|
-
version = "1.8.
|
|
4158
|
+
version = "1.8.1"
|
|
3447
4159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
|
-
checksum = "
|
|
4160
|
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
|
|
3449
4161
|
dependencies = [
|
|
3450
4162
|
"tinyvec_macros",
|
|
3451
4163
|
]
|
|
@@ -3458,14 +4170,14 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3458
4170
|
|
|
3459
4171
|
[[package]]
|
|
3460
4172
|
name = "tokio"
|
|
3461
|
-
version = "1.
|
|
4173
|
+
version = "1.43.0"
|
|
3462
4174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3463
|
-
checksum = "
|
|
4175
|
+
checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
|
|
3464
4176
|
dependencies = [
|
|
3465
4177
|
"backtrace",
|
|
3466
4178
|
"bytes",
|
|
3467
4179
|
"libc",
|
|
3468
|
-
"mio
|
|
4180
|
+
"mio",
|
|
3469
4181
|
"parking_lot",
|
|
3470
4182
|
"pin-project-lite",
|
|
3471
4183
|
"signal-hook-registry",
|
|
@@ -3474,33 +4186,52 @@ dependencies = [
|
|
|
3474
4186
|
"windows-sys 0.52.0",
|
|
3475
4187
|
]
|
|
3476
4188
|
|
|
4189
|
+
[[package]]
|
|
4190
|
+
name = "tokio-io-timeout"
|
|
4191
|
+
version = "1.2.0"
|
|
4192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4193
|
+
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
|
|
4194
|
+
dependencies = [
|
|
4195
|
+
"pin-project-lite",
|
|
4196
|
+
"tokio",
|
|
4197
|
+
]
|
|
4198
|
+
|
|
3477
4199
|
[[package]]
|
|
3478
4200
|
name = "tokio-macros"
|
|
3479
|
-
version = "2.
|
|
4201
|
+
version = "2.5.0"
|
|
3480
4202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3481
|
-
checksum = "
|
|
4203
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
3482
4204
|
dependencies = [
|
|
3483
4205
|
"proc-macro2",
|
|
3484
4206
|
"quote",
|
|
3485
|
-
"syn 2.0.
|
|
4207
|
+
"syn 2.0.96",
|
|
3486
4208
|
]
|
|
3487
4209
|
|
|
3488
4210
|
[[package]]
|
|
3489
4211
|
name = "tokio-rustls"
|
|
3490
|
-
version = "0.
|
|
4212
|
+
version = "0.24.1"
|
|
3491
4213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
-
checksum = "
|
|
4214
|
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
3493
4215
|
dependencies = [
|
|
3494
|
-
"rustls 0.
|
|
3495
|
-
"
|
|
4216
|
+
"rustls 0.21.12",
|
|
4217
|
+
"tokio",
|
|
4218
|
+
]
|
|
4219
|
+
|
|
4220
|
+
[[package]]
|
|
4221
|
+
name = "tokio-rustls"
|
|
4222
|
+
version = "0.26.1"
|
|
4223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4224
|
+
checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
|
|
4225
|
+
dependencies = [
|
|
4226
|
+
"rustls 0.23.21",
|
|
3496
4227
|
"tokio",
|
|
3497
4228
|
]
|
|
3498
4229
|
|
|
3499
4230
|
[[package]]
|
|
3500
4231
|
name = "tokio-stream"
|
|
3501
|
-
version = "0.1.
|
|
4232
|
+
version = "0.1.17"
|
|
3502
4233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3503
|
-
checksum = "
|
|
4234
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
|
3504
4235
|
dependencies = [
|
|
3505
4236
|
"futures-core",
|
|
3506
4237
|
"pin-project-lite",
|
|
@@ -3509,9 +4240,9 @@ dependencies = [
|
|
|
3509
4240
|
|
|
3510
4241
|
[[package]]
|
|
3511
4242
|
name = "tokio-util"
|
|
3512
|
-
version = "0.7.
|
|
4243
|
+
version = "0.7.13"
|
|
3513
4244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3514
|
-
checksum = "
|
|
4245
|
+
checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
|
|
3515
4246
|
dependencies = [
|
|
3516
4247
|
"bytes",
|
|
3517
4248
|
"futures-core",
|
|
@@ -3540,27 +4271,65 @@ dependencies = [
|
|
|
3540
4271
|
"pin-project",
|
|
3541
4272
|
"pin-project-lite",
|
|
3542
4273
|
"tokio",
|
|
4274
|
+
"tokio-util",
|
|
3543
4275
|
"tower-layer",
|
|
3544
4276
|
"tower-service",
|
|
4277
|
+
"tracing",
|
|
4278
|
+
]
|
|
4279
|
+
|
|
4280
|
+
[[package]]
|
|
4281
|
+
name = "tower"
|
|
4282
|
+
version = "0.5.2"
|
|
4283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4284
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
4285
|
+
dependencies = [
|
|
4286
|
+
"futures-core",
|
|
4287
|
+
"futures-util",
|
|
4288
|
+
"pin-project-lite",
|
|
4289
|
+
"sync_wrapper",
|
|
4290
|
+
"tokio",
|
|
4291
|
+
"tower-layer",
|
|
4292
|
+
"tower-service",
|
|
4293
|
+
]
|
|
4294
|
+
|
|
4295
|
+
[[package]]
|
|
4296
|
+
name = "tower-http"
|
|
4297
|
+
version = "0.4.4"
|
|
4298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4299
|
+
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
|
|
4300
|
+
dependencies = [
|
|
4301
|
+
"base64 0.21.7",
|
|
4302
|
+
"bitflags 2.8.0",
|
|
4303
|
+
"bytes",
|
|
4304
|
+
"futures-core",
|
|
4305
|
+
"futures-util",
|
|
4306
|
+
"http 0.2.12",
|
|
4307
|
+
"http-body 0.4.6",
|
|
4308
|
+
"http-range-header",
|
|
4309
|
+
"mime",
|
|
4310
|
+
"pin-project-lite",
|
|
4311
|
+
"tower-layer",
|
|
4312
|
+
"tower-service",
|
|
4313
|
+
"tracing",
|
|
3545
4314
|
]
|
|
3546
4315
|
|
|
3547
4316
|
[[package]]
|
|
3548
4317
|
name = "tower-layer"
|
|
3549
|
-
version = "0.3.
|
|
4318
|
+
version = "0.3.3"
|
|
3550
4319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3551
|
-
checksum = "
|
|
4320
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3552
4321
|
|
|
3553
4322
|
[[package]]
|
|
3554
4323
|
name = "tower-service"
|
|
3555
|
-
version = "0.3.
|
|
4324
|
+
version = "0.3.3"
|
|
3556
4325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3557
|
-
checksum = "
|
|
4326
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3558
4327
|
|
|
3559
4328
|
[[package]]
|
|
3560
4329
|
name = "tracing"
|
|
3561
|
-
version = "0.1.
|
|
4330
|
+
version = "0.1.41"
|
|
3562
4331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
-
checksum = "
|
|
4332
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3564
4333
|
dependencies = [
|
|
3565
4334
|
"log",
|
|
3566
4335
|
"pin-project-lite",
|
|
@@ -3570,9 +4339,9 @@ dependencies = [
|
|
|
3570
4339
|
|
|
3571
4340
|
[[package]]
|
|
3572
4341
|
name = "tracing-actix-web"
|
|
3573
|
-
version = "0.7.
|
|
4342
|
+
version = "0.7.15"
|
|
3574
4343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
-
checksum = "
|
|
4344
|
+
checksum = "54a9f5c1aca50ebebf074ee665b9f99f2e84906dcf6b993a0d0090edb835166d"
|
|
3576
4345
|
dependencies = [
|
|
3577
4346
|
"actix-web",
|
|
3578
4347
|
"mutually_exclusive_features",
|
|
@@ -3583,20 +4352,20 @@ dependencies = [
|
|
|
3583
4352
|
|
|
3584
4353
|
[[package]]
|
|
3585
4354
|
name = "tracing-attributes"
|
|
3586
|
-
version = "0.1.
|
|
4355
|
+
version = "0.1.28"
|
|
3587
4356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3588
|
-
checksum = "
|
|
4357
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
3589
4358
|
dependencies = [
|
|
3590
4359
|
"proc-macro2",
|
|
3591
4360
|
"quote",
|
|
3592
|
-
"syn 2.0.
|
|
4361
|
+
"syn 2.0.96",
|
|
3593
4362
|
]
|
|
3594
4363
|
|
|
3595
4364
|
[[package]]
|
|
3596
4365
|
name = "tracing-bunyan-formatter"
|
|
3597
|
-
version = "0.3.
|
|
4366
|
+
version = "0.3.10"
|
|
3598
4367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3599
|
-
checksum = "
|
|
4368
|
+
checksum = "2d637245a0d8774bd48df6482e086c59a8b5348a910c3b0579354045a9d82411"
|
|
3600
4369
|
dependencies = [
|
|
3601
4370
|
"ahash 0.8.11",
|
|
3602
4371
|
"gethostname",
|
|
@@ -3612,9 +4381,9 @@ dependencies = [
|
|
|
3612
4381
|
|
|
3613
4382
|
[[package]]
|
|
3614
4383
|
name = "tracing-core"
|
|
3615
|
-
version = "0.1.
|
|
4384
|
+
version = "0.1.33"
|
|
3616
4385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
-
checksum = "
|
|
4386
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
3618
4387
|
dependencies = [
|
|
3619
4388
|
"once_cell",
|
|
3620
4389
|
"valuable",
|
|
@@ -3622,9 +4391,9 @@ dependencies = [
|
|
|
3622
4391
|
|
|
3623
4392
|
[[package]]
|
|
3624
4393
|
name = "tracing-error"
|
|
3625
|
-
version = "0.2.
|
|
4394
|
+
version = "0.2.1"
|
|
3626
4395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3627
|
-
checksum = "
|
|
4396
|
+
checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
|
|
3628
4397
|
dependencies = [
|
|
3629
4398
|
"tracing",
|
|
3630
4399
|
"tracing-subscriber",
|
|
@@ -3654,9 +4423,9 @@ dependencies = [
|
|
|
3654
4423
|
|
|
3655
4424
|
[[package]]
|
|
3656
4425
|
name = "tracing-subscriber"
|
|
3657
|
-
version = "0.3.
|
|
4426
|
+
version = "0.3.19"
|
|
3658
4427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
-
checksum = "
|
|
4428
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
|
3660
4429
|
dependencies = [
|
|
3661
4430
|
"matchers",
|
|
3662
4431
|
"nu-ansi-term",
|
|
@@ -3684,48 +4453,42 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
|
3684
4453
|
|
|
3685
4454
|
[[package]]
|
|
3686
4455
|
name = "ucd-trie"
|
|
3687
|
-
version = "0.1.
|
|
4456
|
+
version = "0.1.7"
|
|
3688
4457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
-
checksum = "
|
|
4458
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
3690
4459
|
|
|
3691
4460
|
[[package]]
|
|
3692
4461
|
name = "unicode-bidi"
|
|
3693
|
-
version = "0.3.
|
|
4462
|
+
version = "0.3.18"
|
|
3694
4463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
-
checksum = "
|
|
4464
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3696
4465
|
|
|
3697
4466
|
[[package]]
|
|
3698
4467
|
name = "unicode-ident"
|
|
3699
|
-
version = "1.0.
|
|
4468
|
+
version = "1.0.15"
|
|
3700
4469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
-
checksum = "
|
|
4470
|
+
checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
|
|
3702
4471
|
|
|
3703
4472
|
[[package]]
|
|
3704
4473
|
name = "unicode-normalization"
|
|
3705
|
-
version = "0.1.
|
|
4474
|
+
version = "0.1.24"
|
|
3706
4475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
-
checksum = "
|
|
4476
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
3708
4477
|
dependencies = [
|
|
3709
4478
|
"tinyvec",
|
|
3710
4479
|
]
|
|
3711
4480
|
|
|
3712
4481
|
[[package]]
|
|
3713
4482
|
name = "unicode-properties"
|
|
3714
|
-
version = "0.1.
|
|
4483
|
+
version = "0.1.3"
|
|
3715
4484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3716
|
-
checksum = "
|
|
4485
|
+
checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
|
|
3717
4486
|
|
|
3718
4487
|
[[package]]
|
|
3719
4488
|
name = "unicode-segmentation"
|
|
3720
|
-
version = "1.
|
|
3721
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
-
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3723
|
-
|
|
3724
|
-
[[package]]
|
|
3725
|
-
name = "unicode_categories"
|
|
3726
|
-
version = "0.1.1"
|
|
4489
|
+
version = "1.12.0"
|
|
3727
4490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
-
checksum = "
|
|
4491
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3729
4492
|
|
|
3730
4493
|
[[package]]
|
|
3731
4494
|
name = "unindent"
|
|
@@ -3733,6 +4496,12 @@ version = "0.2.3"
|
|
|
3733
4496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3734
4497
|
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3735
4498
|
|
|
4499
|
+
[[package]]
|
|
4500
|
+
name = "unsafe-libyaml"
|
|
4501
|
+
version = "0.2.11"
|
|
4502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4503
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
4504
|
+
|
|
3736
4505
|
[[package]]
|
|
3737
4506
|
name = "untrusted"
|
|
3738
4507
|
version = "0.9.0"
|
|
@@ -3741,13 +4510,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3741
4510
|
|
|
3742
4511
|
[[package]]
|
|
3743
4512
|
name = "url"
|
|
3744
|
-
version = "2.5.
|
|
4513
|
+
version = "2.5.4"
|
|
3745
4514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
-
checksum = "
|
|
4515
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3747
4516
|
dependencies = [
|
|
3748
4517
|
"form_urlencoded",
|
|
3749
4518
|
"idna",
|
|
3750
4519
|
"percent-encoding",
|
|
4520
|
+
"serde",
|
|
3751
4521
|
]
|
|
3752
4522
|
|
|
3753
4523
|
[[package]]
|
|
@@ -3756,20 +4526,32 @@ version = "2.1.3"
|
|
|
3756
4526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3757
4527
|
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
3758
4528
|
|
|
4529
|
+
[[package]]
|
|
4530
|
+
name = "utf16_iter"
|
|
4531
|
+
version = "1.0.5"
|
|
4532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4533
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
4534
|
+
|
|
4535
|
+
[[package]]
|
|
4536
|
+
name = "utf8_iter"
|
|
4537
|
+
version = "1.0.4"
|
|
4538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4539
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4540
|
+
|
|
3759
4541
|
[[package]]
|
|
3760
4542
|
name = "uuid"
|
|
3761
|
-
version = "1.
|
|
4543
|
+
version = "1.12.1"
|
|
3762
4544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3763
|
-
checksum = "
|
|
4545
|
+
checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
|
|
3764
4546
|
dependencies = [
|
|
3765
4547
|
"getrandom",
|
|
3766
4548
|
]
|
|
3767
4549
|
|
|
3768
4550
|
[[package]]
|
|
3769
4551
|
name = "valuable"
|
|
3770
|
-
version = "0.1.
|
|
4552
|
+
version = "0.1.1"
|
|
3771
4553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3772
|
-
checksum = "
|
|
4554
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3773
4555
|
|
|
3774
4556
|
[[package]]
|
|
3775
4557
|
name = "vcpkg"
|
|
@@ -3816,46 +4598,48 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
|
|
|
3816
4598
|
|
|
3817
4599
|
[[package]]
|
|
3818
4600
|
name = "wasm-bindgen"
|
|
3819
|
-
version = "0.2.
|
|
4601
|
+
version = "0.2.100"
|
|
3820
4602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
-
checksum = "
|
|
4603
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3822
4604
|
dependencies = [
|
|
3823
4605
|
"cfg-if",
|
|
4606
|
+
"once_cell",
|
|
4607
|
+
"rustversion",
|
|
3824
4608
|
"wasm-bindgen-macro",
|
|
3825
4609
|
]
|
|
3826
4610
|
|
|
3827
4611
|
[[package]]
|
|
3828
4612
|
name = "wasm-bindgen-backend"
|
|
3829
|
-
version = "0.2.
|
|
4613
|
+
version = "0.2.100"
|
|
3830
4614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3831
|
-
checksum = "
|
|
4615
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3832
4616
|
dependencies = [
|
|
3833
4617
|
"bumpalo",
|
|
3834
4618
|
"log",
|
|
3835
|
-
"once_cell",
|
|
3836
4619
|
"proc-macro2",
|
|
3837
4620
|
"quote",
|
|
3838
|
-
"syn 2.0.
|
|
4621
|
+
"syn 2.0.96",
|
|
3839
4622
|
"wasm-bindgen-shared",
|
|
3840
4623
|
]
|
|
3841
4624
|
|
|
3842
4625
|
[[package]]
|
|
3843
4626
|
name = "wasm-bindgen-futures"
|
|
3844
|
-
version = "0.4.
|
|
4627
|
+
version = "0.4.50"
|
|
3845
4628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3846
|
-
checksum = "
|
|
4629
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
3847
4630
|
dependencies = [
|
|
3848
4631
|
"cfg-if",
|
|
3849
4632
|
"js-sys",
|
|
4633
|
+
"once_cell",
|
|
3850
4634
|
"wasm-bindgen",
|
|
3851
4635
|
"web-sys",
|
|
3852
4636
|
]
|
|
3853
4637
|
|
|
3854
4638
|
[[package]]
|
|
3855
4639
|
name = "wasm-bindgen-macro"
|
|
3856
|
-
version = "0.2.
|
|
4640
|
+
version = "0.2.100"
|
|
3857
4641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
4642
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3859
4643
|
dependencies = [
|
|
3860
4644
|
"quote",
|
|
3861
4645
|
"wasm-bindgen-macro-support",
|
|
@@ -3863,55 +4647,74 @@ dependencies = [
|
|
|
3863
4647
|
|
|
3864
4648
|
[[package]]
|
|
3865
4649
|
name = "wasm-bindgen-macro-support"
|
|
3866
|
-
version = "0.2.
|
|
4650
|
+
version = "0.2.100"
|
|
3867
4651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3868
|
-
checksum = "
|
|
4652
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3869
4653
|
dependencies = [
|
|
3870
4654
|
"proc-macro2",
|
|
3871
4655
|
"quote",
|
|
3872
|
-
"syn 2.0.
|
|
4656
|
+
"syn 2.0.96",
|
|
3873
4657
|
"wasm-bindgen-backend",
|
|
3874
4658
|
"wasm-bindgen-shared",
|
|
3875
4659
|
]
|
|
3876
4660
|
|
|
3877
4661
|
[[package]]
|
|
3878
4662
|
name = "wasm-bindgen-shared"
|
|
3879
|
-
version = "0.2.
|
|
4663
|
+
version = "0.2.100"
|
|
3880
4664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
-
checksum = "
|
|
4665
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
4666
|
+
dependencies = [
|
|
4667
|
+
"unicode-ident",
|
|
4668
|
+
]
|
|
3882
4669
|
|
|
3883
4670
|
[[package]]
|
|
3884
4671
|
name = "web-sys"
|
|
3885
|
-
version = "0.3.
|
|
4672
|
+
version = "0.3.77"
|
|
3886
4673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3887
|
-
checksum = "
|
|
4674
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3888
4675
|
dependencies = [
|
|
3889
4676
|
"js-sys",
|
|
3890
4677
|
"wasm-bindgen",
|
|
3891
4678
|
]
|
|
3892
4679
|
|
|
3893
4680
|
[[package]]
|
|
3894
|
-
name = "
|
|
3895
|
-
version = "
|
|
4681
|
+
name = "web-time"
|
|
4682
|
+
version = "1.1.0"
|
|
3896
4683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3897
|
-
checksum = "
|
|
4684
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4685
|
+
dependencies = [
|
|
4686
|
+
"js-sys",
|
|
4687
|
+
"wasm-bindgen",
|
|
4688
|
+
]
|
|
3898
4689
|
|
|
3899
4690
|
[[package]]
|
|
3900
4691
|
name = "webpki-roots"
|
|
3901
|
-
version = "0.26.
|
|
4692
|
+
version = "0.26.7"
|
|
3902
4693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3903
|
-
checksum = "
|
|
4694
|
+
checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
|
|
3904
4695
|
dependencies = [
|
|
3905
4696
|
"rustls-pki-types",
|
|
3906
4697
|
]
|
|
3907
4698
|
|
|
4699
|
+
[[package]]
|
|
4700
|
+
name = "which"
|
|
4701
|
+
version = "4.4.2"
|
|
4702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4703
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
4704
|
+
dependencies = [
|
|
4705
|
+
"either",
|
|
4706
|
+
"home",
|
|
4707
|
+
"once_cell",
|
|
4708
|
+
"rustix",
|
|
4709
|
+
]
|
|
4710
|
+
|
|
3908
4711
|
[[package]]
|
|
3909
4712
|
name = "whoami"
|
|
3910
|
-
version = "1.5.
|
|
4713
|
+
version = "1.5.2"
|
|
3911
4714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3912
|
-
checksum = "
|
|
4715
|
+
checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d"
|
|
3913
4716
|
dependencies = [
|
|
3914
|
-
"redox_syscall
|
|
4717
|
+
"redox_syscall",
|
|
3915
4718
|
"wasite",
|
|
3916
4719
|
]
|
|
3917
4720
|
|
|
@@ -3933,11 +4736,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
3933
4736
|
|
|
3934
4737
|
[[package]]
|
|
3935
4738
|
name = "winapi-util"
|
|
3936
|
-
version = "0.1.
|
|
4739
|
+
version = "0.1.9"
|
|
3937
4740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3938
|
-
checksum = "
|
|
4741
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
3939
4742
|
dependencies = [
|
|
3940
|
-
"windows-sys 0.
|
|
4743
|
+
"windows-sys 0.59.0",
|
|
3941
4744
|
]
|
|
3942
4745
|
|
|
3943
4746
|
[[package]]
|
|
@@ -3955,6 +4758,36 @@ dependencies = [
|
|
|
3955
4758
|
"windows-targets 0.52.6",
|
|
3956
4759
|
]
|
|
3957
4760
|
|
|
4761
|
+
[[package]]
|
|
4762
|
+
name = "windows-registry"
|
|
4763
|
+
version = "0.2.0"
|
|
4764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4765
|
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
|
4766
|
+
dependencies = [
|
|
4767
|
+
"windows-result",
|
|
4768
|
+
"windows-strings",
|
|
4769
|
+
"windows-targets 0.52.6",
|
|
4770
|
+
]
|
|
4771
|
+
|
|
4772
|
+
[[package]]
|
|
4773
|
+
name = "windows-result"
|
|
4774
|
+
version = "0.2.0"
|
|
4775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4776
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
4777
|
+
dependencies = [
|
|
4778
|
+
"windows-targets 0.52.6",
|
|
4779
|
+
]
|
|
4780
|
+
|
|
4781
|
+
[[package]]
|
|
4782
|
+
name = "windows-strings"
|
|
4783
|
+
version = "0.1.0"
|
|
4784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4785
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
4786
|
+
dependencies = [
|
|
4787
|
+
"windows-result",
|
|
4788
|
+
"windows-targets 0.52.6",
|
|
4789
|
+
]
|
|
4790
|
+
|
|
3958
4791
|
[[package]]
|
|
3959
4792
|
name = "windows-sys"
|
|
3960
4793
|
version = "0.48.0"
|
|
@@ -3973,6 +4806,15 @@ dependencies = [
|
|
|
3973
4806
|
"windows-targets 0.52.6",
|
|
3974
4807
|
]
|
|
3975
4808
|
|
|
4809
|
+
[[package]]
|
|
4810
|
+
name = "windows-sys"
|
|
4811
|
+
version = "0.59.0"
|
|
4812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4813
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4814
|
+
dependencies = [
|
|
4815
|
+
"windows-targets 0.52.6",
|
|
4816
|
+
]
|
|
4817
|
+
|
|
3976
4818
|
[[package]]
|
|
3977
4819
|
name = "windows-targets"
|
|
3978
4820
|
version = "0.48.5"
|
|
@@ -4094,30 +4936,20 @@ version = "0.52.6"
|
|
|
4094
4936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4095
4937
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4096
4938
|
|
|
4097
|
-
[[package]]
|
|
4098
|
-
name = "winreg"
|
|
4099
|
-
version = "0.52.0"
|
|
4100
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4101
|
-
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
4102
|
-
dependencies = [
|
|
4103
|
-
"cfg-if",
|
|
4104
|
-
"windows-sys 0.48.0",
|
|
4105
|
-
]
|
|
4106
|
-
|
|
4107
4939
|
[[package]]
|
|
4108
4940
|
name = "wiremock"
|
|
4109
|
-
version = "0.6.
|
|
4941
|
+
version = "0.6.2"
|
|
4110
4942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
-
checksum = "
|
|
4943
|
+
checksum = "7fff469918e7ca034884c7fd8f93fe27bacb7fcb599fd879df6c7b429a29b646"
|
|
4112
4944
|
dependencies = [
|
|
4113
4945
|
"assert-json-diff",
|
|
4114
4946
|
"async-trait",
|
|
4115
|
-
"base64 0.
|
|
4947
|
+
"base64 0.22.1",
|
|
4116
4948
|
"deadpool",
|
|
4117
4949
|
"futures",
|
|
4118
|
-
"http 1.
|
|
4950
|
+
"http 1.2.0",
|
|
4119
4951
|
"http-body-util",
|
|
4120
|
-
"hyper",
|
|
4952
|
+
"hyper 1.5.2",
|
|
4121
4953
|
"hyper-util",
|
|
4122
4954
|
"log",
|
|
4123
4955
|
"once_cell",
|
|
@@ -4128,6 +4960,18 @@ dependencies = [
|
|
|
4128
4960
|
"url",
|
|
4129
4961
|
]
|
|
4130
4962
|
|
|
4963
|
+
[[package]]
|
|
4964
|
+
name = "write16"
|
|
4965
|
+
version = "1.0.0"
|
|
4966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4967
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
4968
|
+
|
|
4969
|
+
[[package]]
|
|
4970
|
+
name = "writeable"
|
|
4971
|
+
version = "0.5.5"
|
|
4972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4973
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
4974
|
+
|
|
4131
4975
|
[[package]]
|
|
4132
4976
|
name = "yaml-rust"
|
|
4133
4977
|
version = "0.4.5"
|
|
@@ -4137,12 +4981,37 @@ dependencies = [
|
|
|
4137
4981
|
"linked-hash-map",
|
|
4138
4982
|
]
|
|
4139
4983
|
|
|
4984
|
+
[[package]]
|
|
4985
|
+
name = "yoke"
|
|
4986
|
+
version = "0.7.5"
|
|
4987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4988
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4989
|
+
dependencies = [
|
|
4990
|
+
"serde",
|
|
4991
|
+
"stable_deref_trait",
|
|
4992
|
+
"yoke-derive",
|
|
4993
|
+
"zerofrom",
|
|
4994
|
+
]
|
|
4995
|
+
|
|
4996
|
+
[[package]]
|
|
4997
|
+
name = "yoke-derive"
|
|
4998
|
+
version = "0.7.5"
|
|
4999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5000
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
5001
|
+
dependencies = [
|
|
5002
|
+
"proc-macro2",
|
|
5003
|
+
"quote",
|
|
5004
|
+
"syn 2.0.96",
|
|
5005
|
+
"synstructure",
|
|
5006
|
+
]
|
|
5007
|
+
|
|
4140
5008
|
[[package]]
|
|
4141
5009
|
name = "zerocopy"
|
|
4142
5010
|
version = "0.7.35"
|
|
4143
5011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4144
5012
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4145
5013
|
dependencies = [
|
|
5014
|
+
"byteorder",
|
|
4146
5015
|
"zerocopy-derive",
|
|
4147
5016
|
]
|
|
4148
5017
|
|
|
@@ -4154,7 +5023,28 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4154
5023
|
dependencies = [
|
|
4155
5024
|
"proc-macro2",
|
|
4156
5025
|
"quote",
|
|
4157
|
-
"syn 2.0.
|
|
5026
|
+
"syn 2.0.96",
|
|
5027
|
+
]
|
|
5028
|
+
|
|
5029
|
+
[[package]]
|
|
5030
|
+
name = "zerofrom"
|
|
5031
|
+
version = "0.1.5"
|
|
5032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5033
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
|
5034
|
+
dependencies = [
|
|
5035
|
+
"zerofrom-derive",
|
|
5036
|
+
]
|
|
5037
|
+
|
|
5038
|
+
[[package]]
|
|
5039
|
+
name = "zerofrom-derive"
|
|
5040
|
+
version = "0.1.5"
|
|
5041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5042
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
|
5043
|
+
dependencies = [
|
|
5044
|
+
"proc-macro2",
|
|
5045
|
+
"quote",
|
|
5046
|
+
"syn 2.0.96",
|
|
5047
|
+
"synstructure",
|
|
4158
5048
|
]
|
|
4159
5049
|
|
|
4160
5050
|
[[package]]
|
|
@@ -4163,6 +5053,28 @@ version = "1.8.1"
|
|
|
4163
5053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4164
5054
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4165
5055
|
|
|
5056
|
+
[[package]]
|
|
5057
|
+
name = "zerovec"
|
|
5058
|
+
version = "0.10.4"
|
|
5059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5060
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
5061
|
+
dependencies = [
|
|
5062
|
+
"yoke",
|
|
5063
|
+
"zerofrom",
|
|
5064
|
+
"zerovec-derive",
|
|
5065
|
+
]
|
|
5066
|
+
|
|
5067
|
+
[[package]]
|
|
5068
|
+
name = "zerovec-derive"
|
|
5069
|
+
version = "0.10.3"
|
|
5070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5071
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
5072
|
+
dependencies = [
|
|
5073
|
+
"proc-macro2",
|
|
5074
|
+
"quote",
|
|
5075
|
+
"syn 2.0.96",
|
|
5076
|
+
]
|
|
5077
|
+
|
|
4166
5078
|
[[package]]
|
|
4167
5079
|
name = "zstd"
|
|
4168
5080
|
version = "0.13.2"
|
|
@@ -4174,18 +5086,18 @@ dependencies = [
|
|
|
4174
5086
|
|
|
4175
5087
|
[[package]]
|
|
4176
5088
|
name = "zstd-safe"
|
|
4177
|
-
version = "7.2.
|
|
5089
|
+
version = "7.2.1"
|
|
4178
5090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4179
|
-
checksum = "
|
|
5091
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
|
4180
5092
|
dependencies = [
|
|
4181
5093
|
"zstd-sys",
|
|
4182
5094
|
]
|
|
4183
5095
|
|
|
4184
5096
|
[[package]]
|
|
4185
5097
|
name = "zstd-sys"
|
|
4186
|
-
version = "2.0.
|
|
5098
|
+
version = "2.0.13+zstd.1.5.6"
|
|
4187
5099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4188
|
-
checksum = "
|
|
5100
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
|
4189
5101
|
dependencies = [
|
|
4190
5102
|
"cc",
|
|
4191
5103
|
"pkg-config",
|