python-auditor 0.5.0__tar.gz → 0.6.2__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.
Files changed (142) hide show
  1. {python_auditor-0.5.0 → python_auditor-0.6.2}/Cargo.lock +499 -354
  2. {python_auditor-0.5.0 → python_auditor-0.6.2}/Cargo.toml +10 -9
  3. {python_auditor-0.5.0 → python_auditor-0.6.2}/PKG-INFO +1 -1
  4. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +50 -0
  5. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-36fad28130fa066e2182edb3019f5d7e77a635c6116aa9c8a5b358114fb8c57c.json → python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +4 -2
  6. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +17 -0
  7. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +26 -0
  8. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +26 -0
  9. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +52 -0
  10. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-0de2b3aa2731428f5c749d7c166ab8be945eb01c6515fb3db329e45e39fd7d12.json → python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +2 -2
  11. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +20 -0
  12. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +28 -0
  13. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +26 -0
  14. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-b205b9e460541ad09dcd6de4d75df490a88f4b31b3ef45a9ec68047c39081eb5.json → python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +2 -2
  15. python_auditor-0.6.2/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +52 -0
  16. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/Cargo.toml +33 -38
  17. python_auditor-0.6.2/local_dependencies/auditor/configuration/base.yaml +16 -0
  18. python_auditor-0.6.2/local_dependencies/auditor/configuration/local.yaml +4 -0
  19. python_auditor-0.6.2/local_dependencies/auditor/src/configuration.rs +172 -0
  20. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/constants.rs +0 -1
  21. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/component.rs +1 -1
  22. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/record.rs +52 -9
  23. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/score.rs +1 -1
  24. python_auditor-0.6.2/local_dependencies/auditor/src/lib.rs +25 -0
  25. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/metrics/database.rs +16 -19
  26. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/routes/add.rs +23 -144
  27. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +70 -119
  28. python_auditor-0.6.2/local_dependencies/auditor/src/routes/get.rs +49 -0
  29. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/routes/update.rs +2 -2
  30. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/add.rs +21 -83
  31. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/advanced_queries.rs +42 -69
  32. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/main.rs +0 -1
  33. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/update.rs +9 -40
  34. python_auditor-0.6.2/local_dependencies/auditor-client/.env +1 -0
  35. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +26 -0
  36. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +26 -0
  37. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +12 -0
  38. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +12 -0
  39. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +20 -0
  40. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +12 -0
  41. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +26 -0
  42. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +12 -0
  43. python_auditor-0.6.2/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +12 -0
  44. python_auditor-0.6.2/local_dependencies/auditor-client/Cargo.toml +59 -0
  45. python_auditor-0.6.2/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +260 -0
  46. python_auditor-0.6.2/local_dependencies/auditor-client/benches/configuration/bench.yaml +4 -0
  47. {python_auditor-0.5.0/local_dependencies/auditor → python_auditor-0.6.2/local_dependencies/auditor-client}/benches/configuration.rs +12 -0
  48. python_auditor-0.6.2/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +7 -0
  49. python_auditor-0.6.2/local_dependencies/auditor-client/src/constants.rs +9 -0
  50. python_auditor-0.6.2/local_dependencies/auditor-client/src/database.rs +361 -0
  51. python_auditor-0.5.0/local_dependencies/auditor/src/client/mod.rs → python_auditor-0.6.2/local_dependencies/auditor-client/src/lib.rs +925 -14
  52. python_auditor-0.6.2/scripts/test_add_update_queued.py +72 -0
  53. python_auditor-0.6.2/scripts/test_advanced_query_queued.py +231 -0
  54. python_auditor-0.6.2/scripts/test_bulk_insert_queued.py +74 -0
  55. python_auditor-0.6.2/scripts/test_components_queued.py +72 -0
  56. python_auditor-0.6.2/scripts/test_get_since_queued.py +84 -0
  57. python_auditor-0.6.2/scripts/test_get_single_record_queued.py +63 -0
  58. python_auditor-0.6.2/scripts/test_meta_queued.py +67 -0
  59. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/blocking_client.rs +5 -5
  60. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/builder.rs +42 -3
  61. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/client.rs +22 -22
  62. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/lib.rs +2 -0
  63. python_auditor-0.6.2/src/queued_client.rs +275 -0
  64. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-17f4686d8430a057a076f44db1d54859c3fb4f569d162d7095f8734b87ab73b7.json +0 -100
  65. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-3da9ad5248c244c040b47e27cbbca081b156fd5b88bffac65be6bb7ba7aabafe.json +0 -16
  66. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-4e72ae54be447c525721306d208b926c647e3f8149bbd428a97ecbc9f8bceca5.json +0 -102
  67. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-50c6776ca37b9b56b92848573f32d72f44631c9ff702bb468dc7a7f5520a6f48.json +0 -18
  68. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-520d88dec0363b824ca4af064510c2e837819eb7877850ff8077643a5bdbe3e2.json +0 -26
  69. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-622a95c18c6d5bb7d69e5f557e4742a07db9389fb810005f9e8bc142686c7846.json +0 -28
  70. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-6ba76bcc9e877d3b6e353a4b85a1115d4821d4304b91593614ea39597ae29bc1.json +0 -18
  71. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-6c7c9b840bd8bf36dd80484f6c82787423b2304ccff83a98a57ec398c1b46ddb.json +0 -28
  72. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-80a4ffc9c5af2cf8570c4543df24cc9fc9604f98bc4716ae4f99479af245774e.json +0 -17
  73. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-b4e6b925764d8bdabd3aa358f357fc59f0e71b39e06c82e332185cc9ab0b04ed.json +0 -102
  74. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-e6c7e05a8f9aac8353000db25e8ac0bc54f7ff067ab70715b8659cb835f45af6.json +0 -102
  75. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-f9013f697e7b81594947530172248a0400cfbf7e316d0224b4692475a12a7d7f.json +0 -16
  76. python_auditor-0.5.0/local_dependencies/auditor/benches/benchmark_with_http_request.rs +0 -1106
  77. python_auditor-0.5.0/local_dependencies/auditor/benches/configuration/bench.yaml +0 -2
  78. python_auditor-0.5.0/local_dependencies/auditor/src/lib.rs +0 -540
  79. python_auditor-0.5.0/local_dependencies/auditor/src/routes/get.rs +0 -79
  80. python_auditor-0.5.0/local_dependencies/auditor/tests/api/client.rs +0 -653
  81. {python_auditor-0.5.0 → python_auditor-0.6.2}/.cargo/config.toml +0 -0
  82. {python_auditor-0.5.0 → python_auditor-0.6.2}/.readthedocs.yaml +0 -0
  83. {python_auditor-0.5.0 → python_auditor-0.6.2}/README.md +0 -0
  84. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/Makefile +0 -0
  85. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/api.rst +0 -0
  86. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/changelog.rst +0 -0
  87. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/conf.py +0 -0
  88. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/examples.rst +0 -0
  89. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/index.rst +0 -0
  90. {python_auditor-0.5.0 → python_auditor-0.6.2}/docs/make.bat +0 -0
  91. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/.env +0 -0
  92. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/build.rs +0 -0
  93. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  94. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/configuration/production.yaml +0 -0
  95. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  96. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  97. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  98. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  99. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  100. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  101. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  102. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  103. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  104. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/error.rs +0 -0
  105. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/macros.rs +0 -0
  106. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/main.rs +0 -0
  107. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  108. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  109. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  110. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
  111. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/startup.rs +0 -0
  112. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/src/telemetry.rs +0 -0
  113. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/get.rs +0 -0
  114. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  115. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  116. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  117. {python_auditor-0.5.0 → python_auditor-0.6.2}/local_dependencies/auditor/tests/api/helpers.rs +0 -0
  118. {python_auditor-0.5.0/local_dependencies/auditor → python_auditor-0.6.2/local_dependencies/auditor-client}/benches/README.md +0 -0
  119. {python_auditor-0.5.0/local_dependencies/auditor → python_auditor-0.6.2/local_dependencies/auditor-client}/configuration/base.yaml +0 -0
  120. {python_auditor-0.5.0/local_dependencies/auditor → python_auditor-0.6.2/local_dependencies/auditor-client}/configuration/local.yaml +0 -0
  121. {python_auditor-0.5.0/local_dependencies/auditor → python_auditor-0.6.2/local_dependencies/auditor-client}/src/configuration.rs +0 -0
  122. {python_auditor-0.5.0 → python_auditor-0.6.2}/pyproject.toml +0 -0
  123. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_add_update.py +0 -0
  124. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_add_update_blocking.py +0 -0
  125. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_advanced_query.py +0 -0
  126. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_advanced_query_blocking.py +0 -0
  127. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_bulk_insert.py +0 -0
  128. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_bulk_insert_blocking.py +0 -0
  129. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_components.py +0 -0
  130. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_components_blocking.py +0 -0
  131. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_eq.py +0 -0
  132. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_get_since.py +0 -0
  133. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_get_since_blocking.py +0 -0
  134. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_get_single_record.py +0 -0
  135. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_get_single_record_blocking.py +0 -0
  136. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_meta.py +0 -0
  137. {python_auditor-0.5.0 → python_auditor-0.6.2}/scripts/test_meta_blocking.py +0 -0
  138. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/domain/component.rs +0 -0
  139. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/domain/meta.rs +0 -0
  140. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/domain/mod.rs +0 -0
  141. {python_auditor-0.5.0 → python_auditor-0.6.2}/src/domain/record.rs +0 -0
  142. {python_auditor-0.5.0 → python_auditor-0.6.2}/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.5.0",
11
+ "bitflags 2.6.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.6.0"
24
+ version = "3.8.0"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "d223b13fd481fc0d1f83bb12659ae774d9e3601814c68a0bc539731698cca743"
26
+ checksum = "3ae682f693a9cd7b058f2b0b5d9a6d7728a8555779bedbbc35dd88528611d020"
27
27
  dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
30
30
  "actix-service",
31
31
  "actix-utils",
32
32
  "ahash 0.8.11",
33
- "base64 0.21.7",
34
- "bitflags 2.5.0",
33
+ "base64 0.22.1",
34
+ "bitflags 2.6.0",
35
35
  "brotli",
36
36
  "bytes",
37
37
  "bytestring",
@@ -65,27 +65,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
65
65
  checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66
66
  dependencies = [
67
67
  "quote",
68
- "syn 2.0.60",
68
+ "syn 2.0.72",
69
69
  ]
70
70
 
71
71
  [[package]]
72
72
  name = "actix-router"
73
- version = "0.5.2"
73
+ version = "0.5.3"
74
74
  source = "registry+https://github.com/rust-lang/crates.io-index"
75
- checksum = "d22475596539443685426b6bdadb926ad0ecaefdfc5fb05e5e3441f15463c511"
75
+ checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
76
76
  dependencies = [
77
77
  "bytestring",
78
+ "cfg-if",
78
79
  "http 0.2.12",
79
80
  "regex",
81
+ "regex-lite",
80
82
  "serde",
81
83
  "tracing",
82
84
  ]
83
85
 
84
86
  [[package]]
85
87
  name = "actix-rt"
86
- version = "2.9.0"
88
+ version = "2.10.0"
87
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
88
- checksum = "28f32d40287d3f402ae0028a9d54bef51af15c8769492826a69d28f81893151d"
90
+ checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
89
91
  dependencies = [
90
92
  "futures-core",
91
93
  "tokio",
@@ -93,16 +95,16 @@ dependencies = [
93
95
 
94
96
  [[package]]
95
97
  name = "actix-server"
96
- version = "2.3.0"
98
+ version = "2.4.0"
97
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
98
- checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4"
100
+ checksum = "b02303ce8d4e8be5b855af6cf3c3a08f3eff26880faad82bab679c22d3650cb5"
99
101
  dependencies = [
100
102
  "actix-rt",
101
103
  "actix-service",
102
104
  "actix-utils",
103
105
  "futures-core",
104
106
  "futures-util",
105
- "mio",
107
+ "mio 0.8.11",
106
108
  "socket2",
107
109
  "tokio",
108
110
  "tracing",
@@ -131,9 +133,9 @@ dependencies = [
131
133
 
132
134
  [[package]]
133
135
  name = "actix-web"
134
- version = "4.5.1"
136
+ version = "4.8.0"
135
137
  source = "registry+https://github.com/rust-lang/crates.io-index"
136
- checksum = "43a6556ddebb638c2358714d853257ed226ece6023ef9364f23f0c70737ea984"
138
+ checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff"
137
139
  dependencies = [
138
140
  "actix-codec",
139
141
  "actix-http",
@@ -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,14 +174,14 @@ dependencies = [
171
174
 
172
175
  [[package]]
173
176
  name = "actix-web-codegen"
174
- version = "4.2.2"
177
+ version = "4.3.0"
175
178
  source = "registry+https://github.com/rust-lang/crates.io-index"
176
- checksum = "eb1f50ebbb30eca122b188319a4398b3f7bb4a8cdf50ecfb73bfc6a3c3ce54f5"
179
+ checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
177
180
  dependencies = [
178
181
  "actix-router",
179
182
  "proc-macro2",
180
183
  "quote",
181
- "syn 2.0.60",
184
+ "syn 2.0.72",
182
185
  ]
183
186
 
184
187
  [[package]]
@@ -190,8 +193,8 @@ 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",
@@ -289,15 +292,15 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
289
292
 
290
293
  [[package]]
291
294
  name = "anstyle"
292
- version = "1.0.6"
295
+ version = "1.0.8"
293
296
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
297
+ checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
295
298
 
296
299
  [[package]]
297
300
  name = "anyhow"
298
- version = "1.0.82"
301
+ version = "1.0.86"
299
302
  source = "registry+https://github.com/rust-lang/crates.io-index"
300
- checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
303
+ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
301
304
 
302
305
  [[package]]
303
306
  name = "assert-json-diff"
@@ -311,13 +314,13 @@ dependencies = [
311
314
 
312
315
  [[package]]
313
316
  name = "async-trait"
314
- version = "0.1.80"
317
+ version = "0.1.81"
315
318
  source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
319
+ checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
317
320
  dependencies = [
318
321
  "proc-macro2",
319
322
  "quote",
320
- "syn 2.0.60",
323
+ "syn 2.0.72",
321
324
  ]
322
325
 
323
326
  [[package]]
@@ -329,9 +332,15 @@ dependencies = [
329
332
  "num-traits",
330
333
  ]
331
334
 
335
+ [[package]]
336
+ name = "atomic-waker"
337
+ version = "1.1.2"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
340
+
332
341
  [[package]]
333
342
  name = "auditor"
334
- version = "0.5.0"
343
+ version = "0.6.2"
335
344
  dependencies = [
336
345
  "actix-web",
337
346
  "actix-web-opentelemetry",
@@ -339,21 +348,18 @@ dependencies = [
339
348
  "chrono",
340
349
  "claims",
341
350
  "config",
342
- "criterion",
343
- "criterion-macro",
344
351
  "fake",
345
- "itertools 0.12.1",
352
+ "itertools 0.13.0",
346
353
  "num-traits",
347
354
  "once_cell",
348
- "opentelemetry",
349
- "opentelemetry-prometheus",
355
+ "opentelemetry 0.23.0",
356
+ "opentelemetry-prometheus 0.16.0",
350
357
  "opentelemetry_api",
351
- "opentelemetry_sdk",
358
+ "opentelemetry_sdk 0.23.0",
352
359
  "prometheus",
353
360
  "quickcheck",
354
361
  "quickcheck_macros",
355
362
  "rand",
356
- "rand_distr",
357
363
  "regex",
358
364
  "reqwest",
359
365
  "secrecy",
@@ -376,21 +382,53 @@ dependencies = [
376
382
  "wiremock",
377
383
  ]
378
384
 
385
+ [[package]]
386
+ name = "auditor-client"
387
+ version = "0.6.2"
388
+ dependencies = [
389
+ "anyhow",
390
+ "auditor",
391
+ "bincode",
392
+ "chrono",
393
+ "claims",
394
+ "config",
395
+ "criterion",
396
+ "criterion-macro",
397
+ "fake",
398
+ "itertools 0.13.0",
399
+ "once_cell",
400
+ "rand",
401
+ "rand_distr",
402
+ "reqwest",
403
+ "serde",
404
+ "serde-aux",
405
+ "serde_qs",
406
+ "sqlx",
407
+ "thiserror",
408
+ "tokio",
409
+ "tracing",
410
+ "tracing-subscriber",
411
+ "urlencoding",
412
+ "uuid",
413
+ "wiremock",
414
+ ]
415
+
379
416
  [[package]]
380
417
  name = "auditor-priority-plugin"
381
- version = "0.5.0"
418
+ version = "0.6.2"
382
419
  dependencies = [
383
420
  "actix-web",
384
421
  "actix-web-opentelemetry",
385
422
  "anyhow",
386
423
  "auditor",
424
+ "auditor-client",
387
425
  "chrono",
388
426
  "config",
389
427
  "num-traits",
390
- "opentelemetry",
391
- "opentelemetry-prometheus",
428
+ "opentelemetry 0.23.0",
429
+ "opentelemetry-prometheus 0.16.0",
392
430
  "opentelemetry_api",
393
- "opentelemetry_sdk",
431
+ "opentelemetry_sdk 0.23.0",
394
432
  "prometheus",
395
433
  "serde",
396
434
  "serde-aux",
@@ -405,16 +443,17 @@ dependencies = [
405
443
 
406
444
  [[package]]
407
445
  name = "auditor-slurm-collector"
408
- version = "0.5.0"
446
+ version = "0.6.2"
409
447
  dependencies = [
410
448
  "anyhow",
411
449
  "auditor",
450
+ "auditor-client",
412
451
  "bincode",
413
452
  "chrono",
414
453
  "color-eyre",
415
454
  "config",
416
455
  "fake",
417
- "itertools 0.12.1",
456
+ "itertools 0.13.0",
418
457
  "once_cell",
419
458
  "regex",
420
459
  "serde",
@@ -430,10 +469,11 @@ dependencies = [
430
469
 
431
470
  [[package]]
432
471
  name = "auditor-slurm-epilog-collector"
433
- version = "0.5.0"
472
+ version = "0.6.2"
434
473
  dependencies = [
435
474
  "anyhow",
436
475
  "auditor",
476
+ "auditor-client",
437
477
  "chrono",
438
478
  "config",
439
479
  "regex",
@@ -447,9 +487,9 @@ dependencies = [
447
487
 
448
488
  [[package]]
449
489
  name = "autocfg"
450
- version = "1.2.0"
490
+ version = "1.3.0"
451
491
  source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
492
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
453
493
 
454
494
  [[package]]
455
495
  name = "backtrace"
@@ -480,9 +520,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
480
520
 
481
521
  [[package]]
482
522
  name = "base64"
483
- version = "0.22.0"
523
+ version = "0.22.1"
484
524
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
- checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
525
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
486
526
 
487
527
  [[package]]
488
528
  name = "base64ct"
@@ -507,9 +547,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
507
547
 
508
548
  [[package]]
509
549
  name = "bitflags"
510
- version = "2.5.0"
550
+ version = "2.6.0"
511
551
  source = "registry+https://github.com/rust-lang/crates.io-index"
512
- checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
552
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
513
553
  dependencies = [
514
554
  "serde",
515
555
  ]
@@ -525,9 +565,9 @@ dependencies = [
525
565
 
526
566
  [[package]]
527
567
  name = "brotli"
528
- version = "3.5.0"
568
+ version = "6.0.0"
529
569
  source = "registry+https://github.com/rust-lang/crates.io-index"
530
- checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
570
+ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
531
571
  dependencies = [
532
572
  "alloc-no-stdlib",
533
573
  "alloc-stdlib",
@@ -536,9 +576,9 @@ dependencies = [
536
576
 
537
577
  [[package]]
538
578
  name = "brotli-decompressor"
539
- version = "2.5.1"
579
+ version = "4.0.1"
540
580
  source = "registry+https://github.com/rust-lang/crates.io-index"
541
- checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
581
+ checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
542
582
  dependencies = [
543
583
  "alloc-no-stdlib",
544
584
  "alloc-stdlib",
@@ -558,9 +598,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
558
598
 
559
599
  [[package]]
560
600
  name = "bytes"
561
- version = "1.6.0"
601
+ version = "1.6.1"
562
602
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
- checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
603
+ checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"
564
604
 
565
605
  [[package]]
566
606
  name = "bytestring"
@@ -579,13 +619,12 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
579
619
 
580
620
  [[package]]
581
621
  name = "cc"
582
- version = "1.0.95"
622
+ version = "1.1.7"
583
623
  source = "registry+https://github.com/rust-lang/crates.io-index"
584
- checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
624
+ checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc"
585
625
  dependencies = [
586
626
  "jobserver",
587
627
  "libc",
588
- "once_cell",
589
628
  ]
590
629
 
591
630
  [[package]]
@@ -602,11 +641,9 @@ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
602
641
  dependencies = [
603
642
  "android-tzdata",
604
643
  "iana-time-zone",
605
- "js-sys",
606
644
  "num-traits",
607
645
  "serde",
608
- "wasm-bindgen",
609
- "windows-targets 0.52.5",
646
+ "windows-targets 0.52.6",
610
647
  ]
611
648
 
612
649
  [[package]]
@@ -647,18 +684,18 @@ dependencies = [
647
684
 
648
685
  [[package]]
649
686
  name = "clap"
650
- version = "4.5.4"
687
+ version = "4.5.11"
651
688
  source = "registry+https://github.com/rust-lang/crates.io-index"
652
- checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
689
+ checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"
653
690
  dependencies = [
654
691
  "clap_builder",
655
692
  ]
656
693
 
657
694
  [[package]]
658
695
  name = "clap_builder"
659
- version = "4.5.2"
696
+ version = "4.5.11"
660
697
  source = "registry+https://github.com/rust-lang/crates.io-index"
661
- checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
698
+ checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"
662
699
  dependencies = [
663
700
  "anstyle",
664
701
  "clap_lex",
@@ -666,9 +703,9 @@ dependencies = [
666
703
 
667
704
  [[package]]
668
705
  name = "clap_lex"
669
- version = "0.7.0"
706
+ version = "0.7.2"
670
707
  source = "registry+https://github.com/rust-lang/crates.io-index"
671
- checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
708
+ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
672
709
 
673
710
  [[package]]
674
711
  name = "color-eyre"
@@ -771,9 +808,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
771
808
 
772
809
  [[package]]
773
810
  name = "crc32fast"
774
- version = "1.4.0"
811
+ version = "1.4.2"
775
812
  source = "registry+https://github.com/rust-lang/crates.io-index"
776
- checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
813
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
777
814
  dependencies = [
778
815
  "cfg-if",
779
816
  ]
@@ -808,9 +845,9 @@ dependencies = [
808
845
 
809
846
  [[package]]
810
847
  name = "criterion-macro"
811
- version = "0.3.4"
848
+ version = "0.4.0"
812
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
813
- checksum = "8421c08c2e60050bb24ebfb7232bdd2fcf44fa74c5777b00a71daa7d332a8164"
850
+ checksum = "288a8f36b28a19d7dbd572c76006c0a0eba1f3bf912a254dda211c6f665e7ffc"
814
851
  dependencies = [
815
852
  "proc-macro2",
816
853
  "quote",
@@ -826,15 +863,6 @@ dependencies = [
826
863
  "itertools 0.10.5",
827
864
  ]
828
865
 
829
- [[package]]
830
- name = "crossbeam-channel"
831
- version = "0.5.12"
832
- source = "registry+https://github.com/rust-lang/crates.io-index"
833
- checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
834
- dependencies = [
835
- "crossbeam-utils",
836
- ]
837
-
838
866
  [[package]]
839
867
  name = "crossbeam-deque"
840
868
  version = "0.8.5"
@@ -865,9 +893,9 @@ dependencies = [
865
893
 
866
894
  [[package]]
867
895
  name = "crossbeam-utils"
868
- version = "0.8.19"
896
+ version = "0.8.20"
869
897
  source = "registry+https://github.com/rust-lang/crates.io-index"
870
- checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
898
+ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
871
899
 
872
900
  [[package]]
873
901
  name = "crunchy"
@@ -887,9 +915,9 @@ dependencies = [
887
915
 
888
916
  [[package]]
889
917
  name = "darling"
890
- version = "0.20.8"
918
+ version = "0.20.10"
891
919
  source = "registry+https://github.com/rust-lang/crates.io-index"
892
- checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
920
+ checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
893
921
  dependencies = [
894
922
  "darling_core",
895
923
  "darling_macro",
@@ -897,27 +925,27 @@ dependencies = [
897
925
 
898
926
  [[package]]
899
927
  name = "darling_core"
900
- version = "0.20.8"
928
+ version = "0.20.10"
901
929
  source = "registry+https://github.com/rust-lang/crates.io-index"
902
- checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
930
+ checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
903
931
  dependencies = [
904
932
  "fnv",
905
933
  "ident_case",
906
934
  "proc-macro2",
907
935
  "quote",
908
936
  "strsim",
909
- "syn 2.0.60",
937
+ "syn 2.0.72",
910
938
  ]
911
939
 
912
940
  [[package]]
913
941
  name = "darling_macro"
914
- version = "0.20.8"
942
+ version = "0.20.10"
915
943
  source = "registry+https://github.com/rust-lang/crates.io-index"
916
- checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
944
+ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
917
945
  dependencies = [
918
946
  "darling_core",
919
947
  "quote",
920
- "syn 2.0.60",
948
+ "syn 2.0.72",
921
949
  ]
922
950
 
923
951
  [[package]]
@@ -934,9 +962,9 @@ dependencies = [
934
962
 
935
963
  [[package]]
936
964
  name = "deadpool-runtime"
937
- version = "0.1.3"
965
+ version = "0.1.4"
938
966
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
967
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
940
968
 
941
969
  [[package]]
942
970
  name = "der"
@@ -961,22 +989,22 @@ dependencies = [
961
989
 
962
990
  [[package]]
963
991
  name = "derive_more"
964
- version = "0.99.17"
992
+ version = "0.99.18"
965
993
  source = "registry+https://github.com/rust-lang/crates.io-index"
966
- checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
994
+ checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
967
995
  dependencies = [
968
996
  "convert_case",
969
997
  "proc-macro2",
970
998
  "quote",
971
999
  "rustc_version",
972
- "syn 1.0.109",
1000
+ "syn 2.0.72",
973
1001
  ]
974
1002
 
975
1003
  [[package]]
976
1004
  name = "deunicode"
977
- version = "1.4.4"
1005
+ version = "1.6.0"
978
1006
  source = "registry+https://github.com/rust-lang/crates.io-index"
979
- checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
1007
+ checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
980
1008
 
981
1009
  [[package]]
982
1010
  name = "digest"
@@ -1004,9 +1032,9 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1004
1032
 
1005
1033
  [[package]]
1006
1034
  name = "either"
1007
- version = "1.11.0"
1035
+ version = "1.13.0"
1008
1036
  source = "registry+https://github.com/rust-lang/crates.io-index"
1009
- checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
1037
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
1010
1038
  dependencies = [
1011
1039
  "serde",
1012
1040
  ]
@@ -1038,9 +1066,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1038
1066
 
1039
1067
  [[package]]
1040
1068
  name = "errno"
1041
- version = "0.3.8"
1069
+ version = "0.3.9"
1042
1070
  source = "registry+https://github.com/rust-lang/crates.io-index"
1043
- checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
1071
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
1044
1072
  dependencies = [
1045
1073
  "libc",
1046
1074
  "windows-sys 0.52.0",
@@ -1086,21 +1114,15 @@ dependencies = [
1086
1114
 
1087
1115
  [[package]]
1088
1116
  name = "fastrand"
1089
- version = "2.0.2"
1117
+ version = "2.1.0"
1090
1118
  source = "registry+https://github.com/rust-lang/crates.io-index"
1091
- checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
1092
-
1093
- [[package]]
1094
- name = "finl_unicode"
1095
- version = "1.2.0"
1096
- source = "registry+https://github.com/rust-lang/crates.io-index"
1097
- checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
1119
+ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
1098
1120
 
1099
1121
  [[package]]
1100
1122
  name = "flate2"
1101
- version = "1.0.28"
1123
+ version = "1.0.30"
1102
1124
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
1125
+ checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
1104
1126
  dependencies = [
1105
1127
  "crc32fast",
1106
1128
  "miniz_oxide",
@@ -1114,7 +1136,7 @@ checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
1114
1136
  dependencies = [
1115
1137
  "futures-core",
1116
1138
  "futures-sink",
1117
- "spin 0.9.8",
1139
+ "spin",
1118
1140
  ]
1119
1141
 
1120
1142
  [[package]]
@@ -1199,7 +1221,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
1199
1221
  dependencies = [
1200
1222
  "proc-macro2",
1201
1223
  "quote",
1202
- "syn 2.0.60",
1224
+ "syn 2.0.72",
1203
1225
  ]
1204
1226
 
1205
1227
  [[package]]
@@ -1254,9 +1276,9 @@ dependencies = [
1254
1276
 
1255
1277
  [[package]]
1256
1278
  name = "getrandom"
1257
- version = "0.2.14"
1279
+ version = "0.2.15"
1258
1280
  source = "registry+https://github.com/rust-lang/crates.io-index"
1259
- checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
1281
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1260
1282
  dependencies = [
1261
1283
  "cfg-if",
1262
1284
  "libc",
@@ -1296,15 +1318,15 @@ dependencies = [
1296
1318
 
1297
1319
  [[package]]
1298
1320
  name = "h2"
1299
- version = "0.4.4"
1321
+ version = "0.4.5"
1300
1322
  source = "registry+https://github.com/rust-lang/crates.io-index"
1301
- checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
1323
+ checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
1302
1324
  dependencies = [
1325
+ "atomic-waker",
1303
1326
  "bytes",
1304
1327
  "fnv",
1305
1328
  "futures-core",
1306
1329
  "futures-sink",
1307
- "futures-util",
1308
1330
  "http 1.1.0",
1309
1331
  "indexmap 2.2.6",
1310
1332
  "slab",
@@ -1334,9 +1356,9 @@ dependencies = [
1334
1356
 
1335
1357
  [[package]]
1336
1358
  name = "hashbrown"
1337
- version = "0.14.3"
1359
+ version = "0.14.5"
1338
1360
  source = "registry+https://github.com/rust-lang/crates.io-index"
1339
- checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
1361
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1340
1362
  dependencies = [
1341
1363
  "ahash 0.8.11",
1342
1364
  "allocator-api2",
@@ -1348,7 +1370,7 @@ version = "0.8.4"
1348
1370
  source = "registry+https://github.com/rust-lang/crates.io-index"
1349
1371
  checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
1350
1372
  dependencies = [
1351
- "hashbrown 0.14.3",
1373
+ "hashbrown 0.14.5",
1352
1374
  ]
1353
1375
 
1354
1376
  [[package]]
@@ -1423,9 +1445,9 @@ dependencies = [
1423
1445
 
1424
1446
  [[package]]
1425
1447
  name = "http-body"
1426
- version = "1.0.0"
1448
+ version = "1.0.1"
1427
1449
  source = "registry+https://github.com/rust-lang/crates.io-index"
1428
- checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
1450
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1429
1451
  dependencies = [
1430
1452
  "bytes",
1431
1453
  "http 1.1.0",
@@ -1433,12 +1455,12 @@ dependencies = [
1433
1455
 
1434
1456
  [[package]]
1435
1457
  name = "http-body-util"
1436
- version = "0.1.1"
1458
+ version = "0.1.2"
1437
1459
  source = "registry+https://github.com/rust-lang/crates.io-index"
1438
- checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
1460
+ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1439
1461
  dependencies = [
1440
1462
  "bytes",
1441
- "futures-core",
1463
+ "futures-util",
1442
1464
  "http 1.1.0",
1443
1465
  "http-body",
1444
1466
  "pin-project-lite",
@@ -1446,9 +1468,9 @@ dependencies = [
1446
1468
 
1447
1469
  [[package]]
1448
1470
  name = "httparse"
1449
- version = "1.8.0"
1471
+ version = "1.9.4"
1450
1472
  source = "registry+https://github.com/rust-lang/crates.io-index"
1451
- checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1473
+ checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
1452
1474
 
1453
1475
  [[package]]
1454
1476
  name = "httpdate"
@@ -1458,14 +1480,14 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1458
1480
 
1459
1481
  [[package]]
1460
1482
  name = "hyper"
1461
- version = "1.3.1"
1483
+ version = "1.4.1"
1462
1484
  source = "registry+https://github.com/rust-lang/crates.io-index"
1463
- checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
1485
+ checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
1464
1486
  dependencies = [
1465
1487
  "bytes",
1466
1488
  "futures-channel",
1467
1489
  "futures-util",
1468
- "h2 0.4.4",
1490
+ "h2 0.4.5",
1469
1491
  "http 1.1.0",
1470
1492
  "http-body",
1471
1493
  "httparse",
@@ -1479,26 +1501,27 @@ dependencies = [
1479
1501
 
1480
1502
  [[package]]
1481
1503
  name = "hyper-rustls"
1482
- version = "0.26.0"
1504
+ version = "0.27.2"
1483
1505
  source = "registry+https://github.com/rust-lang/crates.io-index"
1484
- checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
1506
+ checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
1485
1507
  dependencies = [
1486
1508
  "futures-util",
1487
1509
  "http 1.1.0",
1488
1510
  "hyper",
1489
1511
  "hyper-util",
1490
- "rustls 0.22.4",
1512
+ "rustls 0.23.12",
1491
1513
  "rustls-pki-types",
1492
1514
  "tokio",
1493
1515
  "tokio-rustls",
1494
1516
  "tower-service",
1517
+ "webpki-roots 0.26.3",
1495
1518
  ]
1496
1519
 
1497
1520
  [[package]]
1498
1521
  name = "hyper-util"
1499
- version = "0.1.3"
1522
+ version = "0.1.6"
1500
1523
  source = "registry+https://github.com/rust-lang/crates.io-index"
1501
- checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
1524
+ checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
1502
1525
  dependencies = [
1503
1526
  "bytes",
1504
1527
  "futures-channel",
@@ -1577,7 +1600,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
1600
  checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1578
1601
  dependencies = [
1579
1602
  "equivalent",
1580
- "hashbrown 0.14.3",
1603
+ "hashbrown 0.14.5",
1581
1604
  "serde",
1582
1605
  ]
1583
1606
 
@@ -1615,9 +1638,9 @@ dependencies = [
1615
1638
 
1616
1639
  [[package]]
1617
1640
  name = "itertools"
1618
- version = "0.12.1"
1641
+ version = "0.13.0"
1619
1642
  source = "registry+https://github.com/rust-lang/crates.io-index"
1620
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1643
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1621
1644
  dependencies = [
1622
1645
  "either",
1623
1646
  ]
@@ -1630,9 +1653,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1630
1653
 
1631
1654
  [[package]]
1632
1655
  name = "jobserver"
1633
- version = "0.1.31"
1656
+ version = "0.1.32"
1634
1657
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
1658
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1636
1659
  dependencies = [
1637
1660
  "libc",
1638
1661
  ]
@@ -1665,18 +1688,18 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
1665
1688
 
1666
1689
  [[package]]
1667
1690
  name = "lazy_static"
1668
- version = "1.4.0"
1691
+ version = "1.5.0"
1669
1692
  source = "registry+https://github.com/rust-lang/crates.io-index"
1670
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1693
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1671
1694
  dependencies = [
1672
- "spin 0.5.2",
1695
+ "spin",
1673
1696
  ]
1674
1697
 
1675
1698
  [[package]]
1676
1699
  name = "libc"
1677
- version = "0.2.153"
1700
+ version = "0.2.155"
1678
1701
  source = "registry+https://github.com/rust-lang/crates.io-index"
1679
- checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
1702
+ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
1680
1703
 
1681
1704
  [[package]]
1682
1705
  name = "libm"
@@ -1703,9 +1726,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1703
1726
 
1704
1727
  [[package]]
1705
1728
  name = "linux-raw-sys"
1706
- version = "0.4.13"
1729
+ version = "0.4.14"
1707
1730
  source = "registry+https://github.com/rust-lang/crates.io-index"
1708
- checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1731
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1709
1732
 
1710
1733
  [[package]]
1711
1734
  name = "local-channel"
@@ -1726,9 +1749,9 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
1726
1749
 
1727
1750
  [[package]]
1728
1751
  name = "lock_api"
1729
- version = "0.4.11"
1752
+ version = "0.4.12"
1730
1753
  source = "registry+https://github.com/rust-lang/crates.io-index"
1731
- checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
1754
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1732
1755
  dependencies = [
1733
1756
  "autocfg",
1734
1757
  "scopeguard",
@@ -1736,9 +1759,9 @@ dependencies = [
1736
1759
 
1737
1760
  [[package]]
1738
1761
  name = "log"
1739
- version = "0.4.21"
1762
+ version = "0.4.22"
1740
1763
  source = "registry+https://github.com/rust-lang/crates.io-index"
1741
- checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1764
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1742
1765
 
1743
1766
  [[package]]
1744
1767
  name = "matchers"
@@ -1761,9 +1784,9 @@ dependencies = [
1761
1784
 
1762
1785
  [[package]]
1763
1786
  name = "memchr"
1764
- version = "2.7.2"
1787
+ version = "2.7.4"
1765
1788
  source = "registry+https://github.com/rust-lang/crates.io-index"
1766
- checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
1789
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1767
1790
 
1768
1791
  [[package]]
1769
1792
  name = "memoffset"
@@ -1788,9 +1811,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1788
1811
 
1789
1812
  [[package]]
1790
1813
  name = "miniz_oxide"
1791
- version = "0.7.2"
1814
+ version = "0.7.4"
1792
1815
  source = "registry+https://github.com/rust-lang/crates.io-index"
1793
- checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1816
+ checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
1794
1817
  dependencies = [
1795
1818
  "adler",
1796
1819
  ]
@@ -1807,6 +1830,18 @@ dependencies = [
1807
1830
  "windows-sys 0.48.0",
1808
1831
  ]
1809
1832
 
1833
+ [[package]]
1834
+ name = "mio"
1835
+ version = "1.0.1"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
1838
+ dependencies = [
1839
+ "hermit-abi",
1840
+ "libc",
1841
+ "wasi",
1842
+ "windows-sys 0.52.0",
1843
+ ]
1844
+
1810
1845
  [[package]]
1811
1846
  name = "mutually_exclusive_features"
1812
1847
  version = "0.0.3"
@@ -1867,9 +1902,9 @@ dependencies = [
1867
1902
 
1868
1903
  [[package]]
1869
1904
  name = "num-iter"
1870
- version = "0.1.44"
1905
+ version = "0.1.45"
1871
1906
  source = "registry+https://github.com/rust-lang/crates.io-index"
1872
- checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
1907
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1873
1908
  dependencies = [
1874
1909
  "autocfg",
1875
1910
  "num-integer",
@@ -1878,9 +1913,9 @@ dependencies = [
1878
1913
 
1879
1914
  [[package]]
1880
1915
  name = "num-traits"
1881
- version = "0.2.18"
1916
+ version = "0.2.19"
1882
1917
  source = "registry+https://github.com/rust-lang/crates.io-index"
1883
- checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
1918
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1884
1919
  dependencies = [
1885
1920
  "autocfg",
1886
1921
  "libm",
@@ -1913,9 +1948,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1913
1948
 
1914
1949
  [[package]]
1915
1950
  name = "oorandom"
1916
- version = "11.1.3"
1951
+ version = "11.1.4"
1917
1952
  source = "registry+https://github.com/rust-lang/crates.io-index"
1918
- checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1953
+ checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1919
1954
 
1920
1955
  [[package]]
1921
1956
  name = "opentelemetry"
@@ -1932,6 +1967,20 @@ dependencies = [
1932
1967
  "urlencoding",
1933
1968
  ]
1934
1969
 
1970
+ [[package]]
1971
+ name = "opentelemetry"
1972
+ version = "0.23.0"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76"
1975
+ dependencies = [
1976
+ "futures-core",
1977
+ "futures-sink",
1978
+ "js-sys",
1979
+ "once_cell",
1980
+ "pin-project-lite",
1981
+ "thiserror",
1982
+ ]
1983
+
1935
1984
  [[package]]
1936
1985
  name = "opentelemetry-prometheus"
1937
1986
  version = "0.15.0"
@@ -1939,8 +1988,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
1988
  checksum = "30bbcf6341cab7e2193e5843f0ac36c446a5b3fccb28747afaeda17996dcd02e"
1940
1989
  dependencies = [
1941
1990
  "once_cell",
1942
- "opentelemetry",
1943
- "opentelemetry_sdk",
1991
+ "opentelemetry 0.22.0",
1992
+ "opentelemetry_sdk 0.22.1",
1993
+ "prometheus",
1994
+ "protobuf",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "opentelemetry-prometheus"
1999
+ version = "0.16.0"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "5e1a24eafe47b693cb938f8505f240dc26c71db60df9aca376b4f857e9653ec7"
2002
+ dependencies = [
2003
+ "once_cell",
2004
+ "opentelemetry 0.23.0",
2005
+ "opentelemetry_sdk 0.23.0",
1944
2006
  "prometheus",
1945
2007
  "protobuf",
1946
2008
  ]
@@ -1974,13 +2036,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
2036
  checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
1975
2037
  dependencies = [
1976
2038
  "async-trait",
1977
- "crossbeam-channel",
1978
2039
  "futures-channel",
1979
2040
  "futures-executor",
1980
2041
  "futures-util",
1981
2042
  "glob",
1982
2043
  "once_cell",
1983
- "opentelemetry",
2044
+ "opentelemetry 0.22.0",
2045
+ "ordered-float",
2046
+ "thiserror",
2047
+ ]
2048
+
2049
+ [[package]]
2050
+ name = "opentelemetry_sdk"
2051
+ version = "0.23.0"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "ae312d58eaa90a82d2e627fd86e075cf5230b3f11794e2ed74199ebbe572d4fd"
2054
+ dependencies = [
2055
+ "async-trait",
2056
+ "futures-channel",
2057
+ "futures-executor",
2058
+ "futures-util",
2059
+ "glob",
2060
+ "lazy_static",
2061
+ "once_cell",
2062
+ "opentelemetry 0.23.0",
1984
2063
  "ordered-float",
1985
2064
  "percent-encoding",
1986
2065
  "rand",
@@ -1989,9 +2068,9 @@ dependencies = [
1989
2068
 
1990
2069
  [[package]]
1991
2070
  name = "ordered-float"
1992
- version = "4.2.0"
2071
+ version = "4.2.1"
1993
2072
  source = "registry+https://github.com/rust-lang/crates.io-index"
1994
- checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
2073
+ checksum = "19ff2cf528c6c03d9ed653d6c4ce1dc0582dc4af309790ad92f07c1cd551b0be"
1995
2074
  dependencies = [
1996
2075
  "num-traits",
1997
2076
  ]
@@ -2020,9 +2099,9 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2020
2099
 
2021
2100
  [[package]]
2022
2101
  name = "parking_lot"
2023
- version = "0.12.1"
2102
+ version = "0.12.3"
2024
2103
  source = "registry+https://github.com/rust-lang/crates.io-index"
2025
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2104
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2026
2105
  dependencies = [
2027
2106
  "lock_api",
2028
2107
  "parking_lot_core",
@@ -2030,22 +2109,22 @@ dependencies = [
2030
2109
 
2031
2110
  [[package]]
2032
2111
  name = "parking_lot_core"
2033
- version = "0.9.9"
2112
+ version = "0.9.10"
2034
2113
  source = "registry+https://github.com/rust-lang/crates.io-index"
2035
- checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2114
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2036
2115
  dependencies = [
2037
2116
  "cfg-if",
2038
2117
  "libc",
2039
- "redox_syscall",
2118
+ "redox_syscall 0.5.3",
2040
2119
  "smallvec",
2041
- "windows-targets 0.48.5",
2120
+ "windows-targets 0.52.6",
2042
2121
  ]
2043
2122
 
2044
2123
  [[package]]
2045
2124
  name = "paste"
2046
- version = "1.0.14"
2125
+ version = "1.0.15"
2047
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2048
- checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
2127
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2049
2128
 
2050
2129
  [[package]]
2051
2130
  name = "pathdiff"
@@ -2070,9 +2149,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2070
2149
 
2071
2150
  [[package]]
2072
2151
  name = "pest"
2073
- version = "2.7.9"
2152
+ version = "2.7.11"
2074
2153
  source = "registry+https://github.com/rust-lang/crates.io-index"
2075
- checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95"
2154
+ checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95"
2076
2155
  dependencies = [
2077
2156
  "memchr",
2078
2157
  "thiserror",
@@ -2081,9 +2160,9 @@ dependencies = [
2081
2160
 
2082
2161
  [[package]]
2083
2162
  name = "pest_derive"
2084
- version = "2.7.9"
2163
+ version = "2.7.11"
2085
2164
  source = "registry+https://github.com/rust-lang/crates.io-index"
2086
- checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c"
2165
+ checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a"
2087
2166
  dependencies = [
2088
2167
  "pest",
2089
2168
  "pest_generator",
@@ -2091,22 +2170,22 @@ dependencies = [
2091
2170
 
2092
2171
  [[package]]
2093
2172
  name = "pest_generator"
2094
- version = "2.7.9"
2173
+ version = "2.7.11"
2095
2174
  source = "registry+https://github.com/rust-lang/crates.io-index"
2096
- checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd"
2175
+ checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183"
2097
2176
  dependencies = [
2098
2177
  "pest",
2099
2178
  "pest_meta",
2100
2179
  "proc-macro2",
2101
2180
  "quote",
2102
- "syn 2.0.60",
2181
+ "syn 2.0.72",
2103
2182
  ]
2104
2183
 
2105
2184
  [[package]]
2106
2185
  name = "pest_meta"
2107
- version = "2.7.9"
2186
+ version = "2.7.11"
2108
2187
  source = "registry+https://github.com/rust-lang/crates.io-index"
2109
- checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca"
2188
+ checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f"
2110
2189
  dependencies = [
2111
2190
  "once_cell",
2112
2191
  "pest",
@@ -2130,7 +2209,7 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
2130
2209
  dependencies = [
2131
2210
  "proc-macro2",
2132
2211
  "quote",
2133
- "syn 2.0.60",
2212
+ "syn 2.0.72",
2134
2213
  ]
2135
2214
 
2136
2215
  [[package]]
@@ -2174,9 +2253,9 @@ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2174
2253
 
2175
2254
  [[package]]
2176
2255
  name = "plotters"
2177
- version = "0.3.5"
2256
+ version = "0.3.6"
2178
2257
  source = "registry+https://github.com/rust-lang/crates.io-index"
2179
- checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
2258
+ checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3"
2180
2259
  dependencies = [
2181
2260
  "num-traits",
2182
2261
  "plotters-backend",
@@ -2187,24 +2266,24 @@ dependencies = [
2187
2266
 
2188
2267
  [[package]]
2189
2268
  name = "plotters-backend"
2190
- version = "0.3.5"
2269
+ version = "0.3.6"
2191
2270
  source = "registry+https://github.com/rust-lang/crates.io-index"
2192
- checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
2271
+ checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7"
2193
2272
 
2194
2273
  [[package]]
2195
2274
  name = "plotters-svg"
2196
- version = "0.3.5"
2275
+ version = "0.3.6"
2197
2276
  source = "registry+https://github.com/rust-lang/crates.io-index"
2198
- checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
2277
+ checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705"
2199
2278
  dependencies = [
2200
2279
  "plotters-backend",
2201
2280
  ]
2202
2281
 
2203
2282
  [[package]]
2204
2283
  name = "portable-atomic"
2205
- version = "1.6.0"
2284
+ version = "1.7.0"
2206
2285
  source = "registry+https://github.com/rust-lang/crates.io-index"
2207
- checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2286
+ checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
2208
2287
 
2209
2288
  [[package]]
2210
2289
  name = "powerfmt"
@@ -2220,18 +2299,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2220
2299
 
2221
2300
  [[package]]
2222
2301
  name = "proc-macro2"
2223
- version = "1.0.81"
2302
+ version = "1.0.86"
2224
2303
  source = "registry+https://github.com/rust-lang/crates.io-index"
2225
- checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
2304
+ checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
2226
2305
  dependencies = [
2227
2306
  "unicode-ident",
2228
2307
  ]
2229
2308
 
2230
2309
  [[package]]
2231
2310
  name = "prometheus"
2232
- version = "0.13.3"
2311
+ version = "0.13.4"
2233
2312
  source = "registry+https://github.com/rust-lang/crates.io-index"
2234
- checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"
2313
+ checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
2235
2314
  dependencies = [
2236
2315
  "cfg-if",
2237
2316
  "fnv",
@@ -2322,7 +2401,7 @@ dependencies = [
2322
2401
  "proc-macro2",
2323
2402
  "pyo3-macros-backend",
2324
2403
  "quote",
2325
- "syn 2.0.60",
2404
+ "syn 2.0.72",
2326
2405
  ]
2327
2406
 
2328
2407
  [[package]]
@@ -2335,15 +2414,16 @@ dependencies = [
2335
2414
  "proc-macro2",
2336
2415
  "pyo3-build-config",
2337
2416
  "quote",
2338
- "syn 2.0.60",
2417
+ "syn 2.0.72",
2339
2418
  ]
2340
2419
 
2341
2420
  [[package]]
2342
2421
  name = "python-auditor"
2343
- version = "0.5.0"
2422
+ version = "0.6.2"
2344
2423
  dependencies = [
2345
2424
  "anyhow",
2346
2425
  "auditor",
2426
+ "auditor-client",
2347
2427
  "chrono",
2348
2428
  "pyo3",
2349
2429
  "pyo3-asyncio",
@@ -2374,6 +2454,52 @@ dependencies = [
2374
2454
  "syn 1.0.109",
2375
2455
  ]
2376
2456
 
2457
+ [[package]]
2458
+ name = "quinn"
2459
+ version = "0.11.2"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad"
2462
+ dependencies = [
2463
+ "bytes",
2464
+ "pin-project-lite",
2465
+ "quinn-proto",
2466
+ "quinn-udp",
2467
+ "rustc-hash",
2468
+ "rustls 0.23.12",
2469
+ "thiserror",
2470
+ "tokio",
2471
+ "tracing",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "quinn-proto"
2476
+ version = "0.11.3"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe"
2479
+ dependencies = [
2480
+ "bytes",
2481
+ "rand",
2482
+ "ring",
2483
+ "rustc-hash",
2484
+ "rustls 0.23.12",
2485
+ "slab",
2486
+ "thiserror",
2487
+ "tinyvec",
2488
+ "tracing",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "quinn-udp"
2493
+ version = "0.5.4"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
2496
+ dependencies = [
2497
+ "libc",
2498
+ "once_cell",
2499
+ "socket2",
2500
+ "windows-sys 0.52.0",
2501
+ ]
2502
+
2377
2503
  [[package]]
2378
2504
  name = "quote"
2379
2505
  version = "1.0.36"
@@ -2452,16 +2578,25 @@ dependencies = [
2452
2578
  "bitflags 1.3.2",
2453
2579
  ]
2454
2580
 
2581
+ [[package]]
2582
+ name = "redox_syscall"
2583
+ version = "0.5.3"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
2586
+ dependencies = [
2587
+ "bitflags 2.6.0",
2588
+ ]
2589
+
2455
2590
  [[package]]
2456
2591
  name = "regex"
2457
- version = "1.10.4"
2592
+ version = "1.10.5"
2458
2593
  source = "registry+https://github.com/rust-lang/crates.io-index"
2459
- checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2594
+ checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
2460
2595
  dependencies = [
2461
2596
  "aho-corasick",
2462
2597
  "memchr",
2463
- "regex-automata 0.4.6",
2464
- "regex-syntax 0.8.3",
2598
+ "regex-automata 0.4.7",
2599
+ "regex-syntax 0.8.4",
2465
2600
  ]
2466
2601
 
2467
2602
  [[package]]
@@ -2475,15 +2610,21 @@ dependencies = [
2475
2610
 
2476
2611
  [[package]]
2477
2612
  name = "regex-automata"
2478
- version = "0.4.6"
2613
+ version = "0.4.7"
2479
2614
  source = "registry+https://github.com/rust-lang/crates.io-index"
2480
- checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2615
+ checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
2481
2616
  dependencies = [
2482
2617
  "aho-corasick",
2483
2618
  "memchr",
2484
- "regex-syntax 0.8.3",
2619
+ "regex-syntax 0.8.4",
2485
2620
  ]
2486
2621
 
2622
+ [[package]]
2623
+ name = "regex-lite"
2624
+ version = "0.1.6"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2627
+
2487
2628
  [[package]]
2488
2629
  name = "regex-syntax"
2489
2630
  version = "0.6.29"
@@ -2492,17 +2633,17 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2492
2633
 
2493
2634
  [[package]]
2494
2635
  name = "regex-syntax"
2495
- version = "0.8.3"
2636
+ version = "0.8.4"
2496
2637
  source = "registry+https://github.com/rust-lang/crates.io-index"
2497
- checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2638
+ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
2498
2639
 
2499
2640
  [[package]]
2500
2641
  name = "reqwest"
2501
- version = "0.12.4"
2642
+ version = "0.12.5"
2502
2643
  source = "registry+https://github.com/rust-lang/crates.io-index"
2503
- checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
2644
+ checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
2504
2645
  dependencies = [
2505
- "base64 0.22.0",
2646
+ "base64 0.22.1",
2506
2647
  "bytes",
2507
2648
  "futures-channel",
2508
2649
  "futures-core",
@@ -2520,7 +2661,8 @@ dependencies = [
2520
2661
  "once_cell",
2521
2662
  "percent-encoding",
2522
2663
  "pin-project-lite",
2523
- "rustls 0.22.4",
2664
+ "quinn",
2665
+ "rustls 0.23.12",
2524
2666
  "rustls-pemfile 2.1.2",
2525
2667
  "rustls-pki-types",
2526
2668
  "serde",
@@ -2534,7 +2676,7 @@ dependencies = [
2534
2676
  "wasm-bindgen",
2535
2677
  "wasm-bindgen-futures",
2536
2678
  "web-sys",
2537
- "webpki-roots 0.26.1",
2679
+ "webpki-roots 0.26.3",
2538
2680
  "winreg",
2539
2681
  ]
2540
2682
 
@@ -2548,7 +2690,7 @@ dependencies = [
2548
2690
  "cfg-if",
2549
2691
  "getrandom",
2550
2692
  "libc",
2551
- "spin 0.9.8",
2693
+ "spin",
2552
2694
  "untrusted",
2553
2695
  "windows-sys 0.52.0",
2554
2696
  ]
@@ -2596,9 +2738,15 @@ dependencies = [
2596
2738
 
2597
2739
  [[package]]
2598
2740
  name = "rustc-demangle"
2599
- version = "0.1.23"
2741
+ version = "0.1.24"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2744
+
2745
+ [[package]]
2746
+ name = "rustc-hash"
2747
+ version = "1.1.0"
2600
2748
  source = "registry+https://github.com/rust-lang/crates.io-index"
2601
- checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2749
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2602
2750
 
2603
2751
  [[package]]
2604
2752
  name = "rustc_version"
@@ -2615,7 +2763,7 @@ version = "0.38.34"
2615
2763
  source = "registry+https://github.com/rust-lang/crates.io-index"
2616
2764
  checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2617
2765
  dependencies = [
2618
- "bitflags 2.5.0",
2766
+ "bitflags 2.6.0",
2619
2767
  "errno",
2620
2768
  "libc",
2621
2769
  "linux-raw-sys",
@@ -2624,9 +2772,9 @@ dependencies = [
2624
2772
 
2625
2773
  [[package]]
2626
2774
  name = "rustls"
2627
- version = "0.21.11"
2775
+ version = "0.21.12"
2628
2776
  source = "registry+https://github.com/rust-lang/crates.io-index"
2629
- checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4"
2777
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2630
2778
  dependencies = [
2631
2779
  "ring",
2632
2780
  "rustls-webpki 0.101.7",
@@ -2635,14 +2783,14 @@ dependencies = [
2635
2783
 
2636
2784
  [[package]]
2637
2785
  name = "rustls"
2638
- version = "0.22.4"
2786
+ version = "0.23.12"
2639
2787
  source = "registry+https://github.com/rust-lang/crates.io-index"
2640
- checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2788
+ checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
2641
2789
  dependencies = [
2642
- "log",
2790
+ "once_cell",
2643
2791
  "ring",
2644
2792
  "rustls-pki-types",
2645
- "rustls-webpki 0.102.3",
2793
+ "rustls-webpki 0.102.6",
2646
2794
  "subtle",
2647
2795
  "zeroize",
2648
2796
  ]
@@ -2662,15 +2810,15 @@ version = "2.1.2"
2662
2810
  source = "registry+https://github.com/rust-lang/crates.io-index"
2663
2811
  checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
2664
2812
  dependencies = [
2665
- "base64 0.22.0",
2813
+ "base64 0.22.1",
2666
2814
  "rustls-pki-types",
2667
2815
  ]
2668
2816
 
2669
2817
  [[package]]
2670
2818
  name = "rustls-pki-types"
2671
- version = "1.4.1"
2819
+ version = "1.7.0"
2672
2820
  source = "registry+https://github.com/rust-lang/crates.io-index"
2673
- checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247"
2821
+ checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
2674
2822
 
2675
2823
  [[package]]
2676
2824
  name = "rustls-webpki"
@@ -2684,9 +2832,9 @@ dependencies = [
2684
2832
 
2685
2833
  [[package]]
2686
2834
  name = "rustls-webpki"
2687
- version = "0.102.3"
2835
+ version = "0.102.6"
2688
2836
  source = "registry+https://github.com/rust-lang/crates.io-index"
2689
- checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf"
2837
+ checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
2690
2838
  dependencies = [
2691
2839
  "ring",
2692
2840
  "rustls-pki-types",
@@ -2695,9 +2843,9 @@ dependencies = [
2695
2843
 
2696
2844
  [[package]]
2697
2845
  name = "ryu"
2698
- version = "1.0.17"
2846
+ version = "1.0.18"
2699
2847
  source = "registry+https://github.com/rust-lang/crates.io-index"
2700
- checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2848
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2701
2849
 
2702
2850
  [[package]]
2703
2851
  name = "same-file"
@@ -2736,15 +2884,15 @@ dependencies = [
2736
2884
 
2737
2885
  [[package]]
2738
2886
  name = "semver"
2739
- version = "1.0.22"
2887
+ version = "1.0.23"
2740
2888
  source = "registry+https://github.com/rust-lang/crates.io-index"
2741
- checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
2889
+ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2742
2890
 
2743
2891
  [[package]]
2744
2892
  name = "serde"
2745
- version = "1.0.198"
2893
+ version = "1.0.204"
2746
2894
  source = "registry+https://github.com/rust-lang/crates.io-index"
2747
- checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
2895
+ checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
2748
2896
  dependencies = [
2749
2897
  "serde_derive",
2750
2898
  ]
@@ -2762,22 +2910,23 @@ dependencies = [
2762
2910
 
2763
2911
  [[package]]
2764
2912
  name = "serde_derive"
2765
- version = "1.0.198"
2913
+ version = "1.0.204"
2766
2914
  source = "registry+https://github.com/rust-lang/crates.io-index"
2767
- checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
2915
+ checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2768
2916
  dependencies = [
2769
2917
  "proc-macro2",
2770
2918
  "quote",
2771
- "syn 2.0.60",
2919
+ "syn 2.0.72",
2772
2920
  ]
2773
2921
 
2774
2922
  [[package]]
2775
2923
  name = "serde_json"
2776
- version = "1.0.116"
2924
+ version = "1.0.121"
2777
2925
  source = "registry+https://github.com/rust-lang/crates.io-index"
2778
- checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
2926
+ checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609"
2779
2927
  dependencies = [
2780
2928
  "itoa",
2929
+ "memchr",
2781
2930
  "ryu",
2782
2931
  "serde",
2783
2932
  ]
@@ -2809,11 +2958,11 @@ dependencies = [
2809
2958
 
2810
2959
  [[package]]
2811
2960
  name = "serde_with"
2812
- version = "3.7.0"
2961
+ version = "3.9.0"
2813
2962
  source = "registry+https://github.com/rust-lang/crates.io-index"
2814
- checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
2963
+ checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857"
2815
2964
  dependencies = [
2816
- "base64 0.21.7",
2965
+ "base64 0.22.1",
2817
2966
  "chrono",
2818
2967
  "hex",
2819
2968
  "indexmap 1.9.3",
@@ -2827,14 +2976,14 @@ dependencies = [
2827
2976
 
2828
2977
  [[package]]
2829
2978
  name = "serde_with_macros"
2830
- version = "3.7.0"
2979
+ version = "3.9.0"
2831
2980
  source = "registry+https://github.com/rust-lang/crates.io-index"
2832
- checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
2981
+ checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350"
2833
2982
  dependencies = [
2834
2983
  "darling",
2835
2984
  "proc-macro2",
2836
2985
  "quote",
2837
- "syn 2.0.60",
2986
+ "syn 2.0.72",
2838
2987
  ]
2839
2988
 
2840
2989
  [[package]]
@@ -2910,20 +3059,14 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2910
3059
 
2911
3060
  [[package]]
2912
3061
  name = "socket2"
2913
- version = "0.5.6"
3062
+ version = "0.5.7"
2914
3063
  source = "registry+https://github.com/rust-lang/crates.io-index"
2915
- checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
3064
+ checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2916
3065
  dependencies = [
2917
3066
  "libc",
2918
3067
  "windows-sys 0.52.0",
2919
3068
  ]
2920
3069
 
2921
- [[package]]
2922
- name = "spin"
2923
- version = "0.5.2"
2924
- source = "registry+https://github.com/rust-lang/crates.io-index"
2925
- checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2926
-
2927
3070
  [[package]]
2928
3071
  name = "spin"
2929
3072
  version = "0.9.8"
@@ -2945,11 +3088,10 @@ dependencies = [
2945
3088
 
2946
3089
  [[package]]
2947
3090
  name = "sqlformat"
2948
- version = "0.2.3"
3091
+ version = "0.2.4"
2949
3092
  source = "registry+https://github.com/rust-lang/crates.io-index"
2950
- checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c"
3093
+ checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f"
2951
3094
  dependencies = [
2952
- "itertools 0.12.1",
2953
3095
  "nom",
2954
3096
  "unicode_categories",
2955
3097
  ]
@@ -2995,7 +3137,7 @@ dependencies = [
2995
3137
  "once_cell",
2996
3138
  "paste",
2997
3139
  "percent-encoding",
2998
- "rustls 0.21.11",
3140
+ "rustls 0.21.12",
2999
3141
  "rustls-pemfile 1.0.4",
3000
3142
  "serde",
3001
3143
  "serde_json",
@@ -3058,7 +3200,7 @@ checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418"
3058
3200
  dependencies = [
3059
3201
  "atoi",
3060
3202
  "base64 0.21.7",
3061
- "bitflags 2.5.0",
3203
+ "bitflags 2.6.0",
3062
3204
  "byteorder",
3063
3205
  "bytes",
3064
3206
  "chrono",
@@ -3102,7 +3244,7 @@ checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e"
3102
3244
  dependencies = [
3103
3245
  "atoi",
3104
3246
  "base64 0.21.7",
3105
- "bitflags 2.5.0",
3247
+ "bitflags 2.6.0",
3106
3248
  "byteorder",
3107
3249
  "chrono",
3108
3250
  "crc",
@@ -3161,26 +3303,26 @@ dependencies = [
3161
3303
 
3162
3304
  [[package]]
3163
3305
  name = "stringprep"
3164
- version = "0.1.4"
3306
+ version = "0.1.5"
3165
3307
  source = "registry+https://github.com/rust-lang/crates.io-index"
3166
- checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6"
3308
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
3167
3309
  dependencies = [
3168
- "finl_unicode",
3169
3310
  "unicode-bidi",
3170
3311
  "unicode-normalization",
3312
+ "unicode-properties",
3171
3313
  ]
3172
3314
 
3173
3315
  [[package]]
3174
3316
  name = "strsim"
3175
- version = "0.10.0"
3317
+ version = "0.11.1"
3176
3318
  source = "registry+https://github.com/rust-lang/crates.io-index"
3177
- checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3319
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3178
3320
 
3179
3321
  [[package]]
3180
3322
  name = "subtle"
3181
- version = "2.5.0"
3323
+ version = "2.6.1"
3182
3324
  source = "registry+https://github.com/rust-lang/crates.io-index"
3183
- checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
3325
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3184
3326
 
3185
3327
  [[package]]
3186
3328
  name = "syn"
@@ -3195,9 +3337,9 @@ dependencies = [
3195
3337
 
3196
3338
  [[package]]
3197
3339
  name = "syn"
3198
- version = "2.0.60"
3340
+ version = "2.0.72"
3199
3341
  source = "registry+https://github.com/rust-lang/crates.io-index"
3200
- checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
3342
+ checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
3201
3343
  dependencies = [
3202
3344
  "proc-macro2",
3203
3345
  "quote",
@@ -3206,15 +3348,15 @@ dependencies = [
3206
3348
 
3207
3349
  [[package]]
3208
3350
  name = "sync_wrapper"
3209
- version = "0.1.2"
3351
+ version = "1.0.1"
3210
3352
  source = "registry+https://github.com/rust-lang/crates.io-index"
3211
- checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3353
+ checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
3212
3354
 
3213
3355
  [[package]]
3214
3356
  name = "target-lexicon"
3215
- version = "0.12.14"
3357
+ version = "0.12.15"
3216
3358
  source = "registry+https://github.com/rust-lang/crates.io-index"
3217
- checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
3359
+ checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
3218
3360
 
3219
3361
  [[package]]
3220
3362
  name = "tempfile"
@@ -3230,22 +3372,22 @@ dependencies = [
3230
3372
 
3231
3373
  [[package]]
3232
3374
  name = "thiserror"
3233
- version = "1.0.59"
3375
+ version = "1.0.63"
3234
3376
  source = "registry+https://github.com/rust-lang/crates.io-index"
3235
- checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
3377
+ checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
3236
3378
  dependencies = [
3237
3379
  "thiserror-impl",
3238
3380
  ]
3239
3381
 
3240
3382
  [[package]]
3241
3383
  name = "thiserror-impl"
3242
- version = "1.0.59"
3384
+ version = "1.0.63"
3243
3385
  source = "registry+https://github.com/rust-lang/crates.io-index"
3244
- checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
3386
+ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
3245
3387
  dependencies = [
3246
3388
  "proc-macro2",
3247
3389
  "quote",
3248
- "syn 2.0.60",
3390
+ "syn 2.0.72",
3249
3391
  ]
3250
3392
 
3251
3393
  [[package]]
@@ -3301,9 +3443,9 @@ dependencies = [
3301
3443
 
3302
3444
  [[package]]
3303
3445
  name = "tinyvec"
3304
- version = "1.6.0"
3446
+ version = "1.8.0"
3305
3447
  source = "registry+https://github.com/rust-lang/crates.io-index"
3306
- checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
3448
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
3307
3449
  dependencies = [
3308
3450
  "tinyvec_macros",
3309
3451
  ]
@@ -3316,41 +3458,40 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3316
3458
 
3317
3459
  [[package]]
3318
3460
  name = "tokio"
3319
- version = "1.37.0"
3461
+ version = "1.39.2"
3320
3462
  source = "registry+https://github.com/rust-lang/crates.io-index"
3321
- checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
3463
+ checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
3322
3464
  dependencies = [
3323
3465
  "backtrace",
3324
3466
  "bytes",
3325
3467
  "libc",
3326
- "mio",
3327
- "num_cpus",
3468
+ "mio 1.0.1",
3328
3469
  "parking_lot",
3329
3470
  "pin-project-lite",
3330
3471
  "signal-hook-registry",
3331
3472
  "socket2",
3332
3473
  "tokio-macros",
3333
- "windows-sys 0.48.0",
3474
+ "windows-sys 0.52.0",
3334
3475
  ]
3335
3476
 
3336
3477
  [[package]]
3337
3478
  name = "tokio-macros"
3338
- version = "2.2.0"
3479
+ version = "2.4.0"
3339
3480
  source = "registry+https://github.com/rust-lang/crates.io-index"
3340
- checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
3481
+ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
3341
3482
  dependencies = [
3342
3483
  "proc-macro2",
3343
3484
  "quote",
3344
- "syn 2.0.60",
3485
+ "syn 2.0.72",
3345
3486
  ]
3346
3487
 
3347
3488
  [[package]]
3348
3489
  name = "tokio-rustls"
3349
- version = "0.25.0"
3490
+ version = "0.26.0"
3350
3491
  source = "registry+https://github.com/rust-lang/crates.io-index"
3351
- checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
3492
+ checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
3352
3493
  dependencies = [
3353
- "rustls 0.22.4",
3494
+ "rustls 0.23.12",
3354
3495
  "rustls-pki-types",
3355
3496
  "tokio",
3356
3497
  ]
@@ -3368,16 +3509,15 @@ dependencies = [
3368
3509
 
3369
3510
  [[package]]
3370
3511
  name = "tokio-util"
3371
- version = "0.7.10"
3512
+ version = "0.7.11"
3372
3513
  source = "registry+https://github.com/rust-lang/crates.io-index"
3373
- checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
3514
+ checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
3374
3515
  dependencies = [
3375
3516
  "bytes",
3376
3517
  "futures-core",
3377
3518
  "futures-sink",
3378
3519
  "pin-project-lite",
3379
3520
  "tokio",
3380
- "tracing",
3381
3521
  ]
3382
3522
 
3383
3523
  [[package]]
@@ -3402,7 +3542,6 @@ dependencies = [
3402
3542
  "tokio",
3403
3543
  "tower-layer",
3404
3544
  "tower-service",
3405
- "tracing",
3406
3545
  ]
3407
3546
 
3408
3547
  [[package]]
@@ -3431,9 +3570,9 @@ dependencies = [
3431
3570
 
3432
3571
  [[package]]
3433
3572
  name = "tracing-actix-web"
3434
- version = "0.7.10"
3573
+ version = "0.7.11"
3435
3574
  source = "registry+https://github.com/rust-lang/crates.io-index"
3436
- checksum = "fa069bd1503dd526ee793bb3fce408895136c95fc86d2edb2acf1c646d7f0684"
3575
+ checksum = "4ee9e39a66d9b615644893ffc1704d2a89b5b315b7fd0228ad3182ca9a306b19"
3437
3576
  dependencies = [
3438
3577
  "actix-web",
3439
3578
  "mutually_exclusive_features",
@@ -3450,7 +3589,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3450
3589
  dependencies = [
3451
3590
  "proc-macro2",
3452
3591
  "quote",
3453
- "syn 2.0.60",
3592
+ "syn 2.0.72",
3454
3593
  ]
3455
3594
 
3456
3595
  [[package]]
@@ -3570,6 +3709,12 @@ dependencies = [
3570
3709
  "tinyvec",
3571
3710
  ]
3572
3711
 
3712
+ [[package]]
3713
+ name = "unicode-properties"
3714
+ version = "0.1.1"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291"
3717
+
3573
3718
  [[package]]
3574
3719
  name = "unicode-segmentation"
3575
3720
  version = "1.11.0"
@@ -3596,9 +3741,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3596
3741
 
3597
3742
  [[package]]
3598
3743
  name = "url"
3599
- version = "2.5.0"
3744
+ version = "2.5.2"
3600
3745
  source = "registry+https://github.com/rust-lang/crates.io-index"
3601
- checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
3746
+ checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
3602
3747
  dependencies = [
3603
3748
  "form_urlencoded",
3604
3749
  "idna",
@@ -3613,9 +3758,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3613
3758
 
3614
3759
  [[package]]
3615
3760
  name = "uuid"
3616
- version = "1.8.0"
3761
+ version = "1.10.0"
3617
3762
  source = "registry+https://github.com/rust-lang/crates.io-index"
3618
- checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
3763
+ checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
3619
3764
  dependencies = [
3620
3765
  "getrandom",
3621
3766
  ]
@@ -3634,9 +3779,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3634
3779
 
3635
3780
  [[package]]
3636
3781
  name = "version_check"
3637
- version = "0.9.4"
3782
+ version = "0.9.5"
3638
3783
  source = "registry+https://github.com/rust-lang/crates.io-index"
3639
- checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3784
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3640
3785
 
3641
3786
  [[package]]
3642
3787
  name = "walkdir"
@@ -3690,7 +3835,7 @@ dependencies = [
3690
3835
  "once_cell",
3691
3836
  "proc-macro2",
3692
3837
  "quote",
3693
- "syn 2.0.60",
3838
+ "syn 2.0.72",
3694
3839
  "wasm-bindgen-shared",
3695
3840
  ]
3696
3841
 
@@ -3724,7 +3869,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3724
3869
  dependencies = [
3725
3870
  "proc-macro2",
3726
3871
  "quote",
3727
- "syn 2.0.60",
3872
+ "syn 2.0.72",
3728
3873
  "wasm-bindgen-backend",
3729
3874
  "wasm-bindgen-shared",
3730
3875
  ]
@@ -3753,9 +3898,9 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3753
3898
 
3754
3899
  [[package]]
3755
3900
  name = "webpki-roots"
3756
- version = "0.26.1"
3901
+ version = "0.26.3"
3757
3902
  source = "registry+https://github.com/rust-lang/crates.io-index"
3758
- checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
3903
+ checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
3759
3904
  dependencies = [
3760
3905
  "rustls-pki-types",
3761
3906
  ]
@@ -3766,7 +3911,7 @@ version = "1.5.1"
3766
3911
  source = "registry+https://github.com/rust-lang/crates.io-index"
3767
3912
  checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
3768
3913
  dependencies = [
3769
- "redox_syscall",
3914
+ "redox_syscall 0.4.1",
3770
3915
  "wasite",
3771
3916
  ]
3772
3917
 
@@ -3788,11 +3933,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3788
3933
 
3789
3934
  [[package]]
3790
3935
  name = "winapi-util"
3791
- version = "0.1.6"
3936
+ version = "0.1.8"
3792
3937
  source = "registry+https://github.com/rust-lang/crates.io-index"
3793
- checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
3938
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
3794
3939
  dependencies = [
3795
- "winapi",
3940
+ "windows-sys 0.52.0",
3796
3941
  ]
3797
3942
 
3798
3943
  [[package]]
@@ -3807,7 +3952,7 @@ version = "0.52.0"
3807
3952
  source = "registry+https://github.com/rust-lang/crates.io-index"
3808
3953
  checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3809
3954
  dependencies = [
3810
- "windows-targets 0.52.5",
3955
+ "windows-targets 0.52.6",
3811
3956
  ]
3812
3957
 
3813
3958
  [[package]]
@@ -3825,7 +3970,7 @@ version = "0.52.0"
3825
3970
  source = "registry+https://github.com/rust-lang/crates.io-index"
3826
3971
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3827
3972
  dependencies = [
3828
- "windows-targets 0.52.5",
3973
+ "windows-targets 0.52.6",
3829
3974
  ]
3830
3975
 
3831
3976
  [[package]]
@@ -3845,18 +3990,18 @@ dependencies = [
3845
3990
 
3846
3991
  [[package]]
3847
3992
  name = "windows-targets"
3848
- version = "0.52.5"
3993
+ version = "0.52.6"
3849
3994
  source = "registry+https://github.com/rust-lang/crates.io-index"
3850
- checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
3995
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3851
3996
  dependencies = [
3852
- "windows_aarch64_gnullvm 0.52.5",
3853
- "windows_aarch64_msvc 0.52.5",
3854
- "windows_i686_gnu 0.52.5",
3997
+ "windows_aarch64_gnullvm 0.52.6",
3998
+ "windows_aarch64_msvc 0.52.6",
3999
+ "windows_i686_gnu 0.52.6",
3855
4000
  "windows_i686_gnullvm",
3856
- "windows_i686_msvc 0.52.5",
3857
- "windows_x86_64_gnu 0.52.5",
3858
- "windows_x86_64_gnullvm 0.52.5",
3859
- "windows_x86_64_msvc 0.52.5",
4001
+ "windows_i686_msvc 0.52.6",
4002
+ "windows_x86_64_gnu 0.52.6",
4003
+ "windows_x86_64_gnullvm 0.52.6",
4004
+ "windows_x86_64_msvc 0.52.6",
3860
4005
  ]
3861
4006
 
3862
4007
  [[package]]
@@ -3867,9 +4012,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3867
4012
 
3868
4013
  [[package]]
3869
4014
  name = "windows_aarch64_gnullvm"
3870
- version = "0.52.5"
4015
+ version = "0.52.6"
3871
4016
  source = "registry+https://github.com/rust-lang/crates.io-index"
3872
- checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
4017
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3873
4018
 
3874
4019
  [[package]]
3875
4020
  name = "windows_aarch64_msvc"
@@ -3879,9 +4024,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3879
4024
 
3880
4025
  [[package]]
3881
4026
  name = "windows_aarch64_msvc"
3882
- version = "0.52.5"
4027
+ version = "0.52.6"
3883
4028
  source = "registry+https://github.com/rust-lang/crates.io-index"
3884
- checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
4029
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3885
4030
 
3886
4031
  [[package]]
3887
4032
  name = "windows_i686_gnu"
@@ -3891,15 +4036,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3891
4036
 
3892
4037
  [[package]]
3893
4038
  name = "windows_i686_gnu"
3894
- version = "0.52.5"
4039
+ version = "0.52.6"
3895
4040
  source = "registry+https://github.com/rust-lang/crates.io-index"
3896
- checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
4041
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3897
4042
 
3898
4043
  [[package]]
3899
4044
  name = "windows_i686_gnullvm"
3900
- version = "0.52.5"
4045
+ version = "0.52.6"
3901
4046
  source = "registry+https://github.com/rust-lang/crates.io-index"
3902
- checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
4047
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3903
4048
 
3904
4049
  [[package]]
3905
4050
  name = "windows_i686_msvc"
@@ -3909,9 +4054,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3909
4054
 
3910
4055
  [[package]]
3911
4056
  name = "windows_i686_msvc"
3912
- version = "0.52.5"
4057
+ version = "0.52.6"
3913
4058
  source = "registry+https://github.com/rust-lang/crates.io-index"
3914
- checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
4059
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3915
4060
 
3916
4061
  [[package]]
3917
4062
  name = "windows_x86_64_gnu"
@@ -3921,9 +4066,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3921
4066
 
3922
4067
  [[package]]
3923
4068
  name = "windows_x86_64_gnu"
3924
- version = "0.52.5"
4069
+ version = "0.52.6"
3925
4070
  source = "registry+https://github.com/rust-lang/crates.io-index"
3926
- checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
4071
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3927
4072
 
3928
4073
  [[package]]
3929
4074
  name = "windows_x86_64_gnullvm"
@@ -3933,9 +4078,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3933
4078
 
3934
4079
  [[package]]
3935
4080
  name = "windows_x86_64_gnullvm"
3936
- version = "0.52.5"
4081
+ version = "0.52.6"
3937
4082
  source = "registry+https://github.com/rust-lang/crates.io-index"
3938
- checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
4083
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3939
4084
 
3940
4085
  [[package]]
3941
4086
  name = "windows_x86_64_msvc"
@@ -3945,9 +4090,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3945
4090
 
3946
4091
  [[package]]
3947
4092
  name = "windows_x86_64_msvc"
3948
- version = "0.52.5"
4093
+ version = "0.52.6"
3949
4094
  source = "registry+https://github.com/rust-lang/crates.io-index"
3950
- checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
4095
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3951
4096
 
3952
4097
  [[package]]
3953
4098
  name = "winreg"
@@ -3961,9 +4106,9 @@ dependencies = [
3961
4106
 
3962
4107
  [[package]]
3963
4108
  name = "wiremock"
3964
- version = "0.6.0"
4109
+ version = "0.6.1"
3965
4110
  source = "registry+https://github.com/rust-lang/crates.io-index"
3966
- checksum = "ec874e1eef0df2dcac546057fe5e29186f09c378181cd7b635b4b7bcc98e9d81"
4111
+ checksum = "6a59f8ae78a4737fb724f20106fb35ccb7cfe61ff335665d3042b3aa98e34717"
3967
4112
  dependencies = [
3968
4113
  "assert-json-diff",
3969
4114
  "async-trait",
@@ -3994,53 +4139,53 @@ dependencies = [
3994
4139
 
3995
4140
  [[package]]
3996
4141
  name = "zerocopy"
3997
- version = "0.7.32"
4142
+ version = "0.7.35"
3998
4143
  source = "registry+https://github.com/rust-lang/crates.io-index"
3999
- checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
4144
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4000
4145
  dependencies = [
4001
4146
  "zerocopy-derive",
4002
4147
  ]
4003
4148
 
4004
4149
  [[package]]
4005
4150
  name = "zerocopy-derive"
4006
- version = "0.7.32"
4151
+ version = "0.7.35"
4007
4152
  source = "registry+https://github.com/rust-lang/crates.io-index"
4008
- checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
4153
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4009
4154
  dependencies = [
4010
4155
  "proc-macro2",
4011
4156
  "quote",
4012
- "syn 2.0.60",
4157
+ "syn 2.0.72",
4013
4158
  ]
4014
4159
 
4015
4160
  [[package]]
4016
4161
  name = "zeroize"
4017
- version = "1.7.0"
4162
+ version = "1.8.1"
4018
4163
  source = "registry+https://github.com/rust-lang/crates.io-index"
4019
- checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
4164
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4020
4165
 
4021
4166
  [[package]]
4022
4167
  name = "zstd"
4023
- version = "0.13.1"
4168
+ version = "0.13.2"
4024
4169
  source = "registry+https://github.com/rust-lang/crates.io-index"
4025
- checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
4170
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
4026
4171
  dependencies = [
4027
4172
  "zstd-safe",
4028
4173
  ]
4029
4174
 
4030
4175
  [[package]]
4031
4176
  name = "zstd-safe"
4032
- version = "7.1.0"
4177
+ version = "7.2.0"
4033
4178
  source = "registry+https://github.com/rust-lang/crates.io-index"
4034
- checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
4179
+ checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa"
4035
4180
  dependencies = [
4036
4181
  "zstd-sys",
4037
4182
  ]
4038
4183
 
4039
4184
  [[package]]
4040
4185
  name = "zstd-sys"
4041
- version = "2.0.10+zstd.1.5.6"
4186
+ version = "2.0.12+zstd.1.5.6"
4042
4187
  source = "registry+https://github.com/rust-lang/crates.io-index"
4043
- checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
4188
+ checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
4044
4189
  dependencies = [
4045
4190
  "cc",
4046
4191
  "pkg-config",