python-auditor 0.4.0__tar.gz → 0.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_auditor-0.4.0 → python_auditor-0.6.1}/Cargo.lock +978 -618
- {python_auditor-0.4.0 → python_auditor-0.6.1}/Cargo.toml +10 -9
- {python_auditor-0.4.0 → python_auditor-0.6.1}/PKG-INFO +1 -1
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +50 -0
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-36fad28130fa066e2182edb3019f5d7e77a635c6116aa9c8a5b358114fb8c57c.json → python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +4 -2
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +17 -0
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +26 -0
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +26 -0
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +52 -0
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-0de2b3aa2731428f5c749d7c166ab8be945eb01c6515fb3db329e45e39fd7d12.json → python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +2 -2
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +20 -0
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +28 -0
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +26 -0
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-b205b9e460541ad09dcd6de4d75df490a88f4b31b3ef45a9ec68047c39081eb5.json → python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +2 -2
- python_auditor-0.6.1/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +52 -0
- python_auditor-0.6.1/local_dependencies/auditor/Cargo.toml +86 -0
- python_auditor-0.6.1/local_dependencies/auditor/configuration/base.yaml +16 -0
- python_auditor-0.6.1/local_dependencies/auditor/configuration/local.yaml +4 -0
- python_auditor-0.6.1/local_dependencies/auditor/src/configuration.rs +172 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/constants.rs +0 -1
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/meta.rs +0 -2
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/record.rs +52 -12
- python_auditor-0.6.1/local_dependencies/auditor/src/lib.rs +25 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/metrics/database.rs +16 -19
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/metrics/mod.rs +3 -3
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/routes/add.rs +23 -144
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +77 -126
- python_auditor-0.6.1/local_dependencies/auditor/src/routes/get.rs +49 -0
- python_auditor-0.6.1/local_dependencies/auditor/src/routes/health_check.rs +16 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -1
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/routes/update.rs +2 -3
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/add.rs +23 -85
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/advanced_queries.rs +51 -78
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/get.rs +2 -2
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/get_one_record.rs +1 -1
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/get_since.rs +4 -4
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/main.rs +0 -1
- python_auditor-0.6.1/local_dependencies/auditor/tests/api/update.rs +80 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.env +1 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +26 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +26 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +12 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +12 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +20 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +12 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +26 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +12 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +12 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/Cargo.toml +59 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/benches/README.md +22 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +260 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/benches/configuration/bench.yaml +4 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/benches/configuration.rs +38 -0
- python_auditor-0.6.1/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +7 -0
- {python_auditor-0.4.0/local_dependencies/auditor → python_auditor-0.6.1/local_dependencies/auditor-client}/src/configuration.rs +1 -1
- python_auditor-0.4.0/local_dependencies/auditor/src/routes/health_check.rs → python_auditor-0.6.1/local_dependencies/auditor-client/src/constants.rs +2 -5
- python_auditor-0.6.1/local_dependencies/auditor-client/src/database.rs +361 -0
- python_auditor-0.4.0/local_dependencies/auditor/src/client/mod.rs → python_auditor-0.6.1/local_dependencies/auditor-client/src/lib.rs +942 -20
- python_auditor-0.6.1/scripts/test_add_update_queued.py +72 -0
- python_auditor-0.6.1/scripts/test_advanced_query_queued.py +231 -0
- python_auditor-0.6.1/scripts/test_bulk_insert_queued.py +74 -0
- python_auditor-0.6.1/scripts/test_components_queued.py +72 -0
- python_auditor-0.6.1/scripts/test_get_since_queued.py +84 -0
- python_auditor-0.6.1/scripts/test_get_single_record_queued.py +63 -0
- python_auditor-0.6.1/scripts/test_meta_queued.py +67 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/blocking_client.rs +5 -5
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/builder.rs +42 -3
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/client.rs +22 -23
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/lib.rs +2 -0
- python_auditor-0.6.1/src/queued_client.rs +275 -0
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-17f4686d8430a057a076f44db1d54859c3fb4f569d162d7095f8734b87ab73b7.json +0 -100
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-3da9ad5248c244c040b47e27cbbca081b156fd5b88bffac65be6bb7ba7aabafe.json +0 -16
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-4e72ae54be447c525721306d208b926c647e3f8149bbd428a97ecbc9f8bceca5.json +0 -102
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-50c6776ca37b9b56b92848573f32d72f44631c9ff702bb468dc7a7f5520a6f48.json +0 -18
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-520d88dec0363b824ca4af064510c2e837819eb7877850ff8077643a5bdbe3e2.json +0 -26
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-622a95c18c6d5bb7d69e5f557e4742a07db9389fb810005f9e8bc142686c7846.json +0 -28
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-6ba76bcc9e877d3b6e353a4b85a1115d4821d4304b91593614ea39597ae29bc1.json +0 -18
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-6c7c9b840bd8bf36dd80484f6c82787423b2304ccff83a98a57ec398c1b46ddb.json +0 -28
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-80a4ffc9c5af2cf8570c4543df24cc9fc9604f98bc4716ae4f99479af245774e.json +0 -17
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-b4e6b925764d8bdabd3aa358f357fc59f0e71b39e06c82e332185cc9ab0b04ed.json +0 -102
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-e6c7e05a8f9aac8353000db25e8ac0bc54f7ff067ab70715b8659cb835f45af6.json +0 -102
- python_auditor-0.4.0/local_dependencies/auditor/.sqlx/query-f9013f697e7b81594947530172248a0400cfbf7e316d0224b4692475a12a7d7f.json +0 -16
- python_auditor-0.4.0/local_dependencies/auditor/Cargo.toml +0 -86
- python_auditor-0.4.0/local_dependencies/auditor/src/lib.rs +0 -540
- python_auditor-0.4.0/local_dependencies/auditor/src/routes/get.rs +0 -80
- python_auditor-0.4.0/local_dependencies/auditor/tests/api/client.rs +0 -653
- python_auditor-0.4.0/local_dependencies/auditor/tests/api/update.rs +0 -111
- {python_auditor-0.4.0 → python_auditor-0.6.1}/.cargo/config.toml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/.readthedocs.yaml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/README.md +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/Makefile +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/api.rst +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/changelog.rst +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/conf.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/examples.rst +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/index.rst +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/docs/make.bat +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/.env +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/build.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/configuration/production.yaml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/component.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/mod.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/score.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/validname.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/error.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/macros.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/main.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/routes/mod.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/startup.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/src/telemetry.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/local_dependencies/auditor/tests/api/helpers.rs +0 -0
- {python_auditor-0.4.0/local_dependencies/auditor → python_auditor-0.6.1/local_dependencies/auditor-client}/configuration/base.yaml +0 -0
- {python_auditor-0.4.0/local_dependencies/auditor → python_auditor-0.6.1/local_dependencies/auditor-client}/configuration/local.yaml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/pyproject.toml +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_add_update.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_add_update_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_advanced_query.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_advanced_query_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_bulk_insert.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_bulk_insert_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_components.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_components_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_eq.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_get_since.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_get_since_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_get_single_record.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_get_single_record_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_meta.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/scripts/test_meta_blocking.py +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/domain/component.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/domain/meta.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/domain/mod.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/domain/record.rs +0 -0
- {python_auditor-0.4.0 → python_auditor-0.6.1}/src/domain/score.rs +0 -0
|
@@ -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.5.0",
|
|
12
12
|
"bytes",
|
|
13
13
|
"futures-core",
|
|
14
14
|
"futures-sink",
|
|
@@ -21,17 +21,17 @@ dependencies = [
|
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
23
23
|
name = "actix-http"
|
|
24
|
-
version = "3.
|
|
24
|
+
version = "3.7.0"
|
|
25
25
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
26
|
+
checksum = "4eb9843d84c775696c37d9a418bbb01b932629d01870722c0f13eb3f95e2536d"
|
|
27
27
|
dependencies = [
|
|
28
28
|
"actix-codec",
|
|
29
29
|
"actix-rt",
|
|
30
30
|
"actix-service",
|
|
31
31
|
"actix-utils",
|
|
32
|
-
"ahash 0.8.
|
|
33
|
-
"base64 0.
|
|
34
|
-
"bitflags 2.
|
|
32
|
+
"ahash 0.8.11",
|
|
33
|
+
"base64 0.22.0",
|
|
34
|
+
"bitflags 2.5.0",
|
|
35
35
|
"brotli",
|
|
36
36
|
"bytes",
|
|
37
37
|
"bytestring",
|
|
@@ -39,8 +39,8 @@ dependencies = [
|
|
|
39
39
|
"encoding_rs",
|
|
40
40
|
"flate2",
|
|
41
41
|
"futures-core",
|
|
42
|
-
"h2",
|
|
43
|
-
"http",
|
|
42
|
+
"h2 0.3.26",
|
|
43
|
+
"http 0.2.12",
|
|
44
44
|
"httparse",
|
|
45
45
|
"httpdate",
|
|
46
46
|
"itoa",
|
|
@@ -49,7 +49,7 @@ dependencies = [
|
|
|
49
49
|
"mime",
|
|
50
50
|
"percent-encoding",
|
|
51
51
|
"pin-project-lite",
|
|
52
|
-
"rand
|
|
52
|
+
"rand",
|
|
53
53
|
"sha1",
|
|
54
54
|
"smallvec",
|
|
55
55
|
"tokio",
|
|
@@ -65,18 +65,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
65
65
|
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
66
66
|
dependencies = [
|
|
67
67
|
"quote",
|
|
68
|
-
"syn 2.0.
|
|
68
|
+
"syn 2.0.60",
|
|
69
69
|
]
|
|
70
70
|
|
|
71
71
|
[[package]]
|
|
72
72
|
name = "actix-router"
|
|
73
|
-
version = "0.5.
|
|
73
|
+
version = "0.5.3"
|
|
74
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
-
checksum = "
|
|
75
|
+
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
|
|
76
76
|
dependencies = [
|
|
77
77
|
"bytestring",
|
|
78
|
-
"
|
|
78
|
+
"cfg-if",
|
|
79
|
+
"http 0.2.12",
|
|
79
80
|
"regex",
|
|
81
|
+
"regex-lite",
|
|
80
82
|
"serde",
|
|
81
83
|
"tracing",
|
|
82
84
|
]
|
|
@@ -131,9 +133,9 @@ dependencies = [
|
|
|
131
133
|
|
|
132
134
|
[[package]]
|
|
133
135
|
name = "actix-web"
|
|
134
|
-
version = "4.
|
|
136
|
+
version = "4.8.0"
|
|
135
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
-
checksum = "
|
|
138
|
+
checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff"
|
|
137
139
|
dependencies = [
|
|
138
140
|
"actix-codec",
|
|
139
141
|
"actix-http",
|
|
@@ -144,7 +146,7 @@ dependencies = [
|
|
|
144
146
|
"actix-service",
|
|
145
147
|
"actix-utils",
|
|
146
148
|
"actix-web-codegen",
|
|
147
|
-
"ahash 0.8.
|
|
149
|
+
"ahash 0.8.11",
|
|
148
150
|
"bytes",
|
|
149
151
|
"bytestring",
|
|
150
152
|
"cfg-if",
|
|
@@ -160,6 +162,7 @@ dependencies = [
|
|
|
160
162
|
"once_cell",
|
|
161
163
|
"pin-project-lite",
|
|
162
164
|
"regex",
|
|
165
|
+
"regex-lite",
|
|
163
166
|
"serde",
|
|
164
167
|
"serde_json",
|
|
165
168
|
"serde_urlencoded",
|
|
@@ -171,27 +174,27 @@ dependencies = [
|
|
|
171
174
|
|
|
172
175
|
[[package]]
|
|
173
176
|
name = "actix-web-codegen"
|
|
174
|
-
version = "4.
|
|
177
|
+
version = "4.3.0"
|
|
175
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
179
|
+
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
|
|
177
180
|
dependencies = [
|
|
178
181
|
"actix-router",
|
|
179
182
|
"proc-macro2",
|
|
180
183
|
"quote",
|
|
181
|
-
"syn 2.0.
|
|
184
|
+
"syn 2.0.60",
|
|
182
185
|
]
|
|
183
186
|
|
|
184
187
|
[[package]]
|
|
185
188
|
name = "actix-web-opentelemetry"
|
|
186
|
-
version = "0.
|
|
189
|
+
version = "0.17.0"
|
|
187
190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
-
checksum = "
|
|
191
|
+
checksum = "d6e0327e7b731c61b77fb54b278477aa3ebd09752bde38d169863167636e2d48"
|
|
189
192
|
dependencies = [
|
|
190
193
|
"actix-http",
|
|
191
194
|
"actix-web",
|
|
192
195
|
"futures-util",
|
|
193
|
-
"opentelemetry",
|
|
194
|
-
"opentelemetry-prometheus",
|
|
196
|
+
"opentelemetry 0.22.0",
|
|
197
|
+
"opentelemetry-prometheus 0.15.0",
|
|
195
198
|
"opentelemetry-semantic-conventions",
|
|
196
199
|
"prometheus",
|
|
197
200
|
"serde",
|
|
@@ -214,23 +217,23 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
214
217
|
|
|
215
218
|
[[package]]
|
|
216
219
|
name = "ahash"
|
|
217
|
-
version = "0.7.
|
|
220
|
+
version = "0.7.8"
|
|
218
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
222
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
220
223
|
dependencies = [
|
|
221
|
-
"getrandom
|
|
224
|
+
"getrandom",
|
|
222
225
|
"once_cell",
|
|
223
226
|
"version_check",
|
|
224
227
|
]
|
|
225
228
|
|
|
226
229
|
[[package]]
|
|
227
230
|
name = "ahash"
|
|
228
|
-
version = "0.8.
|
|
231
|
+
version = "0.8.11"
|
|
229
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
-
checksum = "
|
|
233
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
231
234
|
dependencies = [
|
|
232
235
|
"cfg-if",
|
|
233
|
-
"getrandom
|
|
236
|
+
"getrandom",
|
|
234
237
|
"once_cell",
|
|
235
238
|
"version_check",
|
|
236
239
|
"zerocopy",
|
|
@@ -238,9 +241,9 @@ dependencies = [
|
|
|
238
241
|
|
|
239
242
|
[[package]]
|
|
240
243
|
name = "aho-corasick"
|
|
241
|
-
version = "1.1.
|
|
244
|
+
version = "1.1.3"
|
|
242
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "
|
|
246
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
244
247
|
dependencies = [
|
|
245
248
|
"memchr",
|
|
246
249
|
]
|
|
@@ -262,9 +265,9 @@ dependencies = [
|
|
|
262
265
|
|
|
263
266
|
[[package]]
|
|
264
267
|
name = "allocator-api2"
|
|
265
|
-
version = "0.2.
|
|
268
|
+
version = "0.2.18"
|
|
266
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
-
checksum = "
|
|
270
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
268
271
|
|
|
269
272
|
[[package]]
|
|
270
273
|
name = "android-tzdata"
|
|
@@ -281,11 +284,23 @@ dependencies = [
|
|
|
281
284
|
"libc",
|
|
282
285
|
]
|
|
283
286
|
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "anes"
|
|
289
|
+
version = "0.1.6"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "anstyle"
|
|
295
|
+
version = "1.0.6"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
|
|
298
|
+
|
|
284
299
|
[[package]]
|
|
285
300
|
name = "anyhow"
|
|
286
|
-
version = "1.0.
|
|
301
|
+
version = "1.0.86"
|
|
287
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "
|
|
303
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
289
304
|
|
|
290
305
|
[[package]]
|
|
291
306
|
name = "assert-json-diff"
|
|
@@ -297,26 +312,15 @@ dependencies = [
|
|
|
297
312
|
"serde_json",
|
|
298
313
|
]
|
|
299
314
|
|
|
300
|
-
[[package]]
|
|
301
|
-
name = "async-channel"
|
|
302
|
-
version = "1.9.0"
|
|
303
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
-
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
|
305
|
-
dependencies = [
|
|
306
|
-
"concurrent-queue",
|
|
307
|
-
"event-listener",
|
|
308
|
-
"futures-core",
|
|
309
|
-
]
|
|
310
|
-
|
|
311
315
|
[[package]]
|
|
312
316
|
name = "async-trait"
|
|
313
|
-
version = "0.1.
|
|
317
|
+
version = "0.1.80"
|
|
314
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
-
checksum = "
|
|
319
|
+
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
|
|
316
320
|
dependencies = [
|
|
317
321
|
"proc-macro2",
|
|
318
322
|
"quote",
|
|
319
|
-
"syn 2.0.
|
|
323
|
+
"syn 2.0.60",
|
|
320
324
|
]
|
|
321
325
|
|
|
322
326
|
[[package]]
|
|
@@ -328,19 +332,9 @@ dependencies = [
|
|
|
328
332
|
"num-traits",
|
|
329
333
|
]
|
|
330
334
|
|
|
331
|
-
[[package]]
|
|
332
|
-
name = "atomic-write-file"
|
|
333
|
-
version = "0.1.2"
|
|
334
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "edcdbedc2236483ab103a53415653d6b4442ea6141baf1ffa85df29635e88436"
|
|
336
|
-
dependencies = [
|
|
337
|
-
"nix",
|
|
338
|
-
"rand 0.8.5",
|
|
339
|
-
]
|
|
340
|
-
|
|
341
335
|
[[package]]
|
|
342
336
|
name = "auditor"
|
|
343
|
-
version = "0.
|
|
337
|
+
version = "0.6.1"
|
|
344
338
|
dependencies = [
|
|
345
339
|
"actix-web",
|
|
346
340
|
"actix-web-opentelemetry",
|
|
@@ -349,24 +343,24 @@ dependencies = [
|
|
|
349
343
|
"claims",
|
|
350
344
|
"config",
|
|
351
345
|
"fake",
|
|
352
|
-
"itertools",
|
|
346
|
+
"itertools 0.13.0",
|
|
353
347
|
"num-traits",
|
|
354
348
|
"once_cell",
|
|
355
|
-
"opentelemetry",
|
|
356
|
-
"opentelemetry-prometheus",
|
|
349
|
+
"opentelemetry 0.23.0",
|
|
350
|
+
"opentelemetry-prometheus 0.16.0",
|
|
357
351
|
"opentelemetry_api",
|
|
358
|
-
"opentelemetry_sdk",
|
|
352
|
+
"opentelemetry_sdk 0.23.0",
|
|
359
353
|
"prometheus",
|
|
360
354
|
"quickcheck",
|
|
361
355
|
"quickcheck_macros",
|
|
362
|
-
"rand
|
|
356
|
+
"rand",
|
|
363
357
|
"regex",
|
|
364
358
|
"reqwest",
|
|
365
359
|
"secrecy",
|
|
366
360
|
"serde",
|
|
367
361
|
"serde-aux",
|
|
368
362
|
"serde_json",
|
|
369
|
-
"serde_qs
|
|
363
|
+
"serde_qs",
|
|
370
364
|
"serde_with",
|
|
371
365
|
"sqlx",
|
|
372
366
|
"thiserror",
|
|
@@ -382,21 +376,53 @@ dependencies = [
|
|
|
382
376
|
"wiremock",
|
|
383
377
|
]
|
|
384
378
|
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "auditor-client"
|
|
381
|
+
version = "0.6.1"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"anyhow",
|
|
384
|
+
"auditor",
|
|
385
|
+
"bincode",
|
|
386
|
+
"chrono",
|
|
387
|
+
"claims",
|
|
388
|
+
"config",
|
|
389
|
+
"criterion",
|
|
390
|
+
"criterion-macro",
|
|
391
|
+
"fake",
|
|
392
|
+
"itertools 0.13.0",
|
|
393
|
+
"once_cell",
|
|
394
|
+
"rand",
|
|
395
|
+
"rand_distr",
|
|
396
|
+
"reqwest",
|
|
397
|
+
"serde",
|
|
398
|
+
"serde-aux",
|
|
399
|
+
"serde_qs",
|
|
400
|
+
"sqlx",
|
|
401
|
+
"thiserror",
|
|
402
|
+
"tokio",
|
|
403
|
+
"tracing",
|
|
404
|
+
"tracing-subscriber",
|
|
405
|
+
"urlencoding",
|
|
406
|
+
"uuid",
|
|
407
|
+
"wiremock",
|
|
408
|
+
]
|
|
409
|
+
|
|
385
410
|
[[package]]
|
|
386
411
|
name = "auditor-priority-plugin"
|
|
387
|
-
version = "0.
|
|
412
|
+
version = "0.6.1"
|
|
388
413
|
dependencies = [
|
|
389
414
|
"actix-web",
|
|
390
415
|
"actix-web-opentelemetry",
|
|
391
416
|
"anyhow",
|
|
392
417
|
"auditor",
|
|
418
|
+
"auditor-client",
|
|
393
419
|
"chrono",
|
|
394
420
|
"config",
|
|
395
421
|
"num-traits",
|
|
396
|
-
"opentelemetry",
|
|
397
|
-
"opentelemetry-prometheus",
|
|
422
|
+
"opentelemetry 0.23.0",
|
|
423
|
+
"opentelemetry-prometheus 0.16.0",
|
|
398
424
|
"opentelemetry_api",
|
|
399
|
-
"opentelemetry_sdk",
|
|
425
|
+
"opentelemetry_sdk 0.23.0",
|
|
400
426
|
"prometheus",
|
|
401
427
|
"serde",
|
|
402
428
|
"serde-aux",
|
|
@@ -411,16 +437,17 @@ dependencies = [
|
|
|
411
437
|
|
|
412
438
|
[[package]]
|
|
413
439
|
name = "auditor-slurm-collector"
|
|
414
|
-
version = "0.
|
|
440
|
+
version = "0.6.1"
|
|
415
441
|
dependencies = [
|
|
416
442
|
"anyhow",
|
|
417
443
|
"auditor",
|
|
444
|
+
"auditor-client",
|
|
418
445
|
"bincode",
|
|
419
446
|
"chrono",
|
|
420
447
|
"color-eyre",
|
|
421
448
|
"config",
|
|
422
449
|
"fake",
|
|
423
|
-
"itertools",
|
|
450
|
+
"itertools 0.13.0",
|
|
424
451
|
"once_cell",
|
|
425
452
|
"regex",
|
|
426
453
|
"serde",
|
|
@@ -436,10 +463,11 @@ dependencies = [
|
|
|
436
463
|
|
|
437
464
|
[[package]]
|
|
438
465
|
name = "auditor-slurm-epilog-collector"
|
|
439
|
-
version = "0.
|
|
466
|
+
version = "0.6.1"
|
|
440
467
|
dependencies = [
|
|
441
468
|
"anyhow",
|
|
442
469
|
"auditor",
|
|
470
|
+
"auditor-client",
|
|
443
471
|
"chrono",
|
|
444
472
|
"config",
|
|
445
473
|
"regex",
|
|
@@ -453,15 +481,15 @@ dependencies = [
|
|
|
453
481
|
|
|
454
482
|
[[package]]
|
|
455
483
|
name = "autocfg"
|
|
456
|
-
version = "1.
|
|
484
|
+
version = "1.2.0"
|
|
457
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
-
checksum = "
|
|
486
|
+
checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
|
|
459
487
|
|
|
460
488
|
[[package]]
|
|
461
489
|
name = "backtrace"
|
|
462
|
-
version = "0.3.
|
|
490
|
+
version = "0.3.71"
|
|
463
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
-
checksum = "
|
|
492
|
+
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
|
465
493
|
dependencies = [
|
|
466
494
|
"addr2line",
|
|
467
495
|
"cc",
|
|
@@ -484,6 +512,12 @@ version = "0.21.7"
|
|
|
484
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
513
|
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
486
514
|
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "base64"
|
|
517
|
+
version = "0.22.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
|
|
520
|
+
|
|
487
521
|
[[package]]
|
|
488
522
|
name = "base64ct"
|
|
489
523
|
version = "1.6.0"
|
|
@@ -507,9 +541,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
507
541
|
|
|
508
542
|
[[package]]
|
|
509
543
|
name = "bitflags"
|
|
510
|
-
version = "2.
|
|
544
|
+
version = "2.5.0"
|
|
511
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
-
checksum = "
|
|
546
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
513
547
|
dependencies = [
|
|
514
548
|
"serde",
|
|
515
549
|
]
|
|
@@ -525,9 +559,9 @@ dependencies = [
|
|
|
525
559
|
|
|
526
560
|
[[package]]
|
|
527
561
|
name = "brotli"
|
|
528
|
-
version = "
|
|
562
|
+
version = "6.0.0"
|
|
529
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
-
checksum = "
|
|
564
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
|
531
565
|
dependencies = [
|
|
532
566
|
"alloc-no-stdlib",
|
|
533
567
|
"alloc-stdlib",
|
|
@@ -536,9 +570,9 @@ dependencies = [
|
|
|
536
570
|
|
|
537
571
|
[[package]]
|
|
538
572
|
name = "brotli-decompressor"
|
|
539
|
-
version = "
|
|
573
|
+
version = "4.0.1"
|
|
540
574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
575
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
|
542
576
|
dependencies = [
|
|
543
577
|
"alloc-no-stdlib",
|
|
544
578
|
"alloc-stdlib",
|
|
@@ -546,9 +580,9 @@ dependencies = [
|
|
|
546
580
|
|
|
547
581
|
[[package]]
|
|
548
582
|
name = "bumpalo"
|
|
549
|
-
version = "3.
|
|
583
|
+
version = "3.16.0"
|
|
550
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
-
checksum = "
|
|
585
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
552
586
|
|
|
553
587
|
[[package]]
|
|
554
588
|
name = "byteorder"
|
|
@@ -558,9 +592,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
558
592
|
|
|
559
593
|
[[package]]
|
|
560
594
|
name = "bytes"
|
|
561
|
-
version = "1.
|
|
595
|
+
version = "1.6.0"
|
|
562
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
-
checksum = "
|
|
597
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
564
598
|
|
|
565
599
|
[[package]]
|
|
566
600
|
name = "bytestring"
|
|
@@ -571,14 +605,21 @@ dependencies = [
|
|
|
571
605
|
"bytes",
|
|
572
606
|
]
|
|
573
607
|
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "cast"
|
|
610
|
+
version = "0.3.0"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
613
|
+
|
|
574
614
|
[[package]]
|
|
575
615
|
name = "cc"
|
|
576
|
-
version = "1.0.
|
|
616
|
+
version = "1.0.95"
|
|
577
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "
|
|
618
|
+
checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
|
|
579
619
|
dependencies = [
|
|
580
620
|
"jobserver",
|
|
581
621
|
"libc",
|
|
622
|
+
"once_cell",
|
|
582
623
|
]
|
|
583
624
|
|
|
584
625
|
[[package]]
|
|
@@ -589,17 +630,42 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
589
630
|
|
|
590
631
|
[[package]]
|
|
591
632
|
name = "chrono"
|
|
592
|
-
version = "0.4.
|
|
633
|
+
version = "0.4.38"
|
|
593
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
-
checksum = "
|
|
635
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
595
636
|
dependencies = [
|
|
596
637
|
"android-tzdata",
|
|
597
638
|
"iana-time-zone",
|
|
598
|
-
"js-sys",
|
|
599
639
|
"num-traits",
|
|
600
640
|
"serde",
|
|
601
|
-
"
|
|
602
|
-
|
|
641
|
+
"windows-targets 0.52.5",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "ciborium"
|
|
646
|
+
version = "0.2.2"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"ciborium-io",
|
|
651
|
+
"ciborium-ll",
|
|
652
|
+
"serde",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "ciborium-io"
|
|
657
|
+
version = "0.2.2"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "ciborium-ll"
|
|
663
|
+
version = "0.2.2"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"ciborium-io",
|
|
668
|
+
"half",
|
|
603
669
|
]
|
|
604
670
|
|
|
605
671
|
[[package]]
|
|
@@ -611,11 +677,36 @@ dependencies = [
|
|
|
611
677
|
"autocfg",
|
|
612
678
|
]
|
|
613
679
|
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "clap"
|
|
682
|
+
version = "4.5.4"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"clap_builder",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "clap_builder"
|
|
691
|
+
version = "4.5.2"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"anstyle",
|
|
696
|
+
"clap_lex",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "clap_lex"
|
|
701
|
+
version = "0.7.0"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
|
704
|
+
|
|
614
705
|
[[package]]
|
|
615
706
|
name = "color-eyre"
|
|
616
|
-
version = "0.6.
|
|
707
|
+
version = "0.6.3"
|
|
617
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
709
|
+
checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
|
|
619
710
|
dependencies = [
|
|
620
711
|
"backtrace",
|
|
621
712
|
"color-spantrace",
|
|
@@ -638,15 +729,6 @@ dependencies = [
|
|
|
638
729
|
"tracing-error",
|
|
639
730
|
]
|
|
640
731
|
|
|
641
|
-
[[package]]
|
|
642
|
-
name = "concurrent-queue"
|
|
643
|
-
version = "2.4.0"
|
|
644
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
-
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
|
|
646
|
-
dependencies = [
|
|
647
|
-
"crossbeam-utils",
|
|
648
|
-
]
|
|
649
|
-
|
|
650
732
|
[[package]]
|
|
651
733
|
name = "config"
|
|
652
734
|
version = "0.13.4"
|
|
@@ -689,16 +771,6 @@ dependencies = [
|
|
|
689
771
|
"version_check",
|
|
690
772
|
]
|
|
691
773
|
|
|
692
|
-
[[package]]
|
|
693
|
-
name = "core-foundation"
|
|
694
|
-
version = "0.9.4"
|
|
695
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
697
|
-
dependencies = [
|
|
698
|
-
"core-foundation-sys",
|
|
699
|
-
"libc",
|
|
700
|
-
]
|
|
701
|
-
|
|
702
774
|
[[package]]
|
|
703
775
|
name = "core-foundation-sys"
|
|
704
776
|
version = "0.8.6"
|
|
@@ -716,9 +788,9 @@ dependencies = [
|
|
|
716
788
|
|
|
717
789
|
[[package]]
|
|
718
790
|
name = "crc"
|
|
719
|
-
version = "3.
|
|
791
|
+
version = "3.2.1"
|
|
720
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
793
|
+
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
|
|
722
794
|
dependencies = [
|
|
723
795
|
"crc-catalog",
|
|
724
796
|
]
|
|
@@ -731,18 +803,76 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
|
731
803
|
|
|
732
804
|
[[package]]
|
|
733
805
|
name = "crc32fast"
|
|
734
|
-
version = "1.
|
|
806
|
+
version = "1.4.0"
|
|
735
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
-
checksum = "
|
|
808
|
+
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
|
|
737
809
|
dependencies = [
|
|
738
810
|
"cfg-if",
|
|
739
811
|
]
|
|
740
812
|
|
|
741
813
|
[[package]]
|
|
742
|
-
name = "
|
|
743
|
-
version = "0.5.
|
|
814
|
+
name = "criterion"
|
|
815
|
+
version = "0.5.1"
|
|
744
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
-
checksum = "
|
|
817
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"anes",
|
|
820
|
+
"cast",
|
|
821
|
+
"ciborium",
|
|
822
|
+
"clap",
|
|
823
|
+
"criterion-plot",
|
|
824
|
+
"futures",
|
|
825
|
+
"is-terminal",
|
|
826
|
+
"itertools 0.10.5",
|
|
827
|
+
"num-traits",
|
|
828
|
+
"once_cell",
|
|
829
|
+
"oorandom",
|
|
830
|
+
"plotters",
|
|
831
|
+
"rayon",
|
|
832
|
+
"regex",
|
|
833
|
+
"serde",
|
|
834
|
+
"serde_derive",
|
|
835
|
+
"serde_json",
|
|
836
|
+
"tinytemplate",
|
|
837
|
+
"tokio",
|
|
838
|
+
"walkdir",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "criterion-macro"
|
|
843
|
+
version = "0.4.0"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "288a8f36b28a19d7dbd572c76006c0a0eba1f3bf912a254dda211c6f665e7ffc"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"proc-macro2",
|
|
848
|
+
"quote",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "criterion-plot"
|
|
853
|
+
version = "0.5.0"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"cast",
|
|
858
|
+
"itertools 0.10.5",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "crossbeam-deque"
|
|
863
|
+
version = "0.8.5"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"crossbeam-epoch",
|
|
868
|
+
"crossbeam-utils",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "crossbeam-epoch"
|
|
873
|
+
version = "0.9.18"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
746
876
|
dependencies = [
|
|
747
877
|
"crossbeam-utils",
|
|
748
878
|
]
|
|
@@ -762,6 +892,12 @@ version = "0.8.19"
|
|
|
762
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
893
|
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
764
894
|
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "crunchy"
|
|
897
|
+
version = "0.2.2"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
900
|
+
|
|
765
901
|
[[package]]
|
|
766
902
|
name = "crypto-common"
|
|
767
903
|
version = "0.1.6"
|
|
@@ -774,9 +910,9 @@ dependencies = [
|
|
|
774
910
|
|
|
775
911
|
[[package]]
|
|
776
912
|
name = "darling"
|
|
777
|
-
version = "0.20.
|
|
913
|
+
version = "0.20.8"
|
|
778
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
-
checksum = "
|
|
915
|
+
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
|
|
780
916
|
dependencies = [
|
|
781
917
|
"darling_core",
|
|
782
918
|
"darling_macro",
|
|
@@ -784,39 +920,38 @@ dependencies = [
|
|
|
784
920
|
|
|
785
921
|
[[package]]
|
|
786
922
|
name = "darling_core"
|
|
787
|
-
version = "0.20.
|
|
923
|
+
version = "0.20.8"
|
|
788
924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
925
|
+
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
|
|
790
926
|
dependencies = [
|
|
791
927
|
"fnv",
|
|
792
928
|
"ident_case",
|
|
793
929
|
"proc-macro2",
|
|
794
930
|
"quote",
|
|
795
931
|
"strsim",
|
|
796
|
-
"syn 2.0.
|
|
932
|
+
"syn 2.0.60",
|
|
797
933
|
]
|
|
798
934
|
|
|
799
935
|
[[package]]
|
|
800
936
|
name = "darling_macro"
|
|
801
|
-
version = "0.20.
|
|
937
|
+
version = "0.20.8"
|
|
802
938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
939
|
+
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
|
|
804
940
|
dependencies = [
|
|
805
941
|
"darling_core",
|
|
806
942
|
"quote",
|
|
807
|
-
"syn 2.0.
|
|
943
|
+
"syn 2.0.60",
|
|
808
944
|
]
|
|
809
945
|
|
|
810
946
|
[[package]]
|
|
811
947
|
name = "deadpool"
|
|
812
|
-
version = "0.
|
|
948
|
+
version = "0.10.0"
|
|
813
949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
-
checksum = "
|
|
950
|
+
checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
|
|
815
951
|
dependencies = [
|
|
816
952
|
"async-trait",
|
|
817
953
|
"deadpool-runtime",
|
|
818
954
|
"num_cpus",
|
|
819
|
-
"retain_mut",
|
|
820
955
|
"tokio",
|
|
821
956
|
]
|
|
822
957
|
|
|
@@ -828,9 +963,9 @@ checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
|
|
|
828
963
|
|
|
829
964
|
[[package]]
|
|
830
965
|
name = "der"
|
|
831
|
-
version = "0.7.
|
|
966
|
+
version = "0.7.9"
|
|
832
967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
-
checksum = "
|
|
968
|
+
checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
|
|
834
969
|
dependencies = [
|
|
835
970
|
"const-oid",
|
|
836
971
|
"pem-rfc7468",
|
|
@@ -862,9 +997,9 @@ dependencies = [
|
|
|
862
997
|
|
|
863
998
|
[[package]]
|
|
864
999
|
name = "deunicode"
|
|
865
|
-
version = "1.4.
|
|
1000
|
+
version = "1.4.4"
|
|
866
1001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
-
checksum = "
|
|
1002
|
+
checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
|
|
868
1003
|
|
|
869
1004
|
[[package]]
|
|
870
1005
|
name = "digest"
|
|
@@ -892,18 +1027,18 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
|
|
892
1027
|
|
|
893
1028
|
[[package]]
|
|
894
1029
|
name = "either"
|
|
895
|
-
version = "1.
|
|
1030
|
+
version = "1.11.0"
|
|
896
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
-
checksum = "
|
|
1032
|
+
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
|
|
898
1033
|
dependencies = [
|
|
899
1034
|
"serde",
|
|
900
1035
|
]
|
|
901
1036
|
|
|
902
1037
|
[[package]]
|
|
903
1038
|
name = "encoding_rs"
|
|
904
|
-
version = "0.8.
|
|
1039
|
+
version = "0.8.34"
|
|
905
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
-
checksum = "
|
|
1041
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
907
1042
|
dependencies = [
|
|
908
1043
|
"cfg-if",
|
|
909
1044
|
]
|
|
@@ -953,9 +1088,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
|
953
1088
|
|
|
954
1089
|
[[package]]
|
|
955
1090
|
name = "eyre"
|
|
956
|
-
version = "0.6.
|
|
1091
|
+
version = "0.6.12"
|
|
957
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
-
checksum = "
|
|
1093
|
+
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
|
|
959
1094
|
dependencies = [
|
|
960
1095
|
"indenter",
|
|
961
1096
|
"once_cell",
|
|
@@ -969,23 +1104,14 @@ checksum = "1c25829bde82205da46e1823b2259db6273379f626fc211f126f65654a2669be"
|
|
|
969
1104
|
dependencies = [
|
|
970
1105
|
"chrono",
|
|
971
1106
|
"deunicode",
|
|
972
|
-
"rand
|
|
973
|
-
]
|
|
974
|
-
|
|
975
|
-
[[package]]
|
|
976
|
-
name = "fastrand"
|
|
977
|
-
version = "1.9.0"
|
|
978
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
-
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
980
|
-
dependencies = [
|
|
981
|
-
"instant",
|
|
1107
|
+
"rand",
|
|
982
1108
|
]
|
|
983
1109
|
|
|
984
1110
|
[[package]]
|
|
985
1111
|
name = "fastrand"
|
|
986
|
-
version = "2.0.
|
|
1112
|
+
version = "2.0.2"
|
|
987
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
-
checksum = "
|
|
1114
|
+
checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
|
|
989
1115
|
|
|
990
1116
|
[[package]]
|
|
991
1117
|
name = "finl_unicode"
|
|
@@ -1088,21 +1214,6 @@ version = "0.3.30"
|
|
|
1088
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
1215
|
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
1090
1216
|
|
|
1091
|
-
[[package]]
|
|
1092
|
-
name = "futures-lite"
|
|
1093
|
-
version = "1.13.0"
|
|
1094
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
-
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
|
|
1096
|
-
dependencies = [
|
|
1097
|
-
"fastrand 1.9.0",
|
|
1098
|
-
"futures-core",
|
|
1099
|
-
"futures-io",
|
|
1100
|
-
"memchr",
|
|
1101
|
-
"parking",
|
|
1102
|
-
"pin-project-lite",
|
|
1103
|
-
"waker-fn",
|
|
1104
|
-
]
|
|
1105
|
-
|
|
1106
1217
|
[[package]]
|
|
1107
1218
|
name = "futures-macro"
|
|
1108
1219
|
version = "0.3.30"
|
|
@@ -1111,7 +1222,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
|
1111
1222
|
dependencies = [
|
|
1112
1223
|
"proc-macro2",
|
|
1113
1224
|
"quote",
|
|
1114
|
-
"syn 2.0.
|
|
1225
|
+
"syn 2.0.60",
|
|
1115
1226
|
]
|
|
1116
1227
|
|
|
1117
1228
|
[[package]]
|
|
@@ -1126,12 +1237,6 @@ version = "0.3.30"
|
|
|
1126
1237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
1238
|
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
1128
1239
|
|
|
1129
|
-
[[package]]
|
|
1130
|
-
name = "futures-timer"
|
|
1131
|
-
version = "3.0.2"
|
|
1132
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
1134
|
-
|
|
1135
1240
|
[[package]]
|
|
1136
1241
|
name = "futures-util"
|
|
1137
1242
|
version = "0.3.30"
|
|
@@ -1172,24 +1277,13 @@ dependencies = [
|
|
|
1172
1277
|
|
|
1173
1278
|
[[package]]
|
|
1174
1279
|
name = "getrandom"
|
|
1175
|
-
version = "0.
|
|
1280
|
+
version = "0.2.14"
|
|
1176
1281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
-
checksum = "
|
|
1282
|
+
checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
|
|
1178
1283
|
dependencies = [
|
|
1179
1284
|
"cfg-if",
|
|
1180
1285
|
"libc",
|
|
1181
|
-
"wasi
|
|
1182
|
-
]
|
|
1183
|
-
|
|
1184
|
-
[[package]]
|
|
1185
|
-
name = "getrandom"
|
|
1186
|
-
version = "0.2.12"
|
|
1187
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
-
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
|
1189
|
-
dependencies = [
|
|
1190
|
-
"cfg-if",
|
|
1191
|
-
"libc",
|
|
1192
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1286
|
+
"wasi",
|
|
1193
1287
|
]
|
|
1194
1288
|
|
|
1195
1289
|
[[package]]
|
|
@@ -1206,30 +1300,59 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
1206
1300
|
|
|
1207
1301
|
[[package]]
|
|
1208
1302
|
name = "h2"
|
|
1209
|
-
version = "0.3.
|
|
1303
|
+
version = "0.3.26"
|
|
1210
1304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
-
checksum = "
|
|
1305
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1212
1306
|
dependencies = [
|
|
1213
1307
|
"bytes",
|
|
1214
1308
|
"fnv",
|
|
1215
1309
|
"futures-core",
|
|
1216
1310
|
"futures-sink",
|
|
1217
1311
|
"futures-util",
|
|
1218
|
-
"http",
|
|
1219
|
-
"indexmap 2.2.
|
|
1312
|
+
"http 0.2.12",
|
|
1313
|
+
"indexmap 2.2.6",
|
|
1220
1314
|
"slab",
|
|
1221
1315
|
"tokio",
|
|
1222
1316
|
"tokio-util",
|
|
1223
1317
|
"tracing",
|
|
1224
1318
|
]
|
|
1225
1319
|
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "h2"
|
|
1322
|
+
version = "0.4.4"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"bytes",
|
|
1327
|
+
"fnv",
|
|
1328
|
+
"futures-core",
|
|
1329
|
+
"futures-sink",
|
|
1330
|
+
"futures-util",
|
|
1331
|
+
"http 1.1.0",
|
|
1332
|
+
"indexmap 2.2.6",
|
|
1333
|
+
"slab",
|
|
1334
|
+
"tokio",
|
|
1335
|
+
"tokio-util",
|
|
1336
|
+
"tracing",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "half"
|
|
1341
|
+
version = "2.4.1"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"cfg-if",
|
|
1346
|
+
"crunchy",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1226
1349
|
[[package]]
|
|
1227
1350
|
name = "hashbrown"
|
|
1228
1351
|
version = "0.12.3"
|
|
1229
1352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
1353
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1231
1354
|
dependencies = [
|
|
1232
|
-
"ahash 0.7.
|
|
1355
|
+
"ahash 0.7.8",
|
|
1233
1356
|
]
|
|
1234
1357
|
|
|
1235
1358
|
[[package]]
|
|
@@ -1238,7 +1361,7 @@ version = "0.14.3"
|
|
|
1238
1361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
1362
|
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|
1240
1363
|
dependencies = [
|
|
1241
|
-
"ahash 0.8.
|
|
1364
|
+
"ahash 0.8.11",
|
|
1242
1365
|
"allocator-api2",
|
|
1243
1366
|
]
|
|
1244
1367
|
|
|
@@ -1262,9 +1385,9 @@ dependencies = [
|
|
|
1262
1385
|
|
|
1263
1386
|
[[package]]
|
|
1264
1387
|
name = "hermit-abi"
|
|
1265
|
-
version = "0.3.
|
|
1388
|
+
version = "0.3.9"
|
|
1266
1389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
-
checksum = "
|
|
1390
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1268
1391
|
|
|
1269
1392
|
[[package]]
|
|
1270
1393
|
name = "hex"
|
|
@@ -1301,9 +1424,20 @@ dependencies = [
|
|
|
1301
1424
|
|
|
1302
1425
|
[[package]]
|
|
1303
1426
|
name = "http"
|
|
1304
|
-
version = "0.2.
|
|
1427
|
+
version = "0.2.12"
|
|
1305
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
-
checksum = "
|
|
1429
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"bytes",
|
|
1432
|
+
"fnv",
|
|
1433
|
+
"itoa",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "http"
|
|
1438
|
+
version = "1.1.0"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
1307
1441
|
dependencies = [
|
|
1308
1442
|
"bytes",
|
|
1309
1443
|
"fnv",
|
|
@@ -1312,34 +1446,25 @@ dependencies = [
|
|
|
1312
1446
|
|
|
1313
1447
|
[[package]]
|
|
1314
1448
|
name = "http-body"
|
|
1315
|
-
version = "0.
|
|
1449
|
+
version = "1.0.0"
|
|
1316
1450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
-
checksum = "
|
|
1451
|
+
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
1318
1452
|
dependencies = [
|
|
1319
1453
|
"bytes",
|
|
1320
|
-
"http",
|
|
1321
|
-
"pin-project-lite",
|
|
1454
|
+
"http 1.1.0",
|
|
1322
1455
|
]
|
|
1323
1456
|
|
|
1324
1457
|
[[package]]
|
|
1325
|
-
name = "http-
|
|
1326
|
-
version = "
|
|
1458
|
+
name = "http-body-util"
|
|
1459
|
+
version = "0.1.1"
|
|
1327
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
-
checksum = "
|
|
1461
|
+
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
|
|
1329
1462
|
dependencies = [
|
|
1330
|
-
"
|
|
1331
|
-
"
|
|
1332
|
-
"
|
|
1333
|
-
"
|
|
1334
|
-
"http",
|
|
1335
|
-
"infer",
|
|
1463
|
+
"bytes",
|
|
1464
|
+
"futures-core",
|
|
1465
|
+
"http 1.1.0",
|
|
1466
|
+
"http-body",
|
|
1336
1467
|
"pin-project-lite",
|
|
1337
|
-
"rand 0.7.3",
|
|
1338
|
-
"serde",
|
|
1339
|
-
"serde_json",
|
|
1340
|
-
"serde_qs 0.8.5",
|
|
1341
|
-
"serde_urlencoded",
|
|
1342
|
-
"url",
|
|
1343
1468
|
]
|
|
1344
1469
|
|
|
1345
1470
|
[[package]]
|
|
@@ -1356,47 +1481,68 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1356
1481
|
|
|
1357
1482
|
[[package]]
|
|
1358
1483
|
name = "hyper"
|
|
1359
|
-
version = "
|
|
1484
|
+
version = "1.3.1"
|
|
1360
1485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
-
checksum = "
|
|
1486
|
+
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
|
|
1362
1487
|
dependencies = [
|
|
1363
1488
|
"bytes",
|
|
1364
1489
|
"futures-channel",
|
|
1365
|
-
"futures-core",
|
|
1366
1490
|
"futures-util",
|
|
1367
|
-
"h2",
|
|
1368
|
-
"http",
|
|
1491
|
+
"h2 0.4.4",
|
|
1492
|
+
"http 1.1.0",
|
|
1369
1493
|
"http-body",
|
|
1370
1494
|
"httparse",
|
|
1371
1495
|
"httpdate",
|
|
1372
1496
|
"itoa",
|
|
1373
1497
|
"pin-project-lite",
|
|
1374
|
-
"
|
|
1498
|
+
"smallvec",
|
|
1375
1499
|
"tokio",
|
|
1376
|
-
"tower-service",
|
|
1377
|
-
"tracing",
|
|
1378
1500
|
"want",
|
|
1379
1501
|
]
|
|
1380
1502
|
|
|
1381
1503
|
[[package]]
|
|
1382
1504
|
name = "hyper-rustls"
|
|
1383
|
-
version = "0.
|
|
1505
|
+
version = "0.27.2"
|
|
1384
1506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
-
checksum = "
|
|
1507
|
+
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
|
|
1386
1508
|
dependencies = [
|
|
1387
1509
|
"futures-util",
|
|
1388
|
-
"http",
|
|
1510
|
+
"http 1.1.0",
|
|
1389
1511
|
"hyper",
|
|
1390
|
-
"
|
|
1512
|
+
"hyper-util",
|
|
1513
|
+
"rustls 0.23.10",
|
|
1514
|
+
"rustls-pki-types",
|
|
1391
1515
|
"tokio",
|
|
1392
1516
|
"tokio-rustls",
|
|
1517
|
+
"tower-service",
|
|
1518
|
+
"webpki-roots 0.26.1",
|
|
1519
|
+
]
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "hyper-util"
|
|
1523
|
+
version = "0.1.3"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"bytes",
|
|
1528
|
+
"futures-channel",
|
|
1529
|
+
"futures-util",
|
|
1530
|
+
"http 1.1.0",
|
|
1531
|
+
"http-body",
|
|
1532
|
+
"hyper",
|
|
1533
|
+
"pin-project-lite",
|
|
1534
|
+
"socket2",
|
|
1535
|
+
"tokio",
|
|
1536
|
+
"tower",
|
|
1537
|
+
"tower-service",
|
|
1538
|
+
"tracing",
|
|
1393
1539
|
]
|
|
1394
1540
|
|
|
1395
1541
|
[[package]]
|
|
1396
1542
|
name = "iana-time-zone"
|
|
1397
|
-
version = "0.1.
|
|
1543
|
+
version = "0.1.60"
|
|
1398
1544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "
|
|
1545
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
1400
1546
|
dependencies = [
|
|
1401
1547
|
"android_system_properties",
|
|
1402
1548
|
"core-foundation-sys",
|
|
@@ -1450,9 +1596,9 @@ dependencies = [
|
|
|
1450
1596
|
|
|
1451
1597
|
[[package]]
|
|
1452
1598
|
name = "indexmap"
|
|
1453
|
-
version = "2.2.
|
|
1599
|
+
version = "2.2.6"
|
|
1454
1600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
-
checksum = "
|
|
1601
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1456
1602
|
dependencies = [
|
|
1457
1603
|
"equivalent",
|
|
1458
1604
|
"hashbrown 0.14.3",
|
|
@@ -1461,30 +1607,35 @@ dependencies = [
|
|
|
1461
1607
|
|
|
1462
1608
|
[[package]]
|
|
1463
1609
|
name = "indoc"
|
|
1464
|
-
version = "
|
|
1610
|
+
version = "2.0.5"
|
|
1465
1611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
-
checksum = "
|
|
1612
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1467
1613
|
|
|
1468
1614
|
[[package]]
|
|
1469
|
-
name = "
|
|
1470
|
-
version = "
|
|
1615
|
+
name = "ipnet"
|
|
1616
|
+
version = "2.9.0"
|
|
1471
1617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
-
checksum = "
|
|
1618
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1473
1619
|
|
|
1474
1620
|
[[package]]
|
|
1475
|
-
name = "
|
|
1476
|
-
version = "0.
|
|
1621
|
+
name = "is-terminal"
|
|
1622
|
+
version = "0.4.12"
|
|
1477
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
-
checksum = "
|
|
1624
|
+
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
|
|
1479
1625
|
dependencies = [
|
|
1480
|
-
"
|
|
1626
|
+
"hermit-abi",
|
|
1627
|
+
"libc",
|
|
1628
|
+
"windows-sys 0.52.0",
|
|
1481
1629
|
]
|
|
1482
1630
|
|
|
1483
1631
|
[[package]]
|
|
1484
|
-
name = "
|
|
1485
|
-
version = "
|
|
1632
|
+
name = "itertools"
|
|
1633
|
+
version = "0.10.5"
|
|
1486
1634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
-
checksum = "
|
|
1635
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"either",
|
|
1638
|
+
]
|
|
1488
1639
|
|
|
1489
1640
|
[[package]]
|
|
1490
1641
|
name = "itertools"
|
|
@@ -1495,26 +1646,35 @@ dependencies = [
|
|
|
1495
1646
|
"either",
|
|
1496
1647
|
]
|
|
1497
1648
|
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "itertools"
|
|
1651
|
+
version = "0.13.0"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1654
|
+
dependencies = [
|
|
1655
|
+
"either",
|
|
1656
|
+
]
|
|
1657
|
+
|
|
1498
1658
|
[[package]]
|
|
1499
1659
|
name = "itoa"
|
|
1500
|
-
version = "1.0.
|
|
1660
|
+
version = "1.0.11"
|
|
1501
1661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
1662
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1503
1663
|
|
|
1504
1664
|
[[package]]
|
|
1505
1665
|
name = "jobserver"
|
|
1506
|
-
version = "0.1.
|
|
1666
|
+
version = "0.1.31"
|
|
1507
1667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
-
checksum = "
|
|
1668
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1509
1669
|
dependencies = [
|
|
1510
1670
|
"libc",
|
|
1511
1671
|
]
|
|
1512
1672
|
|
|
1513
1673
|
[[package]]
|
|
1514
1674
|
name = "js-sys"
|
|
1515
|
-
version = "0.3.
|
|
1675
|
+
version = "0.3.69"
|
|
1516
1676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
-
checksum = "
|
|
1677
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1518
1678
|
dependencies = [
|
|
1519
1679
|
"wasm-bindgen",
|
|
1520
1680
|
]
|
|
@@ -1547,9 +1707,9 @@ dependencies = [
|
|
|
1547
1707
|
|
|
1548
1708
|
[[package]]
|
|
1549
1709
|
name = "libc"
|
|
1550
|
-
version = "0.2.
|
|
1710
|
+
version = "0.2.153"
|
|
1551
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
-
checksum = "
|
|
1712
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
1553
1713
|
|
|
1554
1714
|
[[package]]
|
|
1555
1715
|
name = "libm"
|
|
@@ -1609,9 +1769,9 @@ dependencies = [
|
|
|
1609
1769
|
|
|
1610
1770
|
[[package]]
|
|
1611
1771
|
name = "log"
|
|
1612
|
-
version = "0.4.
|
|
1772
|
+
version = "0.4.21"
|
|
1613
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
-
checksum = "
|
|
1774
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
1615
1775
|
|
|
1616
1776
|
[[package]]
|
|
1617
1777
|
name = "matchers"
|
|
@@ -1634,15 +1794,15 @@ dependencies = [
|
|
|
1634
1794
|
|
|
1635
1795
|
[[package]]
|
|
1636
1796
|
name = "memchr"
|
|
1637
|
-
version = "2.7.
|
|
1797
|
+
version = "2.7.2"
|
|
1638
1798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
-
checksum = "
|
|
1799
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
|
1640
1800
|
|
|
1641
1801
|
[[package]]
|
|
1642
1802
|
name = "memoffset"
|
|
1643
|
-
version = "0.9.
|
|
1803
|
+
version = "0.9.1"
|
|
1644
1804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1805
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1646
1806
|
dependencies = [
|
|
1647
1807
|
"autocfg",
|
|
1648
1808
|
]
|
|
@@ -1661,22 +1821,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1661
1821
|
|
|
1662
1822
|
[[package]]
|
|
1663
1823
|
name = "miniz_oxide"
|
|
1664
|
-
version = "0.7.
|
|
1824
|
+
version = "0.7.2"
|
|
1665
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1826
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
|
1667
1827
|
dependencies = [
|
|
1668
1828
|
"adler",
|
|
1669
1829
|
]
|
|
1670
1830
|
|
|
1671
1831
|
[[package]]
|
|
1672
1832
|
name = "mio"
|
|
1673
|
-
version = "0.8.
|
|
1833
|
+
version = "0.8.11"
|
|
1674
1834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
-
checksum = "
|
|
1835
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1676
1836
|
dependencies = [
|
|
1677
1837
|
"libc",
|
|
1678
1838
|
"log",
|
|
1679
|
-
"wasi
|
|
1839
|
+
"wasi",
|
|
1680
1840
|
"windows-sys 0.48.0",
|
|
1681
1841
|
]
|
|
1682
1842
|
|
|
@@ -1686,17 +1846,6 @@ version = "0.0.3"
|
|
|
1686
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
1847
|
checksum = "6d02c0b00610773bb7fc61d85e13d86c7858cbdf00e1a120bfc41bc055dbaa0e"
|
|
1688
1848
|
|
|
1689
|
-
[[package]]
|
|
1690
|
-
name = "nix"
|
|
1691
|
-
version = "0.27.1"
|
|
1692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
-
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
|
|
1694
|
-
dependencies = [
|
|
1695
|
-
"bitflags 2.4.2",
|
|
1696
|
-
"cfg-if",
|
|
1697
|
-
"libc",
|
|
1698
|
-
]
|
|
1699
|
-
|
|
1700
1849
|
[[package]]
|
|
1701
1850
|
name = "nom"
|
|
1702
1851
|
version = "7.1.3"
|
|
@@ -1729,26 +1878,31 @@ dependencies = [
|
|
|
1729
1878
|
"num-integer",
|
|
1730
1879
|
"num-iter",
|
|
1731
1880
|
"num-traits",
|
|
1732
|
-
"rand
|
|
1881
|
+
"rand",
|
|
1733
1882
|
"smallvec",
|
|
1734
1883
|
"zeroize",
|
|
1735
1884
|
]
|
|
1736
1885
|
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "num-conv"
|
|
1888
|
+
version = "0.1.0"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1891
|
+
|
|
1737
1892
|
[[package]]
|
|
1738
1893
|
name = "num-integer"
|
|
1739
|
-
version = "0.1.
|
|
1894
|
+
version = "0.1.46"
|
|
1740
1895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
-
checksum = "
|
|
1896
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1742
1897
|
dependencies = [
|
|
1743
|
-
"autocfg",
|
|
1744
1898
|
"num-traits",
|
|
1745
1899
|
]
|
|
1746
1900
|
|
|
1747
1901
|
[[package]]
|
|
1748
1902
|
name = "num-iter"
|
|
1749
|
-
version = "0.1.
|
|
1903
|
+
version = "0.1.44"
|
|
1750
1904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
1905
|
+
checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
|
|
1752
1906
|
dependencies = [
|
|
1753
1907
|
"autocfg",
|
|
1754
1908
|
"num-integer",
|
|
@@ -1757,9 +1911,9 @@ dependencies = [
|
|
|
1757
1911
|
|
|
1758
1912
|
[[package]]
|
|
1759
1913
|
name = "num-traits"
|
|
1760
|
-
version = "0.2.
|
|
1914
|
+
version = "0.2.19"
|
|
1761
1915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
-
checksum = "
|
|
1916
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1763
1917
|
dependencies = [
|
|
1764
1918
|
"autocfg",
|
|
1765
1919
|
"libm",
|
|
@@ -1790,15 +1944,20 @@ version = "1.19.0"
|
|
|
1790
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
1945
|
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1792
1946
|
|
|
1947
|
+
[[package]]
|
|
1948
|
+
name = "oorandom"
|
|
1949
|
+
version = "11.1.3"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
|
1952
|
+
|
|
1793
1953
|
[[package]]
|
|
1794
1954
|
name = "opentelemetry"
|
|
1795
|
-
version = "0.
|
|
1955
|
+
version = "0.22.0"
|
|
1796
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
-
checksum = "
|
|
1957
|
+
checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
|
|
1798
1958
|
dependencies = [
|
|
1799
1959
|
"futures-core",
|
|
1800
1960
|
"futures-sink",
|
|
1801
|
-
"indexmap 2.2.1",
|
|
1802
1961
|
"js-sys",
|
|
1803
1962
|
"once_cell",
|
|
1804
1963
|
"pin-project-lite",
|
|
@@ -1806,28 +1965,52 @@ dependencies = [
|
|
|
1806
1965
|
"urlencoding",
|
|
1807
1966
|
]
|
|
1808
1967
|
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "opentelemetry"
|
|
1970
|
+
version = "0.23.0"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"futures-core",
|
|
1975
|
+
"futures-sink",
|
|
1976
|
+
"js-sys",
|
|
1977
|
+
"once_cell",
|
|
1978
|
+
"pin-project-lite",
|
|
1979
|
+
"thiserror",
|
|
1980
|
+
]
|
|
1981
|
+
|
|
1809
1982
|
[[package]]
|
|
1810
1983
|
name = "opentelemetry-prometheus"
|
|
1811
|
-
version = "0.
|
|
1984
|
+
version = "0.15.0"
|
|
1812
1985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
-
checksum = "
|
|
1986
|
+
checksum = "30bbcf6341cab7e2193e5843f0ac36c446a5b3fccb28747afaeda17996dcd02e"
|
|
1814
1987
|
dependencies = [
|
|
1815
1988
|
"once_cell",
|
|
1816
|
-
"opentelemetry",
|
|
1817
|
-
"opentelemetry_sdk",
|
|
1989
|
+
"opentelemetry 0.22.0",
|
|
1990
|
+
"opentelemetry_sdk 0.22.1",
|
|
1818
1991
|
"prometheus",
|
|
1819
1992
|
"protobuf",
|
|
1820
1993
|
]
|
|
1821
1994
|
|
|
1822
1995
|
[[package]]
|
|
1823
|
-
name = "opentelemetry-
|
|
1824
|
-
version = "0.
|
|
1996
|
+
name = "opentelemetry-prometheus"
|
|
1997
|
+
version = "0.16.0"
|
|
1825
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
-
checksum = "
|
|
1999
|
+
checksum = "5e1a24eafe47b693cb938f8505f240dc26c71db60df9aca376b4f857e9653ec7"
|
|
1827
2000
|
dependencies = [
|
|
1828
|
-
"
|
|
2001
|
+
"once_cell",
|
|
2002
|
+
"opentelemetry 0.23.0",
|
|
2003
|
+
"opentelemetry_sdk 0.23.0",
|
|
2004
|
+
"prometheus",
|
|
2005
|
+
"protobuf",
|
|
1829
2006
|
]
|
|
1830
2007
|
|
|
2008
|
+
[[package]]
|
|
2009
|
+
name = "opentelemetry-semantic-conventions"
|
|
2010
|
+
version = "0.14.0"
|
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
+
checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
|
|
2013
|
+
|
|
1831
2014
|
[[package]]
|
|
1832
2015
|
name = "opentelemetry_api"
|
|
1833
2016
|
version = "0.20.0"
|
|
@@ -1846,21 +2029,38 @@ dependencies = [
|
|
|
1846
2029
|
|
|
1847
2030
|
[[package]]
|
|
1848
2031
|
name = "opentelemetry_sdk"
|
|
1849
|
-
version = "0.
|
|
2032
|
+
version = "0.22.1"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
|
|
2035
|
+
dependencies = [
|
|
2036
|
+
"async-trait",
|
|
2037
|
+
"futures-channel",
|
|
2038
|
+
"futures-executor",
|
|
2039
|
+
"futures-util",
|
|
2040
|
+
"glob",
|
|
2041
|
+
"once_cell",
|
|
2042
|
+
"opentelemetry 0.22.0",
|
|
2043
|
+
"ordered-float",
|
|
2044
|
+
"thiserror",
|
|
2045
|
+
]
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "opentelemetry_sdk"
|
|
2049
|
+
version = "0.23.0"
|
|
1850
2050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
-
checksum = "
|
|
2051
|
+
checksum = "ae312d58eaa90a82d2e627fd86e075cf5230b3f11794e2ed74199ebbe572d4fd"
|
|
1852
2052
|
dependencies = [
|
|
1853
2053
|
"async-trait",
|
|
1854
|
-
"crossbeam-channel",
|
|
1855
2054
|
"futures-channel",
|
|
1856
2055
|
"futures-executor",
|
|
1857
2056
|
"futures-util",
|
|
1858
2057
|
"glob",
|
|
2058
|
+
"lazy_static",
|
|
1859
2059
|
"once_cell",
|
|
1860
|
-
"opentelemetry",
|
|
2060
|
+
"opentelemetry 0.23.0",
|
|
1861
2061
|
"ordered-float",
|
|
1862
2062
|
"percent-encoding",
|
|
1863
|
-
"rand
|
|
2063
|
+
"rand",
|
|
1864
2064
|
"thiserror",
|
|
1865
2065
|
]
|
|
1866
2066
|
|
|
@@ -1895,12 +2095,6 @@ version = "3.5.0"
|
|
|
1895
2095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
2096
|
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
1897
2097
|
|
|
1898
|
-
[[package]]
|
|
1899
|
-
name = "parking"
|
|
1900
|
-
version = "2.2.0"
|
|
1901
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
|
|
1903
|
-
|
|
1904
2098
|
[[package]]
|
|
1905
2099
|
name = "parking_lot"
|
|
1906
2100
|
version = "0.12.1"
|
|
@@ -1953,9 +2147,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1953
2147
|
|
|
1954
2148
|
[[package]]
|
|
1955
2149
|
name = "pest"
|
|
1956
|
-
version = "2.7.
|
|
2150
|
+
version = "2.7.9"
|
|
1957
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
-
checksum = "
|
|
2152
|
+
checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95"
|
|
1959
2153
|
dependencies = [
|
|
1960
2154
|
"memchr",
|
|
1961
2155
|
"thiserror",
|
|
@@ -1964,9 +2158,9 @@ dependencies = [
|
|
|
1964
2158
|
|
|
1965
2159
|
[[package]]
|
|
1966
2160
|
name = "pest_derive"
|
|
1967
|
-
version = "2.7.
|
|
2161
|
+
version = "2.7.9"
|
|
1968
2162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "
|
|
2163
|
+
checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c"
|
|
1970
2164
|
dependencies = [
|
|
1971
2165
|
"pest",
|
|
1972
2166
|
"pest_generator",
|
|
@@ -1974,22 +2168,22 @@ dependencies = [
|
|
|
1974
2168
|
|
|
1975
2169
|
[[package]]
|
|
1976
2170
|
name = "pest_generator"
|
|
1977
|
-
version = "2.7.
|
|
2171
|
+
version = "2.7.9"
|
|
1978
2172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
-
checksum = "
|
|
2173
|
+
checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd"
|
|
1980
2174
|
dependencies = [
|
|
1981
2175
|
"pest",
|
|
1982
2176
|
"pest_meta",
|
|
1983
2177
|
"proc-macro2",
|
|
1984
2178
|
"quote",
|
|
1985
|
-
"syn 2.0.
|
|
2179
|
+
"syn 2.0.60",
|
|
1986
2180
|
]
|
|
1987
2181
|
|
|
1988
2182
|
[[package]]
|
|
1989
2183
|
name = "pest_meta"
|
|
1990
|
-
version = "2.7.
|
|
2184
|
+
version = "2.7.9"
|
|
1991
2185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
-
checksum = "
|
|
2186
|
+
checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca"
|
|
1993
2187
|
dependencies = [
|
|
1994
2188
|
"once_cell",
|
|
1995
2189
|
"pest",
|
|
@@ -1998,29 +2192,29 @@ dependencies = [
|
|
|
1998
2192
|
|
|
1999
2193
|
[[package]]
|
|
2000
2194
|
name = "pin-project"
|
|
2001
|
-
version = "1.1.
|
|
2195
|
+
version = "1.1.5"
|
|
2002
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
-
checksum = "
|
|
2197
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
2004
2198
|
dependencies = [
|
|
2005
2199
|
"pin-project-internal",
|
|
2006
2200
|
]
|
|
2007
2201
|
|
|
2008
2202
|
[[package]]
|
|
2009
2203
|
name = "pin-project-internal"
|
|
2010
|
-
version = "1.1.
|
|
2204
|
+
version = "1.1.5"
|
|
2011
2205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
-
checksum = "
|
|
2206
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
2013
2207
|
dependencies = [
|
|
2014
2208
|
"proc-macro2",
|
|
2015
2209
|
"quote",
|
|
2016
|
-
"syn 2.0.
|
|
2210
|
+
"syn 2.0.60",
|
|
2017
2211
|
]
|
|
2018
2212
|
|
|
2019
2213
|
[[package]]
|
|
2020
2214
|
name = "pin-project-lite"
|
|
2021
|
-
version = "0.2.
|
|
2215
|
+
version = "0.2.14"
|
|
2022
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
-
checksum = "
|
|
2217
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
2024
2218
|
|
|
2025
2219
|
[[package]]
|
|
2026
2220
|
name = "pin-utils"
|
|
@@ -2051,9 +2245,43 @@ dependencies = [
|
|
|
2051
2245
|
|
|
2052
2246
|
[[package]]
|
|
2053
2247
|
name = "pkg-config"
|
|
2054
|
-
version = "0.3.
|
|
2248
|
+
version = "0.3.30"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "plotters"
|
|
2254
|
+
version = "0.3.5"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"num-traits",
|
|
2259
|
+
"plotters-backend",
|
|
2260
|
+
"plotters-svg",
|
|
2261
|
+
"wasm-bindgen",
|
|
2262
|
+
"web-sys",
|
|
2263
|
+
]
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "plotters-backend"
|
|
2267
|
+
version = "0.3.5"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "plotters-svg"
|
|
2273
|
+
version = "0.3.5"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"plotters-backend",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "portable-atomic"
|
|
2282
|
+
version = "1.6.0"
|
|
2055
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
-
checksum = "
|
|
2284
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
2057
2285
|
|
|
2058
2286
|
[[package]]
|
|
2059
2287
|
name = "powerfmt"
|
|
@@ -2069,18 +2297,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
|
2069
2297
|
|
|
2070
2298
|
[[package]]
|
|
2071
2299
|
name = "proc-macro2"
|
|
2072
|
-
version = "1.0.
|
|
2300
|
+
version = "1.0.81"
|
|
2073
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
-
checksum = "
|
|
2302
|
+
checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
|
|
2075
2303
|
dependencies = [
|
|
2076
2304
|
"unicode-ident",
|
|
2077
2305
|
]
|
|
2078
2306
|
|
|
2079
2307
|
[[package]]
|
|
2080
2308
|
name = "prometheus"
|
|
2081
|
-
version = "0.13.
|
|
2309
|
+
version = "0.13.4"
|
|
2082
2310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
-
checksum = "
|
|
2311
|
+
checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
|
|
2084
2312
|
dependencies = [
|
|
2085
2313
|
"cfg-if",
|
|
2086
2314
|
"fnv",
|
|
@@ -2099,9 +2327,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
|
2099
2327
|
|
|
2100
2328
|
[[package]]
|
|
2101
2329
|
name = "pyo3"
|
|
2102
|
-
version = "0.
|
|
2330
|
+
version = "0.20.3"
|
|
2103
2331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
-
checksum = "
|
|
2332
|
+
checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
|
|
2105
2333
|
dependencies = [
|
|
2106
2334
|
"anyhow",
|
|
2107
2335
|
"cfg-if",
|
|
@@ -2110,6 +2338,7 @@ dependencies = [
|
|
|
2110
2338
|
"libc",
|
|
2111
2339
|
"memoffset",
|
|
2112
2340
|
"parking_lot",
|
|
2341
|
+
"portable-atomic",
|
|
2113
2342
|
"pyo3-build-config",
|
|
2114
2343
|
"pyo3-ffi",
|
|
2115
2344
|
"pyo3-macros",
|
|
@@ -2118,9 +2347,9 @@ dependencies = [
|
|
|
2118
2347
|
|
|
2119
2348
|
[[package]]
|
|
2120
2349
|
name = "pyo3-asyncio"
|
|
2121
|
-
version = "0.
|
|
2350
|
+
version = "0.20.0"
|
|
2122
2351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
-
checksum = "
|
|
2352
|
+
checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
|
|
2124
2353
|
dependencies = [
|
|
2125
2354
|
"futures",
|
|
2126
2355
|
"once_cell",
|
|
@@ -2132,9 +2361,9 @@ dependencies = [
|
|
|
2132
2361
|
|
|
2133
2362
|
[[package]]
|
|
2134
2363
|
name = "pyo3-asyncio-macros"
|
|
2135
|
-
version = "0.
|
|
2364
|
+
version = "0.20.0"
|
|
2136
2365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2366
|
+
checksum = "56c467178e1da6252c95c29ecf898b133f742e9181dca5def15dc24e19d45a39"
|
|
2138
2367
|
dependencies = [
|
|
2139
2368
|
"proc-macro2",
|
|
2140
2369
|
"quote",
|
|
@@ -2143,9 +2372,9 @@ dependencies = [
|
|
|
2143
2372
|
|
|
2144
2373
|
[[package]]
|
|
2145
2374
|
name = "pyo3-build-config"
|
|
2146
|
-
version = "0.
|
|
2375
|
+
version = "0.20.3"
|
|
2147
2376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
-
checksum = "
|
|
2377
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
|
2149
2378
|
dependencies = [
|
|
2150
2379
|
"once_cell",
|
|
2151
2380
|
"target-lexicon",
|
|
@@ -2153,9 +2382,9 @@ dependencies = [
|
|
|
2153
2382
|
|
|
2154
2383
|
[[package]]
|
|
2155
2384
|
name = "pyo3-ffi"
|
|
2156
|
-
version = "0.
|
|
2385
|
+
version = "0.20.3"
|
|
2157
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
-
checksum = "
|
|
2387
|
+
checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
|
2159
2388
|
dependencies = [
|
|
2160
2389
|
"libc",
|
|
2161
2390
|
"pyo3-build-config",
|
|
@@ -2163,33 +2392,36 @@ dependencies = [
|
|
|
2163
2392
|
|
|
2164
2393
|
[[package]]
|
|
2165
2394
|
name = "pyo3-macros"
|
|
2166
|
-
version = "0.
|
|
2395
|
+
version = "0.20.3"
|
|
2167
2396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
-
checksum = "
|
|
2397
|
+
checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
|
|
2169
2398
|
dependencies = [
|
|
2170
2399
|
"proc-macro2",
|
|
2171
2400
|
"pyo3-macros-backend",
|
|
2172
2401
|
"quote",
|
|
2173
|
-
"syn
|
|
2402
|
+
"syn 2.0.60",
|
|
2174
2403
|
]
|
|
2175
2404
|
|
|
2176
2405
|
[[package]]
|
|
2177
2406
|
name = "pyo3-macros-backend"
|
|
2178
|
-
version = "0.
|
|
2407
|
+
version = "0.20.3"
|
|
2179
2408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
-
checksum = "
|
|
2409
|
+
checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
|
2181
2410
|
dependencies = [
|
|
2411
|
+
"heck",
|
|
2182
2412
|
"proc-macro2",
|
|
2413
|
+
"pyo3-build-config",
|
|
2183
2414
|
"quote",
|
|
2184
|
-
"syn
|
|
2415
|
+
"syn 2.0.60",
|
|
2185
2416
|
]
|
|
2186
2417
|
|
|
2187
2418
|
[[package]]
|
|
2188
2419
|
name = "python-auditor"
|
|
2189
|
-
version = "0.
|
|
2420
|
+
version = "0.6.1"
|
|
2190
2421
|
dependencies = [
|
|
2191
2422
|
"anyhow",
|
|
2192
2423
|
"auditor",
|
|
2424
|
+
"auditor-client",
|
|
2193
2425
|
"chrono",
|
|
2194
2426
|
"pyo3",
|
|
2195
2427
|
"pyo3-asyncio",
|
|
@@ -2206,7 +2438,7 @@ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
|
|
|
2206
2438
|
dependencies = [
|
|
2207
2439
|
"env_logger",
|
|
2208
2440
|
"log",
|
|
2209
|
-
"rand
|
|
2441
|
+
"rand",
|
|
2210
2442
|
]
|
|
2211
2443
|
|
|
2212
2444
|
[[package]]
|
|
@@ -2221,25 +2453,59 @@ dependencies = [
|
|
|
2221
2453
|
]
|
|
2222
2454
|
|
|
2223
2455
|
[[package]]
|
|
2224
|
-
name = "
|
|
2225
|
-
version = "
|
|
2456
|
+
name = "quinn"
|
|
2457
|
+
version = "0.11.2"
|
|
2226
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
-
checksum = "
|
|
2459
|
+
checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad"
|
|
2228
2460
|
dependencies = [
|
|
2229
|
-
"
|
|
2461
|
+
"bytes",
|
|
2462
|
+
"pin-project-lite",
|
|
2463
|
+
"quinn-proto",
|
|
2464
|
+
"quinn-udp",
|
|
2465
|
+
"rustc-hash",
|
|
2466
|
+
"rustls 0.23.10",
|
|
2467
|
+
"thiserror",
|
|
2468
|
+
"tokio",
|
|
2469
|
+
"tracing",
|
|
2230
2470
|
]
|
|
2231
2471
|
|
|
2232
2472
|
[[package]]
|
|
2233
|
-
name = "
|
|
2234
|
-
version = "0.
|
|
2473
|
+
name = "quinn-proto"
|
|
2474
|
+
version = "0.11.3"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"bytes",
|
|
2479
|
+
"rand",
|
|
2480
|
+
"ring",
|
|
2481
|
+
"rustc-hash",
|
|
2482
|
+
"rustls 0.23.10",
|
|
2483
|
+
"slab",
|
|
2484
|
+
"thiserror",
|
|
2485
|
+
"tinyvec",
|
|
2486
|
+
"tracing",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "quinn-udp"
|
|
2491
|
+
version = "0.5.2"
|
|
2235
2492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
-
checksum = "
|
|
2493
|
+
checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46"
|
|
2237
2494
|
dependencies = [
|
|
2238
|
-
"getrandom 0.1.16",
|
|
2239
2495
|
"libc",
|
|
2240
|
-
"
|
|
2241
|
-
"
|
|
2242
|
-
"
|
|
2496
|
+
"once_cell",
|
|
2497
|
+
"socket2",
|
|
2498
|
+
"tracing",
|
|
2499
|
+
"windows-sys 0.52.0",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "quote"
|
|
2504
|
+
version = "1.0.36"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"proc-macro2",
|
|
2243
2509
|
]
|
|
2244
2510
|
|
|
2245
2511
|
[[package]]
|
|
@@ -2249,55 +2515,57 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2249
2515
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2250
2516
|
dependencies = [
|
|
2251
2517
|
"libc",
|
|
2252
|
-
"rand_chacha
|
|
2253
|
-
"rand_core
|
|
2518
|
+
"rand_chacha",
|
|
2519
|
+
"rand_core",
|
|
2254
2520
|
]
|
|
2255
2521
|
|
|
2256
2522
|
[[package]]
|
|
2257
2523
|
name = "rand_chacha"
|
|
2258
|
-
version = "0.
|
|
2524
|
+
version = "0.3.1"
|
|
2259
2525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
-
checksum = "
|
|
2526
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2261
2527
|
dependencies = [
|
|
2262
2528
|
"ppv-lite86",
|
|
2263
|
-
"rand_core
|
|
2529
|
+
"rand_core",
|
|
2264
2530
|
]
|
|
2265
2531
|
|
|
2266
2532
|
[[package]]
|
|
2267
|
-
name = "
|
|
2268
|
-
version = "0.
|
|
2533
|
+
name = "rand_core"
|
|
2534
|
+
version = "0.6.4"
|
|
2269
2535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
-
checksum = "
|
|
2536
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2271
2537
|
dependencies = [
|
|
2272
|
-
"
|
|
2273
|
-
"rand_core 0.6.4",
|
|
2538
|
+
"getrandom",
|
|
2274
2539
|
]
|
|
2275
2540
|
|
|
2276
2541
|
[[package]]
|
|
2277
|
-
name = "
|
|
2278
|
-
version = "0.
|
|
2542
|
+
name = "rand_distr"
|
|
2543
|
+
version = "0.4.3"
|
|
2279
2544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
-
checksum = "
|
|
2545
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2281
2546
|
dependencies = [
|
|
2282
|
-
"
|
|
2547
|
+
"num-traits",
|
|
2548
|
+
"rand",
|
|
2283
2549
|
]
|
|
2284
2550
|
|
|
2285
2551
|
[[package]]
|
|
2286
|
-
name = "
|
|
2287
|
-
version = "
|
|
2552
|
+
name = "rayon"
|
|
2553
|
+
version = "1.10.0"
|
|
2288
2554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
-
checksum = "
|
|
2555
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
2290
2556
|
dependencies = [
|
|
2291
|
-
"
|
|
2557
|
+
"either",
|
|
2558
|
+
"rayon-core",
|
|
2292
2559
|
]
|
|
2293
2560
|
|
|
2294
2561
|
[[package]]
|
|
2295
|
-
name = "
|
|
2296
|
-
version = "
|
|
2562
|
+
name = "rayon-core"
|
|
2563
|
+
version = "1.12.1"
|
|
2297
2564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
-
checksum = "
|
|
2565
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2299
2566
|
dependencies = [
|
|
2300
|
-
"
|
|
2567
|
+
"crossbeam-deque",
|
|
2568
|
+
"crossbeam-utils",
|
|
2301
2569
|
]
|
|
2302
2570
|
|
|
2303
2571
|
[[package]]
|
|
@@ -2311,14 +2579,14 @@ dependencies = [
|
|
|
2311
2579
|
|
|
2312
2580
|
[[package]]
|
|
2313
2581
|
name = "regex"
|
|
2314
|
-
version = "1.10.
|
|
2582
|
+
version = "1.10.5"
|
|
2315
2583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
-
checksum = "
|
|
2584
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
|
2317
2585
|
dependencies = [
|
|
2318
2586
|
"aho-corasick",
|
|
2319
2587
|
"memchr",
|
|
2320
|
-
"regex-automata 0.4.
|
|
2321
|
-
"regex-syntax 0.8.
|
|
2588
|
+
"regex-automata 0.4.6",
|
|
2589
|
+
"regex-syntax 0.8.3",
|
|
2322
2590
|
]
|
|
2323
2591
|
|
|
2324
2592
|
[[package]]
|
|
@@ -2332,15 +2600,21 @@ dependencies = [
|
|
|
2332
2600
|
|
|
2333
2601
|
[[package]]
|
|
2334
2602
|
name = "regex-automata"
|
|
2335
|
-
version = "0.4.
|
|
2603
|
+
version = "0.4.6"
|
|
2336
2604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2337
|
-
checksum = "
|
|
2605
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
2338
2606
|
dependencies = [
|
|
2339
2607
|
"aho-corasick",
|
|
2340
2608
|
"memchr",
|
|
2341
|
-
"regex-syntax 0.8.
|
|
2609
|
+
"regex-syntax 0.8.3",
|
|
2342
2610
|
]
|
|
2343
2611
|
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "regex-lite"
|
|
2614
|
+
version = "0.1.5"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e"
|
|
2617
|
+
|
|
2344
2618
|
[[package]]
|
|
2345
2619
|
name = "regex-syntax"
|
|
2346
2620
|
version = "0.6.29"
|
|
@@ -2349,26 +2623,27 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2349
2623
|
|
|
2350
2624
|
[[package]]
|
|
2351
2625
|
name = "regex-syntax"
|
|
2352
|
-
version = "0.8.
|
|
2626
|
+
version = "0.8.3"
|
|
2353
2627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2628
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
|
2355
2629
|
|
|
2356
2630
|
[[package]]
|
|
2357
2631
|
name = "reqwest"
|
|
2358
|
-
version = "0.
|
|
2632
|
+
version = "0.12.5"
|
|
2359
2633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
-
checksum = "
|
|
2634
|
+
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
|
|
2361
2635
|
dependencies = [
|
|
2362
|
-
"base64 0.
|
|
2636
|
+
"base64 0.22.0",
|
|
2363
2637
|
"bytes",
|
|
2364
|
-
"
|
|
2638
|
+
"futures-channel",
|
|
2365
2639
|
"futures-core",
|
|
2366
2640
|
"futures-util",
|
|
2367
|
-
"
|
|
2368
|
-
"http",
|
|
2641
|
+
"http 1.1.0",
|
|
2369
2642
|
"http-body",
|
|
2643
|
+
"http-body-util",
|
|
2370
2644
|
"hyper",
|
|
2371
2645
|
"hyper-rustls",
|
|
2646
|
+
"hyper-util",
|
|
2372
2647
|
"ipnet",
|
|
2373
2648
|
"js-sys",
|
|
2374
2649
|
"log",
|
|
@@ -2376,13 +2651,14 @@ dependencies = [
|
|
|
2376
2651
|
"once_cell",
|
|
2377
2652
|
"percent-encoding",
|
|
2378
2653
|
"pin-project-lite",
|
|
2379
|
-
"
|
|
2380
|
-
"rustls
|
|
2654
|
+
"quinn",
|
|
2655
|
+
"rustls 0.23.10",
|
|
2656
|
+
"rustls-pemfile 2.1.2",
|
|
2657
|
+
"rustls-pki-types",
|
|
2381
2658
|
"serde",
|
|
2382
2659
|
"serde_json",
|
|
2383
2660
|
"serde_urlencoded",
|
|
2384
2661
|
"sync_wrapper",
|
|
2385
|
-
"system-configuration",
|
|
2386
2662
|
"tokio",
|
|
2387
2663
|
"tokio-rustls",
|
|
2388
2664
|
"tower-service",
|
|
@@ -2390,28 +2666,23 @@ dependencies = [
|
|
|
2390
2666
|
"wasm-bindgen",
|
|
2391
2667
|
"wasm-bindgen-futures",
|
|
2392
2668
|
"web-sys",
|
|
2393
|
-
"webpki-roots",
|
|
2669
|
+
"webpki-roots 0.26.1",
|
|
2394
2670
|
"winreg",
|
|
2395
2671
|
]
|
|
2396
2672
|
|
|
2397
|
-
[[package]]
|
|
2398
|
-
name = "retain_mut"
|
|
2399
|
-
version = "0.1.9"
|
|
2400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
-
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
|
|
2402
|
-
|
|
2403
2673
|
[[package]]
|
|
2404
2674
|
name = "ring"
|
|
2405
|
-
version = "0.17.
|
|
2675
|
+
version = "0.17.8"
|
|
2406
2676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
-
checksum = "
|
|
2677
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
2408
2678
|
dependencies = [
|
|
2409
2679
|
"cc",
|
|
2410
|
-
"
|
|
2680
|
+
"cfg-if",
|
|
2681
|
+
"getrandom",
|
|
2411
2682
|
"libc",
|
|
2412
2683
|
"spin 0.9.8",
|
|
2413
2684
|
"untrusted",
|
|
2414
|
-
"windows-sys 0.
|
|
2685
|
+
"windows-sys 0.52.0",
|
|
2415
2686
|
]
|
|
2416
2687
|
|
|
2417
2688
|
[[package]]
|
|
@@ -2438,7 +2709,7 @@ dependencies = [
|
|
|
2438
2709
|
"num-traits",
|
|
2439
2710
|
"pkcs1",
|
|
2440
2711
|
"pkcs8",
|
|
2441
|
-
"rand_core
|
|
2712
|
+
"rand_core",
|
|
2442
2713
|
"signature",
|
|
2443
2714
|
"spki",
|
|
2444
2715
|
"subtle",
|
|
@@ -2461,6 +2732,12 @@ version = "0.1.23"
|
|
|
2461
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
2733
|
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
2463
2734
|
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "rustc-hash"
|
|
2737
|
+
version = "1.1.0"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2740
|
+
|
|
2464
2741
|
[[package]]
|
|
2465
2742
|
name = "rustc_version"
|
|
2466
2743
|
version = "0.4.0"
|
|
@@ -2472,11 +2749,11 @@ dependencies = [
|
|
|
2472
2749
|
|
|
2473
2750
|
[[package]]
|
|
2474
2751
|
name = "rustix"
|
|
2475
|
-
version = "0.38.
|
|
2752
|
+
version = "0.38.34"
|
|
2476
2753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
-
checksum = "
|
|
2754
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2478
2755
|
dependencies = [
|
|
2479
|
-
"bitflags 2.
|
|
2756
|
+
"bitflags 2.5.0",
|
|
2480
2757
|
"errno",
|
|
2481
2758
|
"libc",
|
|
2482
2759
|
"linux-raw-sys",
|
|
@@ -2485,16 +2762,29 @@ dependencies = [
|
|
|
2485
2762
|
|
|
2486
2763
|
[[package]]
|
|
2487
2764
|
name = "rustls"
|
|
2488
|
-
version = "0.21.
|
|
2765
|
+
version = "0.21.11"
|
|
2489
2766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
|
-
checksum = "
|
|
2767
|
+
checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4"
|
|
2491
2768
|
dependencies = [
|
|
2492
|
-
"log",
|
|
2493
2769
|
"ring",
|
|
2494
|
-
"rustls-webpki",
|
|
2770
|
+
"rustls-webpki 0.101.7",
|
|
2495
2771
|
"sct",
|
|
2496
2772
|
]
|
|
2497
2773
|
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "rustls"
|
|
2776
|
+
version = "0.23.10"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402"
|
|
2779
|
+
dependencies = [
|
|
2780
|
+
"once_cell",
|
|
2781
|
+
"ring",
|
|
2782
|
+
"rustls-pki-types",
|
|
2783
|
+
"rustls-webpki 0.102.4",
|
|
2784
|
+
"subtle",
|
|
2785
|
+
"zeroize",
|
|
2786
|
+
]
|
|
2787
|
+
|
|
2498
2788
|
[[package]]
|
|
2499
2789
|
name = "rustls-pemfile"
|
|
2500
2790
|
version = "1.0.4"
|
|
@@ -2504,6 +2794,22 @@ dependencies = [
|
|
|
2504
2794
|
"base64 0.21.7",
|
|
2505
2795
|
]
|
|
2506
2796
|
|
|
2797
|
+
[[package]]
|
|
2798
|
+
name = "rustls-pemfile"
|
|
2799
|
+
version = "2.1.2"
|
|
2800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2801
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
|
2802
|
+
dependencies = [
|
|
2803
|
+
"base64 0.22.0",
|
|
2804
|
+
"rustls-pki-types",
|
|
2805
|
+
]
|
|
2806
|
+
|
|
2807
|
+
[[package]]
|
|
2808
|
+
name = "rustls-pki-types"
|
|
2809
|
+
version = "1.7.0"
|
|
2810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
2812
|
+
|
|
2507
2813
|
[[package]]
|
|
2508
2814
|
name = "rustls-webpki"
|
|
2509
2815
|
version = "0.101.7"
|
|
@@ -2514,11 +2820,31 @@ dependencies = [
|
|
|
2514
2820
|
"untrusted",
|
|
2515
2821
|
]
|
|
2516
2822
|
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "rustls-webpki"
|
|
2825
|
+
version = "0.102.4"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
|
|
2828
|
+
dependencies = [
|
|
2829
|
+
"ring",
|
|
2830
|
+
"rustls-pki-types",
|
|
2831
|
+
"untrusted",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2517
2834
|
[[package]]
|
|
2518
2835
|
name = "ryu"
|
|
2519
|
-
version = "1.0.
|
|
2836
|
+
version = "1.0.17"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "same-file"
|
|
2842
|
+
version = "1.0.6"
|
|
2520
2843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
-
checksum = "
|
|
2844
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2845
|
+
dependencies = [
|
|
2846
|
+
"winapi-util",
|
|
2847
|
+
]
|
|
2522
2848
|
|
|
2523
2849
|
[[package]]
|
|
2524
2850
|
name = "scopeguard"
|
|
@@ -2548,24 +2874,24 @@ dependencies = [
|
|
|
2548
2874
|
|
|
2549
2875
|
[[package]]
|
|
2550
2876
|
name = "semver"
|
|
2551
|
-
version = "1.0.
|
|
2877
|
+
version = "1.0.22"
|
|
2552
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2553
|
-
checksum = "
|
|
2879
|
+
checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
|
|
2554
2880
|
|
|
2555
2881
|
[[package]]
|
|
2556
2882
|
name = "serde"
|
|
2557
|
-
version = "1.0.
|
|
2883
|
+
version = "1.0.204"
|
|
2558
2884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
-
checksum = "
|
|
2885
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
|
2560
2886
|
dependencies = [
|
|
2561
2887
|
"serde_derive",
|
|
2562
2888
|
]
|
|
2563
2889
|
|
|
2564
2890
|
[[package]]
|
|
2565
2891
|
name = "serde-aux"
|
|
2566
|
-
version = "4.
|
|
2892
|
+
version = "4.5.0"
|
|
2567
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
-
checksum = "
|
|
2894
|
+
checksum = "0d2e8bfba469d06512e11e3311d4d051a4a387a5b42d010404fecf3200321c95"
|
|
2569
2895
|
dependencies = [
|
|
2570
2896
|
"chrono",
|
|
2571
2897
|
"serde",
|
|
@@ -2574,20 +2900,20 @@ dependencies = [
|
|
|
2574
2900
|
|
|
2575
2901
|
[[package]]
|
|
2576
2902
|
name = "serde_derive"
|
|
2577
|
-
version = "1.0.
|
|
2903
|
+
version = "1.0.204"
|
|
2578
2904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
-
checksum = "
|
|
2905
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
|
2580
2906
|
dependencies = [
|
|
2581
2907
|
"proc-macro2",
|
|
2582
2908
|
"quote",
|
|
2583
|
-
"syn 2.0.
|
|
2909
|
+
"syn 2.0.60",
|
|
2584
2910
|
]
|
|
2585
2911
|
|
|
2586
2912
|
[[package]]
|
|
2587
2913
|
name = "serde_json"
|
|
2588
|
-
version = "1.0.
|
|
2914
|
+
version = "1.0.120"
|
|
2589
2915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
-
checksum = "
|
|
2916
|
+
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
|
|
2591
2917
|
dependencies = [
|
|
2592
2918
|
"itoa",
|
|
2593
2919
|
"ryu",
|
|
@@ -2596,20 +2922,9 @@ dependencies = [
|
|
|
2596
2922
|
|
|
2597
2923
|
[[package]]
|
|
2598
2924
|
name = "serde_qs"
|
|
2599
|
-
version = "0.
|
|
2600
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
-
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
|
|
2602
|
-
dependencies = [
|
|
2603
|
-
"percent-encoding",
|
|
2604
|
-
"serde",
|
|
2605
|
-
"thiserror",
|
|
2606
|
-
]
|
|
2607
|
-
|
|
2608
|
-
[[package]]
|
|
2609
|
-
name = "serde_qs"
|
|
2610
|
-
version = "0.12.0"
|
|
2925
|
+
version = "0.13.0"
|
|
2611
2926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2612
|
-
checksum = "
|
|
2927
|
+
checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6"
|
|
2613
2928
|
dependencies = [
|
|
2614
2929
|
"actix-web",
|
|
2615
2930
|
"futures",
|
|
@@ -2632,16 +2947,17 @@ dependencies = [
|
|
|
2632
2947
|
|
|
2633
2948
|
[[package]]
|
|
2634
2949
|
name = "serde_with"
|
|
2635
|
-
version = "3.
|
|
2950
|
+
version = "3.8.1"
|
|
2636
2951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2637
|
-
checksum = "
|
|
2952
|
+
checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20"
|
|
2638
2953
|
dependencies = [
|
|
2639
|
-
"base64 0.
|
|
2954
|
+
"base64 0.22.0",
|
|
2640
2955
|
"chrono",
|
|
2641
2956
|
"hex",
|
|
2642
2957
|
"indexmap 1.9.3",
|
|
2643
|
-
"indexmap 2.2.
|
|
2958
|
+
"indexmap 2.2.6",
|
|
2644
2959
|
"serde",
|
|
2960
|
+
"serde_derive",
|
|
2645
2961
|
"serde_json",
|
|
2646
2962
|
"serde_with_macros",
|
|
2647
2963
|
"time",
|
|
@@ -2649,14 +2965,14 @@ dependencies = [
|
|
|
2649
2965
|
|
|
2650
2966
|
[[package]]
|
|
2651
2967
|
name = "serde_with_macros"
|
|
2652
|
-
version = "3.
|
|
2968
|
+
version = "3.8.1"
|
|
2653
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2970
|
+
checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2"
|
|
2655
2971
|
dependencies = [
|
|
2656
2972
|
"darling",
|
|
2657
2973
|
"proc-macro2",
|
|
2658
2974
|
"quote",
|
|
2659
|
-
"syn 2.0.
|
|
2975
|
+
"syn 2.0.60",
|
|
2660
2976
|
]
|
|
2661
2977
|
|
|
2662
2978
|
[[package]]
|
|
@@ -2698,9 +3014,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
|
2698
3014
|
|
|
2699
3015
|
[[package]]
|
|
2700
3016
|
name = "signal-hook-registry"
|
|
2701
|
-
version = "1.4.
|
|
3017
|
+
version = "1.4.2"
|
|
2702
3018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
-
checksum = "
|
|
3019
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
2704
3020
|
dependencies = [
|
|
2705
3021
|
"libc",
|
|
2706
3022
|
]
|
|
@@ -2712,7 +3028,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2712
3028
|
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
2713
3029
|
dependencies = [
|
|
2714
3030
|
"digest",
|
|
2715
|
-
"rand_core
|
|
3031
|
+
"rand_core",
|
|
2716
3032
|
]
|
|
2717
3033
|
|
|
2718
3034
|
[[package]]
|
|
@@ -2726,18 +3042,18 @@ dependencies = [
|
|
|
2726
3042
|
|
|
2727
3043
|
[[package]]
|
|
2728
3044
|
name = "smallvec"
|
|
2729
|
-
version = "1.13.
|
|
3045
|
+
version = "1.13.2"
|
|
2730
3046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
-
checksum = "
|
|
3047
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2732
3048
|
|
|
2733
3049
|
[[package]]
|
|
2734
3050
|
name = "socket2"
|
|
2735
|
-
version = "0.5.
|
|
3051
|
+
version = "0.5.6"
|
|
2736
3052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
-
checksum = "
|
|
3053
|
+
checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
|
|
2738
3054
|
dependencies = [
|
|
2739
3055
|
"libc",
|
|
2740
|
-
"windows-sys 0.
|
|
3056
|
+
"windows-sys 0.52.0",
|
|
2741
3057
|
]
|
|
2742
3058
|
|
|
2743
3059
|
[[package]]
|
|
@@ -2771,16 +3087,16 @@ version = "0.2.3"
|
|
|
2771
3087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2772
3088
|
checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c"
|
|
2773
3089
|
dependencies = [
|
|
2774
|
-
"itertools",
|
|
3090
|
+
"itertools 0.12.1",
|
|
2775
3091
|
"nom",
|
|
2776
3092
|
"unicode_categories",
|
|
2777
3093
|
]
|
|
2778
3094
|
|
|
2779
3095
|
[[package]]
|
|
2780
3096
|
name = "sqlx"
|
|
2781
|
-
version = "0.7.
|
|
3097
|
+
version = "0.7.4"
|
|
2782
3098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
-
checksum = "
|
|
3099
|
+
checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa"
|
|
2784
3100
|
dependencies = [
|
|
2785
3101
|
"sqlx-core",
|
|
2786
3102
|
"sqlx-macros",
|
|
@@ -2791,18 +3107,17 @@ dependencies = [
|
|
|
2791
3107
|
|
|
2792
3108
|
[[package]]
|
|
2793
3109
|
name = "sqlx-core"
|
|
2794
|
-
version = "0.7.
|
|
3110
|
+
version = "0.7.4"
|
|
2795
3111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
-
checksum = "
|
|
3112
|
+
checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6"
|
|
2797
3113
|
dependencies = [
|
|
2798
|
-
"ahash 0.8.
|
|
3114
|
+
"ahash 0.8.11",
|
|
2799
3115
|
"atoi",
|
|
2800
3116
|
"byteorder",
|
|
2801
3117
|
"bytes",
|
|
2802
3118
|
"chrono",
|
|
2803
3119
|
"crc",
|
|
2804
3120
|
"crossbeam-queue",
|
|
2805
|
-
"dotenvy",
|
|
2806
3121
|
"either",
|
|
2807
3122
|
"event-listener",
|
|
2808
3123
|
"futures-channel",
|
|
@@ -2812,14 +3127,14 @@ dependencies = [
|
|
|
2812
3127
|
"futures-util",
|
|
2813
3128
|
"hashlink",
|
|
2814
3129
|
"hex",
|
|
2815
|
-
"indexmap 2.2.
|
|
3130
|
+
"indexmap 2.2.6",
|
|
2816
3131
|
"log",
|
|
2817
3132
|
"memchr",
|
|
2818
3133
|
"once_cell",
|
|
2819
3134
|
"paste",
|
|
2820
3135
|
"percent-encoding",
|
|
2821
|
-
"rustls",
|
|
2822
|
-
"rustls-pemfile",
|
|
3136
|
+
"rustls 0.21.11",
|
|
3137
|
+
"rustls-pemfile 1.0.4",
|
|
2823
3138
|
"serde",
|
|
2824
3139
|
"serde_json",
|
|
2825
3140
|
"sha2",
|
|
@@ -2831,14 +3146,14 @@ dependencies = [
|
|
|
2831
3146
|
"tracing",
|
|
2832
3147
|
"url",
|
|
2833
3148
|
"uuid",
|
|
2834
|
-
"webpki-roots",
|
|
3149
|
+
"webpki-roots 0.25.4",
|
|
2835
3150
|
]
|
|
2836
3151
|
|
|
2837
3152
|
[[package]]
|
|
2838
3153
|
name = "sqlx-macros"
|
|
2839
|
-
version = "0.7.
|
|
3154
|
+
version = "0.7.4"
|
|
2840
3155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2841
|
-
checksum = "
|
|
3156
|
+
checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127"
|
|
2842
3157
|
dependencies = [
|
|
2843
3158
|
"proc-macro2",
|
|
2844
3159
|
"quote",
|
|
@@ -2849,11 +3164,10 @@ dependencies = [
|
|
|
2849
3164
|
|
|
2850
3165
|
[[package]]
|
|
2851
3166
|
name = "sqlx-macros-core"
|
|
2852
|
-
version = "0.7.
|
|
3167
|
+
version = "0.7.4"
|
|
2853
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
-
checksum = "
|
|
3169
|
+
checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8"
|
|
2855
3170
|
dependencies = [
|
|
2856
|
-
"atomic-write-file",
|
|
2857
3171
|
"dotenvy",
|
|
2858
3172
|
"either",
|
|
2859
3173
|
"heck",
|
|
@@ -2876,13 +3190,13 @@ dependencies = [
|
|
|
2876
3190
|
|
|
2877
3191
|
[[package]]
|
|
2878
3192
|
name = "sqlx-mysql"
|
|
2879
|
-
version = "0.7.
|
|
3193
|
+
version = "0.7.4"
|
|
2880
3194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
-
checksum = "
|
|
3195
|
+
checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418"
|
|
2882
3196
|
dependencies = [
|
|
2883
3197
|
"atoi",
|
|
2884
3198
|
"base64 0.21.7",
|
|
2885
|
-
"bitflags 2.
|
|
3199
|
+
"bitflags 2.5.0",
|
|
2886
3200
|
"byteorder",
|
|
2887
3201
|
"bytes",
|
|
2888
3202
|
"chrono",
|
|
@@ -2904,7 +3218,7 @@ dependencies = [
|
|
|
2904
3218
|
"memchr",
|
|
2905
3219
|
"once_cell",
|
|
2906
3220
|
"percent-encoding",
|
|
2907
|
-
"rand
|
|
3221
|
+
"rand",
|
|
2908
3222
|
"rsa",
|
|
2909
3223
|
"serde",
|
|
2910
3224
|
"sha1",
|
|
@@ -2920,13 +3234,13 @@ dependencies = [
|
|
|
2920
3234
|
|
|
2921
3235
|
[[package]]
|
|
2922
3236
|
name = "sqlx-postgres"
|
|
2923
|
-
version = "0.7.
|
|
3237
|
+
version = "0.7.4"
|
|
2924
3238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
-
checksum = "
|
|
3239
|
+
checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e"
|
|
2926
3240
|
dependencies = [
|
|
2927
3241
|
"atoi",
|
|
2928
3242
|
"base64 0.21.7",
|
|
2929
|
-
"bitflags 2.
|
|
3243
|
+
"bitflags 2.5.0",
|
|
2930
3244
|
"byteorder",
|
|
2931
3245
|
"chrono",
|
|
2932
3246
|
"crc",
|
|
@@ -2945,10 +3259,9 @@ dependencies = [
|
|
|
2945
3259
|
"md-5",
|
|
2946
3260
|
"memchr",
|
|
2947
3261
|
"once_cell",
|
|
2948
|
-
"rand
|
|
3262
|
+
"rand",
|
|
2949
3263
|
"serde",
|
|
2950
3264
|
"serde_json",
|
|
2951
|
-
"sha1",
|
|
2952
3265
|
"sha2",
|
|
2953
3266
|
"smallvec",
|
|
2954
3267
|
"sqlx-core",
|
|
@@ -2961,9 +3274,9 @@ dependencies = [
|
|
|
2961
3274
|
|
|
2962
3275
|
[[package]]
|
|
2963
3276
|
name = "sqlx-sqlite"
|
|
2964
|
-
version = "0.7.
|
|
3277
|
+
version = "0.7.4"
|
|
2965
3278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
-
checksum = "
|
|
3279
|
+
checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa"
|
|
2967
3280
|
dependencies = [
|
|
2968
3281
|
"atoi",
|
|
2969
3282
|
"chrono",
|
|
@@ -3020,9 +3333,9 @@ dependencies = [
|
|
|
3020
3333
|
|
|
3021
3334
|
[[package]]
|
|
3022
3335
|
name = "syn"
|
|
3023
|
-
version = "2.0.
|
|
3336
|
+
version = "2.0.60"
|
|
3024
3337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
-
checksum = "
|
|
3338
|
+
checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
|
|
3026
3339
|
dependencies = [
|
|
3027
3340
|
"proc-macro2",
|
|
3028
3341
|
"quote",
|
|
@@ -3031,75 +3344,53 @@ dependencies = [
|
|
|
3031
3344
|
|
|
3032
3345
|
[[package]]
|
|
3033
3346
|
name = "sync_wrapper"
|
|
3034
|
-
version = "0.1
|
|
3035
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
3037
|
-
|
|
3038
|
-
[[package]]
|
|
3039
|
-
name = "system-configuration"
|
|
3040
|
-
version = "0.5.1"
|
|
3041
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
-
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
3043
|
-
dependencies = [
|
|
3044
|
-
"bitflags 1.3.2",
|
|
3045
|
-
"core-foundation",
|
|
3046
|
-
"system-configuration-sys",
|
|
3047
|
-
]
|
|
3048
|
-
|
|
3049
|
-
[[package]]
|
|
3050
|
-
name = "system-configuration-sys"
|
|
3051
|
-
version = "0.5.0"
|
|
3347
|
+
version = "1.0.1"
|
|
3052
3348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3053
|
-
checksum = "
|
|
3054
|
-
dependencies = [
|
|
3055
|
-
"core-foundation-sys",
|
|
3056
|
-
"libc",
|
|
3057
|
-
]
|
|
3349
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
|
3058
3350
|
|
|
3059
3351
|
[[package]]
|
|
3060
3352
|
name = "target-lexicon"
|
|
3061
|
-
version = "0.12.
|
|
3353
|
+
version = "0.12.14"
|
|
3062
3354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3063
|
-
checksum = "
|
|
3355
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
3064
3356
|
|
|
3065
3357
|
[[package]]
|
|
3066
3358
|
name = "tempfile"
|
|
3067
|
-
version = "3.
|
|
3359
|
+
version = "3.10.1"
|
|
3068
3360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
-
checksum = "
|
|
3361
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
3070
3362
|
dependencies = [
|
|
3071
3363
|
"cfg-if",
|
|
3072
|
-
"fastrand
|
|
3073
|
-
"redox_syscall",
|
|
3364
|
+
"fastrand",
|
|
3074
3365
|
"rustix",
|
|
3075
3366
|
"windows-sys 0.52.0",
|
|
3076
3367
|
]
|
|
3077
3368
|
|
|
3078
3369
|
[[package]]
|
|
3079
3370
|
name = "thiserror"
|
|
3080
|
-
version = "1.0.
|
|
3371
|
+
version = "1.0.63"
|
|
3081
3372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
-
checksum = "
|
|
3373
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
|
3083
3374
|
dependencies = [
|
|
3084
3375
|
"thiserror-impl",
|
|
3085
3376
|
]
|
|
3086
3377
|
|
|
3087
3378
|
[[package]]
|
|
3088
3379
|
name = "thiserror-impl"
|
|
3089
|
-
version = "1.0.
|
|
3380
|
+
version = "1.0.63"
|
|
3090
3381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
-
checksum = "
|
|
3382
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
|
3092
3383
|
dependencies = [
|
|
3093
3384
|
"proc-macro2",
|
|
3094
3385
|
"quote",
|
|
3095
|
-
"syn 2.0.
|
|
3386
|
+
"syn 2.0.60",
|
|
3096
3387
|
]
|
|
3097
3388
|
|
|
3098
3389
|
[[package]]
|
|
3099
3390
|
name = "thread_local"
|
|
3100
|
-
version = "1.1.
|
|
3391
|
+
version = "1.1.8"
|
|
3101
3392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
-
checksum = "
|
|
3393
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
3103
3394
|
dependencies = [
|
|
3104
3395
|
"cfg-if",
|
|
3105
3396
|
"once_cell",
|
|
@@ -3107,12 +3398,13 @@ dependencies = [
|
|
|
3107
3398
|
|
|
3108
3399
|
[[package]]
|
|
3109
3400
|
name = "time"
|
|
3110
|
-
version = "0.3.
|
|
3401
|
+
version = "0.3.36"
|
|
3111
3402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
-
checksum = "
|
|
3403
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
3113
3404
|
dependencies = [
|
|
3114
3405
|
"deranged",
|
|
3115
3406
|
"itoa",
|
|
3407
|
+
"num-conv",
|
|
3116
3408
|
"powerfmt",
|
|
3117
3409
|
"serde",
|
|
3118
3410
|
"time-core",
|
|
@@ -3127,13 +3419,24 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
|
3127
3419
|
|
|
3128
3420
|
[[package]]
|
|
3129
3421
|
name = "time-macros"
|
|
3130
|
-
version = "0.2.
|
|
3422
|
+
version = "0.2.18"
|
|
3131
3423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
-
checksum = "
|
|
3424
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
3133
3425
|
dependencies = [
|
|
3426
|
+
"num-conv",
|
|
3134
3427
|
"time-core",
|
|
3135
3428
|
]
|
|
3136
3429
|
|
|
3430
|
+
[[package]]
|
|
3431
|
+
name = "tinytemplate"
|
|
3432
|
+
version = "1.2.1"
|
|
3433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3434
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3435
|
+
dependencies = [
|
|
3436
|
+
"serde",
|
|
3437
|
+
"serde_json",
|
|
3438
|
+
]
|
|
3439
|
+
|
|
3137
3440
|
[[package]]
|
|
3138
3441
|
name = "tinyvec"
|
|
3139
3442
|
version = "1.6.0"
|
|
@@ -3151,9 +3454,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3151
3454
|
|
|
3152
3455
|
[[package]]
|
|
3153
3456
|
name = "tokio"
|
|
3154
|
-
version = "1.
|
|
3457
|
+
version = "1.38.0"
|
|
3155
3458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
-
checksum = "
|
|
3459
|
+
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
|
|
3157
3460
|
dependencies = [
|
|
3158
3461
|
"backtrace",
|
|
3159
3462
|
"bytes",
|
|
@@ -3170,30 +3473,31 @@ dependencies = [
|
|
|
3170
3473
|
|
|
3171
3474
|
[[package]]
|
|
3172
3475
|
name = "tokio-macros"
|
|
3173
|
-
version = "2.
|
|
3476
|
+
version = "2.3.0"
|
|
3174
3477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
-
checksum = "
|
|
3478
|
+
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
|
|
3176
3479
|
dependencies = [
|
|
3177
3480
|
"proc-macro2",
|
|
3178
3481
|
"quote",
|
|
3179
|
-
"syn 2.0.
|
|
3482
|
+
"syn 2.0.60",
|
|
3180
3483
|
]
|
|
3181
3484
|
|
|
3182
3485
|
[[package]]
|
|
3183
3486
|
name = "tokio-rustls"
|
|
3184
|
-
version = "0.
|
|
3487
|
+
version = "0.26.0"
|
|
3185
3488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
-
checksum = "
|
|
3489
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
|
3187
3490
|
dependencies = [
|
|
3188
|
-
"rustls",
|
|
3491
|
+
"rustls 0.23.10",
|
|
3492
|
+
"rustls-pki-types",
|
|
3189
3493
|
"tokio",
|
|
3190
3494
|
]
|
|
3191
3495
|
|
|
3192
3496
|
[[package]]
|
|
3193
3497
|
name = "tokio-stream"
|
|
3194
|
-
version = "0.1.
|
|
3498
|
+
version = "0.1.15"
|
|
3195
3499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
-
checksum = "
|
|
3500
|
+
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
|
|
3197
3501
|
dependencies = [
|
|
3198
3502
|
"futures-core",
|
|
3199
3503
|
"pin-project-lite",
|
|
@@ -3223,6 +3527,28 @@ dependencies = [
|
|
|
3223
3527
|
"serde",
|
|
3224
3528
|
]
|
|
3225
3529
|
|
|
3530
|
+
[[package]]
|
|
3531
|
+
name = "tower"
|
|
3532
|
+
version = "0.4.13"
|
|
3533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
3535
|
+
dependencies = [
|
|
3536
|
+
"futures-core",
|
|
3537
|
+
"futures-util",
|
|
3538
|
+
"pin-project",
|
|
3539
|
+
"pin-project-lite",
|
|
3540
|
+
"tokio",
|
|
3541
|
+
"tower-layer",
|
|
3542
|
+
"tower-service",
|
|
3543
|
+
"tracing",
|
|
3544
|
+
]
|
|
3545
|
+
|
|
3546
|
+
[[package]]
|
|
3547
|
+
name = "tower-layer"
|
|
3548
|
+
version = "0.3.2"
|
|
3549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
3551
|
+
|
|
3226
3552
|
[[package]]
|
|
3227
3553
|
name = "tower-service"
|
|
3228
3554
|
version = "0.3.2"
|
|
@@ -3243,9 +3569,9 @@ dependencies = [
|
|
|
3243
3569
|
|
|
3244
3570
|
[[package]]
|
|
3245
3571
|
name = "tracing-actix-web"
|
|
3246
|
-
version = "0.7.
|
|
3572
|
+
version = "0.7.11"
|
|
3247
3573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3248
|
-
checksum = "
|
|
3574
|
+
checksum = "4ee9e39a66d9b615644893ffc1704d2a89b5b315b7fd0228ad3182ca9a306b19"
|
|
3249
3575
|
dependencies = [
|
|
3250
3576
|
"actix-web",
|
|
3251
3577
|
"mutually_exclusive_features",
|
|
@@ -3262,7 +3588,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
|
3262
3588
|
dependencies = [
|
|
3263
3589
|
"proc-macro2",
|
|
3264
3590
|
"quote",
|
|
3265
|
-
"syn 2.0.
|
|
3591
|
+
"syn 2.0.60",
|
|
3266
3592
|
]
|
|
3267
3593
|
|
|
3268
3594
|
[[package]]
|
|
@@ -3271,7 +3597,7 @@ version = "0.3.9"
|
|
|
3271
3597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3272
3598
|
checksum = "b5c266b9ac83dedf0e0385ad78514949e6d89491269e7065bee51d2bb8ec7373"
|
|
3273
3599
|
dependencies = [
|
|
3274
|
-
"ahash 0.8.
|
|
3600
|
+
"ahash 0.8.11",
|
|
3275
3601
|
"gethostname",
|
|
3276
3602
|
"log",
|
|
3277
3603
|
"serde",
|
|
@@ -3375,18 +3701,18 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
|
3375
3701
|
|
|
3376
3702
|
[[package]]
|
|
3377
3703
|
name = "unicode-normalization"
|
|
3378
|
-
version = "0.1.
|
|
3704
|
+
version = "0.1.23"
|
|
3379
3705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
-
checksum = "
|
|
3706
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3381
3707
|
dependencies = [
|
|
3382
3708
|
"tinyvec",
|
|
3383
3709
|
]
|
|
3384
3710
|
|
|
3385
3711
|
[[package]]
|
|
3386
3712
|
name = "unicode-segmentation"
|
|
3387
|
-
version = "1.
|
|
3713
|
+
version = "1.11.0"
|
|
3388
3714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
-
checksum = "
|
|
3715
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3390
3716
|
|
|
3391
3717
|
[[package]]
|
|
3392
3718
|
name = "unicode_categories"
|
|
@@ -3396,9 +3722,9 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
|
3396
3722
|
|
|
3397
3723
|
[[package]]
|
|
3398
3724
|
name = "unindent"
|
|
3399
|
-
version = "0.
|
|
3725
|
+
version = "0.2.3"
|
|
3400
3726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3401
|
-
checksum = "
|
|
3727
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3402
3728
|
|
|
3403
3729
|
[[package]]
|
|
3404
3730
|
name = "untrusted"
|
|
@@ -3415,7 +3741,6 @@ dependencies = [
|
|
|
3415
3741
|
"form_urlencoded",
|
|
3416
3742
|
"idna",
|
|
3417
3743
|
"percent-encoding",
|
|
3418
|
-
"serde",
|
|
3419
3744
|
]
|
|
3420
3745
|
|
|
3421
3746
|
[[package]]
|
|
@@ -3426,11 +3751,11 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
|
3426
3751
|
|
|
3427
3752
|
[[package]]
|
|
3428
3753
|
name = "uuid"
|
|
3429
|
-
version = "1.
|
|
3754
|
+
version = "1.10.0"
|
|
3430
3755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
-
checksum = "
|
|
3756
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
3432
3757
|
dependencies = [
|
|
3433
|
-
"getrandom
|
|
3758
|
+
"getrandom",
|
|
3434
3759
|
]
|
|
3435
3760
|
|
|
3436
3761
|
[[package]]
|
|
@@ -3452,10 +3777,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3452
3777
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
3453
3778
|
|
|
3454
3779
|
[[package]]
|
|
3455
|
-
name = "
|
|
3456
|
-
version = "
|
|
3780
|
+
name = "walkdir"
|
|
3781
|
+
version = "2.5.0"
|
|
3457
3782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
-
checksum = "
|
|
3783
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3784
|
+
dependencies = [
|
|
3785
|
+
"same-file",
|
|
3786
|
+
"winapi-util",
|
|
3787
|
+
]
|
|
3459
3788
|
|
|
3460
3789
|
[[package]]
|
|
3461
3790
|
name = "want"
|
|
@@ -3468,21 +3797,21 @@ dependencies = [
|
|
|
3468
3797
|
|
|
3469
3798
|
[[package]]
|
|
3470
3799
|
name = "wasi"
|
|
3471
|
-
version = "0.
|
|
3800
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3472
3801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3473
|
-
checksum = "
|
|
3802
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3474
3803
|
|
|
3475
3804
|
[[package]]
|
|
3476
|
-
name = "
|
|
3477
|
-
version = "0.
|
|
3805
|
+
name = "wasite"
|
|
3806
|
+
version = "0.1.0"
|
|
3478
3807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3479
|
-
checksum = "
|
|
3808
|
+
checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
|
|
3480
3809
|
|
|
3481
3810
|
[[package]]
|
|
3482
3811
|
name = "wasm-bindgen"
|
|
3483
|
-
version = "0.2.
|
|
3812
|
+
version = "0.2.92"
|
|
3484
3813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3485
|
-
checksum = "
|
|
3814
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
3486
3815
|
dependencies = [
|
|
3487
3816
|
"cfg-if",
|
|
3488
3817
|
"wasm-bindgen-macro",
|
|
@@ -3490,24 +3819,24 @@ dependencies = [
|
|
|
3490
3819
|
|
|
3491
3820
|
[[package]]
|
|
3492
3821
|
name = "wasm-bindgen-backend"
|
|
3493
|
-
version = "0.2.
|
|
3822
|
+
version = "0.2.92"
|
|
3494
3823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3495
|
-
checksum = "
|
|
3824
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
3496
3825
|
dependencies = [
|
|
3497
3826
|
"bumpalo",
|
|
3498
3827
|
"log",
|
|
3499
3828
|
"once_cell",
|
|
3500
3829
|
"proc-macro2",
|
|
3501
3830
|
"quote",
|
|
3502
|
-
"syn 2.0.
|
|
3831
|
+
"syn 2.0.60",
|
|
3503
3832
|
"wasm-bindgen-shared",
|
|
3504
3833
|
]
|
|
3505
3834
|
|
|
3506
3835
|
[[package]]
|
|
3507
3836
|
name = "wasm-bindgen-futures"
|
|
3508
|
-
version = "0.4.
|
|
3837
|
+
version = "0.4.42"
|
|
3509
3838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
-
checksum = "
|
|
3839
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
3511
3840
|
dependencies = [
|
|
3512
3841
|
"cfg-if",
|
|
3513
3842
|
"js-sys",
|
|
@@ -3517,9 +3846,9 @@ dependencies = [
|
|
|
3517
3846
|
|
|
3518
3847
|
[[package]]
|
|
3519
3848
|
name = "wasm-bindgen-macro"
|
|
3520
|
-
version = "0.2.
|
|
3849
|
+
version = "0.2.92"
|
|
3521
3850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3522
|
-
checksum = "
|
|
3851
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
3523
3852
|
dependencies = [
|
|
3524
3853
|
"quote",
|
|
3525
3854
|
"wasm-bindgen-macro-support",
|
|
@@ -3527,28 +3856,28 @@ dependencies = [
|
|
|
3527
3856
|
|
|
3528
3857
|
[[package]]
|
|
3529
3858
|
name = "wasm-bindgen-macro-support"
|
|
3530
|
-
version = "0.2.
|
|
3859
|
+
version = "0.2.92"
|
|
3531
3860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
|
-
checksum = "
|
|
3861
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
3533
3862
|
dependencies = [
|
|
3534
3863
|
"proc-macro2",
|
|
3535
3864
|
"quote",
|
|
3536
|
-
"syn 2.0.
|
|
3865
|
+
"syn 2.0.60",
|
|
3537
3866
|
"wasm-bindgen-backend",
|
|
3538
3867
|
"wasm-bindgen-shared",
|
|
3539
3868
|
]
|
|
3540
3869
|
|
|
3541
3870
|
[[package]]
|
|
3542
3871
|
name = "wasm-bindgen-shared"
|
|
3543
|
-
version = "0.2.
|
|
3872
|
+
version = "0.2.92"
|
|
3544
3873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
|
-
checksum = "
|
|
3874
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
3546
3875
|
|
|
3547
3876
|
[[package]]
|
|
3548
3877
|
name = "web-sys"
|
|
3549
|
-
version = "0.3.
|
|
3878
|
+
version = "0.3.69"
|
|
3550
3879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3551
|
-
checksum = "
|
|
3880
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
3552
3881
|
dependencies = [
|
|
3553
3882
|
"js-sys",
|
|
3554
3883
|
"wasm-bindgen",
|
|
@@ -3556,15 +3885,28 @@ dependencies = [
|
|
|
3556
3885
|
|
|
3557
3886
|
[[package]]
|
|
3558
3887
|
name = "webpki-roots"
|
|
3559
|
-
version = "0.25.
|
|
3888
|
+
version = "0.25.4"
|
|
3889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3890
|
+
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
|
|
3891
|
+
|
|
3892
|
+
[[package]]
|
|
3893
|
+
name = "webpki-roots"
|
|
3894
|
+
version = "0.26.1"
|
|
3560
3895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3561
|
-
checksum = "
|
|
3896
|
+
checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
|
|
3897
|
+
dependencies = [
|
|
3898
|
+
"rustls-pki-types",
|
|
3899
|
+
]
|
|
3562
3900
|
|
|
3563
3901
|
[[package]]
|
|
3564
3902
|
name = "whoami"
|
|
3565
|
-
version = "1.
|
|
3903
|
+
version = "1.5.1"
|
|
3566
3904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3567
|
-
checksum = "
|
|
3905
|
+
checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
|
|
3906
|
+
dependencies = [
|
|
3907
|
+
"redox_syscall",
|
|
3908
|
+
"wasite",
|
|
3909
|
+
]
|
|
3568
3910
|
|
|
3569
3911
|
[[package]]
|
|
3570
3912
|
name = "winapi"
|
|
@@ -3582,6 +3924,15 @@ version = "0.4.0"
|
|
|
3582
3924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3583
3925
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3584
3926
|
|
|
3927
|
+
[[package]]
|
|
3928
|
+
name = "winapi-util"
|
|
3929
|
+
version = "0.1.6"
|
|
3930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3931
|
+
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
|
|
3932
|
+
dependencies = [
|
|
3933
|
+
"winapi",
|
|
3934
|
+
]
|
|
3935
|
+
|
|
3585
3936
|
[[package]]
|
|
3586
3937
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
3587
3938
|
version = "0.4.0"
|
|
@@ -3594,7 +3945,7 @@ version = "0.52.0"
|
|
|
3594
3945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
3946
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
3596
3947
|
dependencies = [
|
|
3597
|
-
"windows-targets 0.52.
|
|
3948
|
+
"windows-targets 0.52.5",
|
|
3598
3949
|
]
|
|
3599
3950
|
|
|
3600
3951
|
[[package]]
|
|
@@ -3612,7 +3963,7 @@ version = "0.52.0"
|
|
|
3612
3963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
3964
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3614
3965
|
dependencies = [
|
|
3615
|
-
"windows-targets 0.52.
|
|
3966
|
+
"windows-targets 0.52.5",
|
|
3616
3967
|
]
|
|
3617
3968
|
|
|
3618
3969
|
[[package]]
|
|
@@ -3632,17 +3983,18 @@ dependencies = [
|
|
|
3632
3983
|
|
|
3633
3984
|
[[package]]
|
|
3634
3985
|
name = "windows-targets"
|
|
3635
|
-
version = "0.52.
|
|
3986
|
+
version = "0.52.5"
|
|
3636
3987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
-
checksum = "
|
|
3988
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
3638
3989
|
dependencies = [
|
|
3639
|
-
"windows_aarch64_gnullvm 0.52.
|
|
3640
|
-
"windows_aarch64_msvc 0.52.
|
|
3641
|
-
"windows_i686_gnu 0.52.
|
|
3642
|
-
"
|
|
3643
|
-
"
|
|
3644
|
-
"
|
|
3645
|
-
"
|
|
3990
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
3991
|
+
"windows_aarch64_msvc 0.52.5",
|
|
3992
|
+
"windows_i686_gnu 0.52.5",
|
|
3993
|
+
"windows_i686_gnullvm",
|
|
3994
|
+
"windows_i686_msvc 0.52.5",
|
|
3995
|
+
"windows_x86_64_gnu 0.52.5",
|
|
3996
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
3997
|
+
"windows_x86_64_msvc 0.52.5",
|
|
3646
3998
|
]
|
|
3647
3999
|
|
|
3648
4000
|
[[package]]
|
|
@@ -3653,9 +4005,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
|
3653
4005
|
|
|
3654
4006
|
[[package]]
|
|
3655
4007
|
name = "windows_aarch64_gnullvm"
|
|
3656
|
-
version = "0.52.
|
|
4008
|
+
version = "0.52.5"
|
|
3657
4009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3658
|
-
checksum = "
|
|
4010
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
3659
4011
|
|
|
3660
4012
|
[[package]]
|
|
3661
4013
|
name = "windows_aarch64_msvc"
|
|
@@ -3665,9 +4017,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
|
3665
4017
|
|
|
3666
4018
|
[[package]]
|
|
3667
4019
|
name = "windows_aarch64_msvc"
|
|
3668
|
-
version = "0.52.
|
|
4020
|
+
version = "0.52.5"
|
|
3669
4021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3670
|
-
checksum = "
|
|
4022
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
3671
4023
|
|
|
3672
4024
|
[[package]]
|
|
3673
4025
|
name = "windows_i686_gnu"
|
|
@@ -3677,9 +4029,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
|
3677
4029
|
|
|
3678
4030
|
[[package]]
|
|
3679
4031
|
name = "windows_i686_gnu"
|
|
3680
|
-
version = "0.52.
|
|
4032
|
+
version = "0.52.5"
|
|
4033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4034
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
4035
|
+
|
|
4036
|
+
[[package]]
|
|
4037
|
+
name = "windows_i686_gnullvm"
|
|
4038
|
+
version = "0.52.5"
|
|
3681
4039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3682
|
-
checksum = "
|
|
4040
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
3683
4041
|
|
|
3684
4042
|
[[package]]
|
|
3685
4043
|
name = "windows_i686_msvc"
|
|
@@ -3689,9 +4047,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
|
3689
4047
|
|
|
3690
4048
|
[[package]]
|
|
3691
4049
|
name = "windows_i686_msvc"
|
|
3692
|
-
version = "0.52.
|
|
4050
|
+
version = "0.52.5"
|
|
3693
4051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3694
|
-
checksum = "
|
|
4052
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
3695
4053
|
|
|
3696
4054
|
[[package]]
|
|
3697
4055
|
name = "windows_x86_64_gnu"
|
|
@@ -3701,9 +4059,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
|
3701
4059
|
|
|
3702
4060
|
[[package]]
|
|
3703
4061
|
name = "windows_x86_64_gnu"
|
|
3704
|
-
version = "0.52.
|
|
4062
|
+
version = "0.52.5"
|
|
3705
4063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
4064
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
3707
4065
|
|
|
3708
4066
|
[[package]]
|
|
3709
4067
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3713,9 +4071,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
|
3713
4071
|
|
|
3714
4072
|
[[package]]
|
|
3715
4073
|
name = "windows_x86_64_gnullvm"
|
|
3716
|
-
version = "0.52.
|
|
4074
|
+
version = "0.52.5"
|
|
3717
4075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3718
|
-
checksum = "
|
|
4076
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
3719
4077
|
|
|
3720
4078
|
[[package]]
|
|
3721
4079
|
name = "windows_x86_64_msvc"
|
|
@@ -3725,15 +4083,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
3725
4083
|
|
|
3726
4084
|
[[package]]
|
|
3727
4085
|
name = "windows_x86_64_msvc"
|
|
3728
|
-
version = "0.52.
|
|
4086
|
+
version = "0.52.5"
|
|
3729
4087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3730
|
-
checksum = "
|
|
4088
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
3731
4089
|
|
|
3732
4090
|
[[package]]
|
|
3733
4091
|
name = "winreg"
|
|
3734
|
-
version = "0.
|
|
4092
|
+
version = "0.52.0"
|
|
3735
4093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3736
|
-
checksum = "
|
|
4094
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
3737
4095
|
dependencies = [
|
|
3738
4096
|
"cfg-if",
|
|
3739
4097
|
"windows-sys 0.48.0",
|
|
@@ -3741,24 +4099,26 @@ dependencies = [
|
|
|
3741
4099
|
|
|
3742
4100
|
[[package]]
|
|
3743
4101
|
name = "wiremock"
|
|
3744
|
-
version = "0.
|
|
4102
|
+
version = "0.6.0"
|
|
3745
4103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
-
checksum = "
|
|
4104
|
+
checksum = "ec874e1eef0df2dcac546057fe5e29186f09c378181cd7b635b4b7bcc98e9d81"
|
|
3747
4105
|
dependencies = [
|
|
3748
4106
|
"assert-json-diff",
|
|
3749
4107
|
"async-trait",
|
|
3750
4108
|
"base64 0.21.7",
|
|
3751
4109
|
"deadpool",
|
|
3752
4110
|
"futures",
|
|
3753
|
-
"
|
|
3754
|
-
"http-
|
|
4111
|
+
"http 1.1.0",
|
|
4112
|
+
"http-body-util",
|
|
3755
4113
|
"hyper",
|
|
4114
|
+
"hyper-util",
|
|
3756
4115
|
"log",
|
|
3757
4116
|
"once_cell",
|
|
3758
4117
|
"regex",
|
|
3759
4118
|
"serde",
|
|
3760
4119
|
"serde_json",
|
|
3761
4120
|
"tokio",
|
|
4121
|
+
"url",
|
|
3762
4122
|
]
|
|
3763
4123
|
|
|
3764
4124
|
[[package]]
|
|
@@ -3787,7 +4147,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
|
3787
4147
|
dependencies = [
|
|
3788
4148
|
"proc-macro2",
|
|
3789
4149
|
"quote",
|
|
3790
|
-
"syn 2.0.
|
|
4150
|
+
"syn 2.0.60",
|
|
3791
4151
|
]
|
|
3792
4152
|
|
|
3793
4153
|
[[package]]
|
|
@@ -3798,27 +4158,27 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
|
|
|
3798
4158
|
|
|
3799
4159
|
[[package]]
|
|
3800
4160
|
name = "zstd"
|
|
3801
|
-
version = "0.13.
|
|
4161
|
+
version = "0.13.1"
|
|
3802
4162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
-
checksum = "
|
|
4163
|
+
checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
|
|
3804
4164
|
dependencies = [
|
|
3805
4165
|
"zstd-safe",
|
|
3806
4166
|
]
|
|
3807
4167
|
|
|
3808
4168
|
[[package]]
|
|
3809
4169
|
name = "zstd-safe"
|
|
3810
|
-
version = "7.
|
|
4170
|
+
version = "7.1.0"
|
|
3811
4171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
-
checksum = "
|
|
4172
|
+
checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
|
|
3813
4173
|
dependencies = [
|
|
3814
4174
|
"zstd-sys",
|
|
3815
4175
|
]
|
|
3816
4176
|
|
|
3817
4177
|
[[package]]
|
|
3818
4178
|
name = "zstd-sys"
|
|
3819
|
-
version = "2.0.
|
|
4179
|
+
version = "2.0.10+zstd.1.5.6"
|
|
3820
4180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
-
checksum = "
|
|
4181
|
+
checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
|
|
3822
4182
|
dependencies = [
|
|
3823
4183
|
"cc",
|
|
3824
4184
|
"pkg-config",
|