python-auditor 0.6.1__tar.gz → 0.6.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. {python_auditor-0.6.1 → python_auditor-0.6.3}/Cargo.lock +580 -554
  2. {python_auditor-0.6.1 → python_auditor-0.6.3}/Cargo.toml +2 -2
  3. {python_auditor-0.6.1 → python_auditor-0.6.3}/PKG-INFO +1 -1
  4. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/examples.rst +4 -4
  5. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/Cargo.toml +4 -4
  6. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +2 -1
  7. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +2 -1
  8. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +2 -1
  9. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/component.rs +1 -1
  10. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/record.rs +2 -2
  11. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/score.rs +2 -1
  12. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/get_since.rs +1 -1
  13. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/helpers.rs +7 -7
  14. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/update.rs +3 -3
  15. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +1 -1
  16. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +1 -1
  17. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +1 -1
  18. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +1 -1
  19. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/Cargo.toml +2 -2
  20. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/src/lib.rs +16 -16
  21. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_add_update.py +3 -1
  22. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_add_update_blocking.py +3 -1
  23. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_add_update_queued.py +3 -1
  24. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_advanced_query.py +11 -4
  25. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_advanced_query_blocking.py +11 -4
  26. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_advanced_query_queued.py +11 -4
  27. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_bulk_insert.py +3 -1
  28. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_bulk_insert_blocking.py +3 -1
  29. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_bulk_insert_queued.py +3 -1
  30. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_components.py +3 -1
  31. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_components_blocking.py +3 -1
  32. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_components_queued.py +3 -1
  33. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_eq.py +3 -1
  34. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_get_since.py +3 -1
  35. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_get_since_blocking.py +3 -1
  36. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_get_since_queued.py +3 -1
  37. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_get_single_record.py +3 -1
  38. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_get_single_record_blocking.py +3 -1
  39. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_get_single_record_queued.py +3 -1
  40. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_meta.py +3 -1
  41. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_meta_blocking.py +3 -1
  42. {python_auditor-0.6.1 → python_auditor-0.6.3}/scripts/test_meta_queued.py +3 -1
  43. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/client.rs +4 -4
  44. {python_auditor-0.6.1 → python_auditor-0.6.3}/.cargo/config.toml +0 -0
  45. {python_auditor-0.6.1 → python_auditor-0.6.3}/.readthedocs.yaml +0 -0
  46. {python_auditor-0.6.1 → python_auditor-0.6.3}/README.md +0 -0
  47. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/Makefile +0 -0
  48. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/api.rst +0 -0
  49. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/changelog.rst +0 -0
  50. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/conf.py +0 -0
  51. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/index.rst +0 -0
  52. {python_auditor-0.6.1 → python_auditor-0.6.3}/docs/make.bat +0 -0
  53. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.env +0 -0
  54. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  55. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  56. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  57. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  58. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  59. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  60. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  61. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  62. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  63. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  64. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  65. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  66. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/build.rs +0 -0
  67. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/configuration/base.yaml +0 -0
  68. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/configuration/local.yaml +0 -0
  69. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  70. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/configuration/production.yaml +0 -0
  71. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  72. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/configuration.rs +0 -0
  73. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/constants.rs +0 -0
  74. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  75. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  76. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  77. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  78. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  79. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/error.rs +0 -0
  80. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/lib.rs +0 -0
  81. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/macros.rs +0 -0
  82. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/main.rs +0 -0
  83. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  84. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  85. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/add.rs +0 -0
  86. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +0 -0
  87. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/get.rs +0 -0
  88. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  89. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  90. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
  91. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/routes/update.rs +0 -0
  92. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/startup.rs +0 -0
  93. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/src/telemetry.rs +0 -0
  94. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/add.rs +0 -0
  95. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/advanced_queries.rs +0 -0
  96. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/get.rs +0 -0
  97. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  98. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  99. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor/tests/api/main.rs +0 -0
  100. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.env +0 -0
  101. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  102. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  103. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  104. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  105. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  106. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/benches/README.md +0 -0
  107. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +0 -0
  108. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  109. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  110. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  111. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  112. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  113. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  114. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/src/constants.rs +0 -0
  115. {python_auditor-0.6.1 → python_auditor-0.6.3}/local_dependencies/auditor-client/src/database.rs +0 -0
  116. {python_auditor-0.6.1 → python_auditor-0.6.3}/pyproject.toml +0 -0
  117. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/blocking_client.rs +0 -0
  118. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/builder.rs +0 -0
  119. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/domain/component.rs +0 -0
  120. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/domain/meta.rs +0 -0
  121. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/domain/mod.rs +0 -0
  122. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/domain/record.rs +0 -0
  123. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/domain/score.rs +0 -0
  124. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/lib.rs +0 -0
  125. {python_auditor-0.6.1 → python_auditor-0.6.3}/src/queued_client.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.7.0"
24
+ version = "3.9.0"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "4eb9843d84c775696c37d9a418bbb01b932629d01870722c0f13eb3f95e2536d"
26
+ checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
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.22.0",
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,7 +65,7 @@ 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.85",
69
69
  ]
70
70
 
71
71
  [[package]]
@@ -85,9 +85,9 @@ dependencies = [
85
85
 
86
86
  [[package]]
87
87
  name = "actix-rt"
88
- version = "2.9.0"
88
+ version = "2.10.0"
89
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "28f32d40287d3f402ae0028a9d54bef51af15c8769492826a69d28f81893151d"
90
+ checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
91
91
  dependencies = [
92
92
  "futures-core",
93
93
  "tokio",
@@ -95,9 +95,9 @@ dependencies = [
95
95
 
96
96
  [[package]]
97
97
  name = "actix-server"
98
- version = "2.3.0"
98
+ version = "2.5.0"
99
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
100
- checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4"
100
+ checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
101
101
  dependencies = [
102
102
  "actix-rt",
103
103
  "actix-service",
@@ -133,9 +133,9 @@ dependencies = [
133
133
 
134
134
  [[package]]
135
135
  name = "actix-web"
136
- version = "4.8.0"
136
+ version = "4.9.0"
137
137
  source = "registry+https://github.com/rust-lang/crates.io-index"
138
- checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff"
138
+ checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
139
139
  dependencies = [
140
140
  "actix-codec",
141
141
  "actix-http",
@@ -155,6 +155,7 @@ dependencies = [
155
155
  "encoding_rs",
156
156
  "futures-core",
157
157
  "futures-util",
158
+ "impl-more",
158
159
  "itoa",
159
160
  "language-tags",
160
161
  "log",
@@ -181,7 +182,7 @@ dependencies = [
181
182
  "actix-router",
182
183
  "proc-macro2",
183
184
  "quote",
184
- "syn 2.0.60",
185
+ "syn 2.0.85",
185
186
  ]
186
187
 
187
188
  [[package]]
@@ -215,6 +216,12 @@ version = "1.0.2"
215
216
  source = "registry+https://github.com/rust-lang/crates.io-index"
216
217
  checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
217
218
 
219
+ [[package]]
220
+ name = "adler2"
221
+ version = "2.0.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
224
+
218
225
  [[package]]
219
226
  name = "ahash"
220
227
  version = "0.7.8"
@@ -292,15 +299,15 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
292
299
 
293
300
  [[package]]
294
301
  name = "anstyle"
295
- version = "1.0.6"
302
+ version = "1.0.9"
296
303
  source = "registry+https://github.com/rust-lang/crates.io-index"
297
- checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
304
+ checksum = "8365de52b16c035ff4fcafe0092ba9390540e3e352870ac09933bebcaa2c8c56"
298
305
 
299
306
  [[package]]
300
307
  name = "anyhow"
301
- version = "1.0.86"
308
+ version = "1.0.91"
302
309
  source = "registry+https://github.com/rust-lang/crates.io-index"
303
- checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
310
+ checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8"
304
311
 
305
312
  [[package]]
306
313
  name = "assert-json-diff"
@@ -314,13 +321,13 @@ dependencies = [
314
321
 
315
322
  [[package]]
316
323
  name = "async-trait"
317
- version = "0.1.80"
324
+ version = "0.1.83"
318
325
  source = "registry+https://github.com/rust-lang/crates.io-index"
319
- checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
326
+ checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
320
327
  dependencies = [
321
328
  "proc-macro2",
322
329
  "quote",
323
- "syn 2.0.60",
330
+ "syn 2.0.85",
324
331
  ]
325
332
 
326
333
  [[package]]
@@ -332,9 +339,15 @@ dependencies = [
332
339
  "num-traits",
333
340
  ]
334
341
 
342
+ [[package]]
343
+ name = "atomic-waker"
344
+ version = "1.1.2"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
347
+
335
348
  [[package]]
336
349
  name = "auditor"
337
- version = "0.6.1"
350
+ version = "0.6.3"
338
351
  dependencies = [
339
352
  "actix-web",
340
353
  "actix-web-opentelemetry",
@@ -378,7 +391,7 @@ dependencies = [
378
391
 
379
392
  [[package]]
380
393
  name = "auditor-client"
381
- version = "0.6.1"
394
+ version = "0.6.3"
382
395
  dependencies = [
383
396
  "anyhow",
384
397
  "auditor",
@@ -409,7 +422,7 @@ dependencies = [
409
422
 
410
423
  [[package]]
411
424
  name = "auditor-priority-plugin"
412
- version = "0.6.1"
425
+ version = "0.6.3"
413
426
  dependencies = [
414
427
  "actix-web",
415
428
  "actix-web-opentelemetry",
@@ -437,7 +450,7 @@ dependencies = [
437
450
 
438
451
  [[package]]
439
452
  name = "auditor-slurm-collector"
440
- version = "0.6.1"
453
+ version = "0.6.3"
441
454
  dependencies = [
442
455
  "anyhow",
443
456
  "auditor",
@@ -463,7 +476,7 @@ dependencies = [
463
476
 
464
477
  [[package]]
465
478
  name = "auditor-slurm-epilog-collector"
466
- version = "0.6.1"
479
+ version = "0.6.3"
467
480
  dependencies = [
468
481
  "anyhow",
469
482
  "auditor",
@@ -481,9 +494,9 @@ dependencies = [
481
494
 
482
495
  [[package]]
483
496
  name = "autocfg"
484
- version = "1.2.0"
497
+ version = "1.4.0"
485
498
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
499
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
487
500
 
488
501
  [[package]]
489
502
  name = "backtrace"
@@ -495,7 +508,7 @@ dependencies = [
495
508
  "cc",
496
509
  "cfg-if",
497
510
  "libc",
498
- "miniz_oxide",
511
+ "miniz_oxide 0.7.4",
499
512
  "object",
500
513
  "rustc-demangle",
501
514
  ]
@@ -508,15 +521,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
508
521
 
509
522
  [[package]]
510
523
  name = "base64"
511
- version = "0.21.7"
512
- source = "registry+https://github.com/rust-lang/crates.io-index"
513
- checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
514
-
515
- [[package]]
516
- name = "base64"
517
- version = "0.22.0"
524
+ version = "0.22.1"
518
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
526
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
520
527
 
521
528
  [[package]]
522
529
  name = "base64ct"
@@ -541,9 +548,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
541
548
 
542
549
  [[package]]
543
550
  name = "bitflags"
544
- version = "2.5.0"
551
+ version = "2.6.0"
545
552
  source = "registry+https://github.com/rust-lang/crates.io-index"
546
- checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
553
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
547
554
  dependencies = [
548
555
  "serde",
549
556
  ]
@@ -592,9 +599,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
592
599
 
593
600
  [[package]]
594
601
  name = "bytes"
595
- version = "1.6.0"
602
+ version = "1.8.0"
596
603
  source = "registry+https://github.com/rust-lang/crates.io-index"
597
- checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
604
+ checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
598
605
 
599
606
  [[package]]
600
607
  name = "bytestring"
@@ -613,13 +620,13 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
613
620
 
614
621
  [[package]]
615
622
  name = "cc"
616
- version = "1.0.95"
623
+ version = "1.1.31"
617
624
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
625
+ checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
619
626
  dependencies = [
620
627
  "jobserver",
621
628
  "libc",
622
- "once_cell",
629
+ "shlex",
623
630
  ]
624
631
 
625
632
  [[package]]
@@ -628,6 +635,12 @@ version = "1.0.0"
628
635
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
636
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
630
637
 
638
+ [[package]]
639
+ name = "cfg_aliases"
640
+ version = "0.2.1"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
643
+
631
644
  [[package]]
632
645
  name = "chrono"
633
646
  version = "0.4.38"
@@ -638,7 +651,7 @@ dependencies = [
638
651
  "iana-time-zone",
639
652
  "num-traits",
640
653
  "serde",
641
- "windows-targets 0.52.5",
654
+ "windows-targets 0.52.6",
642
655
  ]
643
656
 
644
657
  [[package]]
@@ -679,18 +692,18 @@ dependencies = [
679
692
 
680
693
  [[package]]
681
694
  name = "clap"
682
- version = "4.5.4"
695
+ version = "4.5.20"
683
696
  source = "registry+https://github.com/rust-lang/crates.io-index"
684
- checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
697
+ checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
685
698
  dependencies = [
686
699
  "clap_builder",
687
700
  ]
688
701
 
689
702
  [[package]]
690
703
  name = "clap_builder"
691
- version = "4.5.2"
704
+ version = "4.5.20"
692
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
693
- checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
706
+ checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
694
707
  dependencies = [
695
708
  "anstyle",
696
709
  "clap_lex",
@@ -698,9 +711,9 @@ dependencies = [
698
711
 
699
712
  [[package]]
700
713
  name = "clap_lex"
701
- version = "0.7.0"
714
+ version = "0.7.2"
702
715
  source = "registry+https://github.com/rust-lang/crates.io-index"
703
- checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
716
+ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
704
717
 
705
718
  [[package]]
706
719
  name = "color-eyre"
@@ -729,6 +742,15 @@ dependencies = [
729
742
  "tracing-error",
730
743
  ]
731
744
 
745
+ [[package]]
746
+ name = "concurrent-queue"
747
+ version = "2.5.0"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
750
+ dependencies = [
751
+ "crossbeam-utils",
752
+ ]
753
+
732
754
  [[package]]
733
755
  name = "config"
734
756
  version = "0.13.4"
@@ -773,15 +795,15 @@ dependencies = [
773
795
 
774
796
  [[package]]
775
797
  name = "core-foundation-sys"
776
- version = "0.8.6"
798
+ version = "0.8.7"
777
799
  source = "registry+https://github.com/rust-lang/crates.io-index"
778
- checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
800
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
779
801
 
780
802
  [[package]]
781
803
  name = "cpufeatures"
782
- version = "0.2.12"
804
+ version = "0.2.14"
783
805
  source = "registry+https://github.com/rust-lang/crates.io-index"
784
- checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
806
+ checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
785
807
  dependencies = [
786
808
  "libc",
787
809
  ]
@@ -803,9 +825,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
803
825
 
804
826
  [[package]]
805
827
  name = "crc32fast"
806
- version = "1.4.0"
828
+ version = "1.4.2"
807
829
  source = "registry+https://github.com/rust-lang/crates.io-index"
808
- checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
830
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
809
831
  dependencies = [
810
832
  "cfg-if",
811
833
  ]
@@ -888,9 +910,9 @@ dependencies = [
888
910
 
889
911
  [[package]]
890
912
  name = "crossbeam-utils"
891
- version = "0.8.19"
913
+ version = "0.8.20"
892
914
  source = "registry+https://github.com/rust-lang/crates.io-index"
893
- checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
915
+ checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
894
916
 
895
917
  [[package]]
896
918
  name = "crunchy"
@@ -910,9 +932,9 @@ dependencies = [
910
932
 
911
933
  [[package]]
912
934
  name = "darling"
913
- version = "0.20.8"
935
+ version = "0.20.10"
914
936
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
937
+ checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
916
938
  dependencies = [
917
939
  "darling_core",
918
940
  "darling_macro",
@@ -920,27 +942,27 @@ dependencies = [
920
942
 
921
943
  [[package]]
922
944
  name = "darling_core"
923
- version = "0.20.8"
945
+ version = "0.20.10"
924
946
  source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
947
+ checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
926
948
  dependencies = [
927
949
  "fnv",
928
950
  "ident_case",
929
951
  "proc-macro2",
930
952
  "quote",
931
953
  "strsim",
932
- "syn 2.0.60",
954
+ "syn 2.0.85",
933
955
  ]
934
956
 
935
957
  [[package]]
936
958
  name = "darling_macro"
937
- version = "0.20.8"
959
+ version = "0.20.10"
938
960
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
961
+ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
940
962
  dependencies = [
941
963
  "darling_core",
942
964
  "quote",
943
- "syn 2.0.60",
965
+ "syn 2.0.85",
944
966
  ]
945
967
 
946
968
  [[package]]
@@ -957,9 +979,9 @@ dependencies = [
957
979
 
958
980
  [[package]]
959
981
  name = "deadpool-runtime"
960
- version = "0.1.3"
982
+ version = "0.1.4"
961
983
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
984
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
963
985
 
964
986
  [[package]]
965
987
  name = "der"
@@ -984,22 +1006,22 @@ dependencies = [
984
1006
 
985
1007
  [[package]]
986
1008
  name = "derive_more"
987
- version = "0.99.17"
1009
+ version = "0.99.18"
988
1010
  source = "registry+https://github.com/rust-lang/crates.io-index"
989
- checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
1011
+ checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
990
1012
  dependencies = [
991
1013
  "convert_case",
992
1014
  "proc-macro2",
993
1015
  "quote",
994
1016
  "rustc_version",
995
- "syn 1.0.109",
1017
+ "syn 2.0.85",
996
1018
  ]
997
1019
 
998
1020
  [[package]]
999
1021
  name = "deunicode"
1000
- version = "1.4.4"
1022
+ version = "1.6.0"
1001
1023
  source = "registry+https://github.com/rust-lang/crates.io-index"
1002
- checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
1024
+ checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
1003
1025
 
1004
1026
  [[package]]
1005
1027
  name = "digest"
@@ -1027,18 +1049,18 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1027
1049
 
1028
1050
  [[package]]
1029
1051
  name = "either"
1030
- version = "1.11.0"
1052
+ version = "1.13.0"
1031
1053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1032
- checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
1054
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
1033
1055
  dependencies = [
1034
1056
  "serde",
1035
1057
  ]
1036
1058
 
1037
1059
  [[package]]
1038
1060
  name = "encoding_rs"
1039
- version = "0.8.34"
1061
+ version = "0.8.35"
1040
1062
  source = "registry+https://github.com/rust-lang/crates.io-index"
1041
- checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
1063
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1042
1064
  dependencies = [
1043
1065
  "cfg-if",
1044
1066
  ]
@@ -1061,9 +1083,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1061
1083
 
1062
1084
  [[package]]
1063
1085
  name = "errno"
1064
- version = "0.3.8"
1086
+ version = "0.3.9"
1065
1087
  source = "registry+https://github.com/rust-lang/crates.io-index"
1066
- checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
1088
+ checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
1067
1089
  dependencies = [
1068
1090
  "libc",
1069
1091
  "windows-sys 0.52.0",
@@ -1082,9 +1104,14 @@ dependencies = [
1082
1104
 
1083
1105
  [[package]]
1084
1106
  name = "event-listener"
1085
- version = "2.5.3"
1107
+ version = "5.3.1"
1086
1108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1087
- checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
1109
+ checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
1110
+ dependencies = [
1111
+ "concurrent-queue",
1112
+ "parking",
1113
+ "pin-project-lite",
1114
+ ]
1088
1115
 
1089
1116
  [[package]]
1090
1117
  name = "eyre"
@@ -1098,9 +1125,9 @@ dependencies = [
1098
1125
 
1099
1126
  [[package]]
1100
1127
  name = "fake"
1101
- version = "2.9.2"
1128
+ version = "2.10.0"
1102
1129
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "1c25829bde82205da46e1823b2259db6273379f626fc211f126f65654a2669be"
1130
+ checksum = "2d391ba4af7f1d93f01fcf7b2f29e2bc9348e109dfdbf4dcbdc51dfa38dab0b6"
1104
1131
  dependencies = [
1105
1132
  "chrono",
1106
1133
  "deunicode",
@@ -1109,35 +1136,29 @@ dependencies = [
1109
1136
 
1110
1137
  [[package]]
1111
1138
  name = "fastrand"
1112
- version = "2.0.2"
1113
- source = "registry+https://github.com/rust-lang/crates.io-index"
1114
- checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
1115
-
1116
- [[package]]
1117
- name = "finl_unicode"
1118
- version = "1.2.0"
1139
+ version = "2.1.1"
1119
1140
  source = "registry+https://github.com/rust-lang/crates.io-index"
1120
- checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
1141
+ checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
1121
1142
 
1122
1143
  [[package]]
1123
1144
  name = "flate2"
1124
- version = "1.0.28"
1145
+ version = "1.0.34"
1125
1146
  source = "registry+https://github.com/rust-lang/crates.io-index"
1126
- checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
1147
+ checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
1127
1148
  dependencies = [
1128
1149
  "crc32fast",
1129
- "miniz_oxide",
1150
+ "miniz_oxide 0.8.0",
1130
1151
  ]
1131
1152
 
1132
1153
  [[package]]
1133
1154
  name = "flume"
1134
- version = "0.11.0"
1155
+ version = "0.11.1"
1135
1156
  source = "registry+https://github.com/rust-lang/crates.io-index"
1136
- checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
1157
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1137
1158
  dependencies = [
1138
1159
  "futures-core",
1139
1160
  "futures-sink",
1140
- "spin 0.9.8",
1161
+ "spin",
1141
1162
  ]
1142
1163
 
1143
1164
  [[package]]
@@ -1157,9 +1178,9 @@ dependencies = [
1157
1178
 
1158
1179
  [[package]]
1159
1180
  name = "futures"
1160
- version = "0.3.30"
1181
+ version = "0.3.31"
1161
1182
  source = "registry+https://github.com/rust-lang/crates.io-index"
1162
- checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
1183
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1163
1184
  dependencies = [
1164
1185
  "futures-channel",
1165
1186
  "futures-core",
@@ -1172,9 +1193,9 @@ dependencies = [
1172
1193
 
1173
1194
  [[package]]
1174
1195
  name = "futures-channel"
1175
- version = "0.3.30"
1196
+ version = "0.3.31"
1176
1197
  source = "registry+https://github.com/rust-lang/crates.io-index"
1177
- checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
1198
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1178
1199
  dependencies = [
1179
1200
  "futures-core",
1180
1201
  "futures-sink",
@@ -1182,15 +1203,15 @@ dependencies = [
1182
1203
 
1183
1204
  [[package]]
1184
1205
  name = "futures-core"
1185
- version = "0.3.30"
1206
+ version = "0.3.31"
1186
1207
  source = "registry+https://github.com/rust-lang/crates.io-index"
1187
- checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
1208
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1188
1209
 
1189
1210
  [[package]]
1190
1211
  name = "futures-executor"
1191
- version = "0.3.30"
1212
+ version = "0.3.31"
1192
1213
  source = "registry+https://github.com/rust-lang/crates.io-index"
1193
- checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
1214
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1194
1215
  dependencies = [
1195
1216
  "futures-core",
1196
1217
  "futures-task",
@@ -1210,38 +1231,38 @@ dependencies = [
1210
1231
 
1211
1232
  [[package]]
1212
1233
  name = "futures-io"
1213
- version = "0.3.30"
1234
+ version = "0.3.31"
1214
1235
  source = "registry+https://github.com/rust-lang/crates.io-index"
1215
- checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
1236
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1216
1237
 
1217
1238
  [[package]]
1218
1239
  name = "futures-macro"
1219
- version = "0.3.30"
1240
+ version = "0.3.31"
1220
1241
  source = "registry+https://github.com/rust-lang/crates.io-index"
1221
- checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
1242
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1222
1243
  dependencies = [
1223
1244
  "proc-macro2",
1224
1245
  "quote",
1225
- "syn 2.0.60",
1246
+ "syn 2.0.85",
1226
1247
  ]
1227
1248
 
1228
1249
  [[package]]
1229
1250
  name = "futures-sink"
1230
- version = "0.3.30"
1251
+ version = "0.3.31"
1231
1252
  source = "registry+https://github.com/rust-lang/crates.io-index"
1232
- checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
1253
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1233
1254
 
1234
1255
  [[package]]
1235
1256
  name = "futures-task"
1236
- version = "0.3.30"
1257
+ version = "0.3.31"
1237
1258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1238
- checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
1259
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1239
1260
 
1240
1261
  [[package]]
1241
1262
  name = "futures-util"
1242
- version = "0.3.30"
1263
+ version = "0.3.31"
1243
1264
  source = "registry+https://github.com/rust-lang/crates.io-index"
1244
- checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
1265
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1245
1266
  dependencies = [
1246
1267
  "futures-channel",
1247
1268
  "futures-core",
@@ -1277,9 +1298,9 @@ dependencies = [
1277
1298
 
1278
1299
  [[package]]
1279
1300
  name = "getrandom"
1280
- version = "0.2.14"
1301
+ version = "0.2.15"
1281
1302
  source = "registry+https://github.com/rust-lang/crates.io-index"
1282
- checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
1303
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1283
1304
  dependencies = [
1284
1305
  "cfg-if",
1285
1306
  "libc",
@@ -1310,7 +1331,7 @@ dependencies = [
1310
1331
  "futures-sink",
1311
1332
  "futures-util",
1312
1333
  "http 0.2.12",
1313
- "indexmap 2.2.6",
1334
+ "indexmap 2.6.0",
1314
1335
  "slab",
1315
1336
  "tokio",
1316
1337
  "tokio-util",
@@ -1319,17 +1340,17 @@ dependencies = [
1319
1340
 
1320
1341
  [[package]]
1321
1342
  name = "h2"
1322
- version = "0.4.4"
1343
+ version = "0.4.6"
1323
1344
  source = "registry+https://github.com/rust-lang/crates.io-index"
1324
- checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
1345
+ checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
1325
1346
  dependencies = [
1347
+ "atomic-waker",
1326
1348
  "bytes",
1327
1349
  "fnv",
1328
1350
  "futures-core",
1329
1351
  "futures-sink",
1330
- "futures-util",
1331
1352
  "http 1.1.0",
1332
- "indexmap 2.2.6",
1353
+ "indexmap 2.6.0",
1333
1354
  "slab",
1334
1355
  "tokio",
1335
1356
  "tokio-util",
@@ -1357,21 +1378,27 @@ dependencies = [
1357
1378
 
1358
1379
  [[package]]
1359
1380
  name = "hashbrown"
1360
- version = "0.14.3"
1381
+ version = "0.14.5"
1361
1382
  source = "registry+https://github.com/rust-lang/crates.io-index"
1362
- checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
1383
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1363
1384
  dependencies = [
1364
1385
  "ahash 0.8.11",
1365
1386
  "allocator-api2",
1366
1387
  ]
1367
1388
 
1389
+ [[package]]
1390
+ name = "hashbrown"
1391
+ version = "0.15.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
1394
+
1368
1395
  [[package]]
1369
1396
  name = "hashlink"
1370
- version = "0.8.4"
1397
+ version = "0.9.1"
1371
1398
  source = "registry+https://github.com/rust-lang/crates.io-index"
1372
- checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
1399
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1373
1400
  dependencies = [
1374
- "hashbrown 0.14.3",
1401
+ "hashbrown 0.14.5",
1375
1402
  ]
1376
1403
 
1377
1404
  [[package]]
@@ -1379,9 +1406,12 @@ name = "heck"
1379
1406
  version = "0.4.1"
1380
1407
  source = "registry+https://github.com/rust-lang/crates.io-index"
1381
1408
  checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1382
- dependencies = [
1383
- "unicode-segmentation",
1384
- ]
1409
+
1410
+ [[package]]
1411
+ name = "heck"
1412
+ version = "0.5.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1385
1415
 
1386
1416
  [[package]]
1387
1417
  name = "hermit-abi"
@@ -1389,6 +1419,12 @@ version = "0.3.9"
1389
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1390
1420
  checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1391
1421
 
1422
+ [[package]]
1423
+ name = "hermit-abi"
1424
+ version = "0.4.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
1427
+
1392
1428
  [[package]]
1393
1429
  name = "hex"
1394
1430
  version = "0.4.3"
@@ -1446,9 +1482,9 @@ dependencies = [
1446
1482
 
1447
1483
  [[package]]
1448
1484
  name = "http-body"
1449
- version = "1.0.0"
1485
+ version = "1.0.1"
1450
1486
  source = "registry+https://github.com/rust-lang/crates.io-index"
1451
- checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
1487
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1452
1488
  dependencies = [
1453
1489
  "bytes",
1454
1490
  "http 1.1.0",
@@ -1456,12 +1492,12 @@ dependencies = [
1456
1492
 
1457
1493
  [[package]]
1458
1494
  name = "http-body-util"
1459
- version = "0.1.1"
1495
+ version = "0.1.2"
1460
1496
  source = "registry+https://github.com/rust-lang/crates.io-index"
1461
- checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
1497
+ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1462
1498
  dependencies = [
1463
1499
  "bytes",
1464
- "futures-core",
1500
+ "futures-util",
1465
1501
  "http 1.1.0",
1466
1502
  "http-body",
1467
1503
  "pin-project-lite",
@@ -1469,9 +1505,9 @@ dependencies = [
1469
1505
 
1470
1506
  [[package]]
1471
1507
  name = "httparse"
1472
- version = "1.8.0"
1508
+ version = "1.9.5"
1473
1509
  source = "registry+https://github.com/rust-lang/crates.io-index"
1474
- checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
1510
+ checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
1475
1511
 
1476
1512
  [[package]]
1477
1513
  name = "httpdate"
@@ -1481,14 +1517,14 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1481
1517
 
1482
1518
  [[package]]
1483
1519
  name = "hyper"
1484
- version = "1.3.1"
1520
+ version = "1.5.0"
1485
1521
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
1522
+ checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
1487
1523
  dependencies = [
1488
1524
  "bytes",
1489
1525
  "futures-channel",
1490
1526
  "futures-util",
1491
- "h2 0.4.4",
1527
+ "h2 0.4.6",
1492
1528
  "http 1.1.0",
1493
1529
  "http-body",
1494
1530
  "httparse",
@@ -1502,27 +1538,27 @@ dependencies = [
1502
1538
 
1503
1539
  [[package]]
1504
1540
  name = "hyper-rustls"
1505
- version = "0.27.2"
1541
+ version = "0.27.3"
1506
1542
  source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
1543
+ checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
1508
1544
  dependencies = [
1509
1545
  "futures-util",
1510
1546
  "http 1.1.0",
1511
1547
  "hyper",
1512
1548
  "hyper-util",
1513
- "rustls 0.23.10",
1549
+ "rustls",
1514
1550
  "rustls-pki-types",
1515
1551
  "tokio",
1516
1552
  "tokio-rustls",
1517
1553
  "tower-service",
1518
- "webpki-roots 0.26.1",
1554
+ "webpki-roots",
1519
1555
  ]
1520
1556
 
1521
1557
  [[package]]
1522
1558
  name = "hyper-util"
1523
- version = "0.1.3"
1559
+ version = "0.1.10"
1524
1560
  source = "registry+https://github.com/rust-lang/crates.io-index"
1525
- checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
1561
+ checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
1526
1562
  dependencies = [
1527
1563
  "bytes",
1528
1564
  "futures-channel",
@@ -1533,16 +1569,15 @@ dependencies = [
1533
1569
  "pin-project-lite",
1534
1570
  "socket2",
1535
1571
  "tokio",
1536
- "tower",
1537
1572
  "tower-service",
1538
1573
  "tracing",
1539
1574
  ]
1540
1575
 
1541
1576
  [[package]]
1542
1577
  name = "iana-time-zone"
1543
- version = "0.1.60"
1578
+ version = "0.1.61"
1544
1579
  source = "registry+https://github.com/rust-lang/crates.io-index"
1545
- checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
1580
+ checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
1546
1581
  dependencies = [
1547
1582
  "android_system_properties",
1548
1583
  "core-foundation-sys",
@@ -1577,6 +1612,12 @@ dependencies = [
1577
1612
  "unicode-normalization",
1578
1613
  ]
1579
1614
 
1615
+ [[package]]
1616
+ name = "impl-more"
1617
+ version = "0.1.8"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
1620
+
1580
1621
  [[package]]
1581
1622
  name = "indenter"
1582
1623
  version = "0.3.3"
@@ -1596,12 +1637,12 @@ dependencies = [
1596
1637
 
1597
1638
  [[package]]
1598
1639
  name = "indexmap"
1599
- version = "2.2.6"
1640
+ version = "2.6.0"
1600
1641
  source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1642
+ checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1602
1643
  dependencies = [
1603
1644
  "equivalent",
1604
- "hashbrown 0.14.3",
1645
+ "hashbrown 0.15.0",
1605
1646
  "serde",
1606
1647
  ]
1607
1648
 
@@ -1613,17 +1654,17 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1613
1654
 
1614
1655
  [[package]]
1615
1656
  name = "ipnet"
1616
- version = "2.9.0"
1657
+ version = "2.10.1"
1617
1658
  source = "registry+https://github.com/rust-lang/crates.io-index"
1618
- checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1659
+ checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
1619
1660
 
1620
1661
  [[package]]
1621
1662
  name = "is-terminal"
1622
- version = "0.4.12"
1663
+ version = "0.4.13"
1623
1664
  source = "registry+https://github.com/rust-lang/crates.io-index"
1624
- checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1665
+ checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
1625
1666
  dependencies = [
1626
- "hermit-abi",
1667
+ "hermit-abi 0.4.0",
1627
1668
  "libc",
1628
1669
  "windows-sys 0.52.0",
1629
1670
  ]
@@ -1637,15 +1678,6 @@ dependencies = [
1637
1678
  "either",
1638
1679
  ]
1639
1680
 
1640
- [[package]]
1641
- name = "itertools"
1642
- version = "0.12.1"
1643
- source = "registry+https://github.com/rust-lang/crates.io-index"
1644
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1645
- dependencies = [
1646
- "either",
1647
- ]
1648
-
1649
1681
  [[package]]
1650
1682
  name = "itertools"
1651
1683
  version = "0.13.0"
@@ -1663,18 +1695,18 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1663
1695
 
1664
1696
  [[package]]
1665
1697
  name = "jobserver"
1666
- version = "0.1.31"
1698
+ version = "0.1.32"
1667
1699
  source = "registry+https://github.com/rust-lang/crates.io-index"
1668
- checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
1700
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1669
1701
  dependencies = [
1670
1702
  "libc",
1671
1703
  ]
1672
1704
 
1673
1705
  [[package]]
1674
1706
  name = "js-sys"
1675
- version = "0.3.69"
1707
+ version = "0.3.72"
1676
1708
  source = "registry+https://github.com/rust-lang/crates.io-index"
1677
- checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1709
+ checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
1678
1710
  dependencies = [
1679
1711
  "wasm-bindgen",
1680
1712
  ]
@@ -1698,30 +1730,30 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
1698
1730
 
1699
1731
  [[package]]
1700
1732
  name = "lazy_static"
1701
- version = "1.4.0"
1733
+ version = "1.5.0"
1702
1734
  source = "registry+https://github.com/rust-lang/crates.io-index"
1703
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1735
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1704
1736
  dependencies = [
1705
- "spin 0.5.2",
1737
+ "spin",
1706
1738
  ]
1707
1739
 
1708
1740
  [[package]]
1709
1741
  name = "libc"
1710
- version = "0.2.153"
1742
+ version = "0.2.161"
1711
1743
  source = "registry+https://github.com/rust-lang/crates.io-index"
1712
- checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
1744
+ checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
1713
1745
 
1714
1746
  [[package]]
1715
1747
  name = "libm"
1716
- version = "0.2.8"
1748
+ version = "0.2.11"
1717
1749
  source = "registry+https://github.com/rust-lang/crates.io-index"
1718
- checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
1750
+ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1719
1751
 
1720
1752
  [[package]]
1721
1753
  name = "libsqlite3-sys"
1722
- version = "0.27.0"
1754
+ version = "0.30.1"
1723
1755
  source = "registry+https://github.com/rust-lang/crates.io-index"
1724
- checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
1756
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1725
1757
  dependencies = [
1726
1758
  "cc",
1727
1759
  "pkg-config",
@@ -1736,9 +1768,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1736
1768
 
1737
1769
  [[package]]
1738
1770
  name = "linux-raw-sys"
1739
- version = "0.4.13"
1771
+ version = "0.4.14"
1740
1772
  source = "registry+https://github.com/rust-lang/crates.io-index"
1741
- checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1773
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1742
1774
 
1743
1775
  [[package]]
1744
1776
  name = "local-channel"
@@ -1759,9 +1791,9 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
1759
1791
 
1760
1792
  [[package]]
1761
1793
  name = "lock_api"
1762
- version = "0.4.11"
1794
+ version = "0.4.12"
1763
1795
  source = "registry+https://github.com/rust-lang/crates.io-index"
1764
- checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
1796
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1765
1797
  dependencies = [
1766
1798
  "autocfg",
1767
1799
  "scopeguard",
@@ -1769,9 +1801,9 @@ dependencies = [
1769
1801
 
1770
1802
  [[package]]
1771
1803
  name = "log"
1772
- version = "0.4.21"
1804
+ version = "0.4.22"
1773
1805
  source = "registry+https://github.com/rust-lang/crates.io-index"
1774
- checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1806
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1775
1807
 
1776
1808
  [[package]]
1777
1809
  name = "matchers"
@@ -1794,9 +1826,9 @@ dependencies = [
1794
1826
 
1795
1827
  [[package]]
1796
1828
  name = "memchr"
1797
- version = "2.7.2"
1829
+ version = "2.7.4"
1798
1830
  source = "registry+https://github.com/rust-lang/crates.io-index"
1799
- checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
1831
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1800
1832
 
1801
1833
  [[package]]
1802
1834
  name = "memoffset"
@@ -1821,30 +1853,40 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1821
1853
 
1822
1854
  [[package]]
1823
1855
  name = "miniz_oxide"
1824
- version = "0.7.2"
1856
+ version = "0.7.4"
1825
1857
  source = "registry+https://github.com/rust-lang/crates.io-index"
1826
- checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1858
+ checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
1827
1859
  dependencies = [
1828
1860
  "adler",
1829
1861
  ]
1830
1862
 
1863
+ [[package]]
1864
+ name = "miniz_oxide"
1865
+ version = "0.8.0"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
1868
+ dependencies = [
1869
+ "adler2",
1870
+ ]
1871
+
1831
1872
  [[package]]
1832
1873
  name = "mio"
1833
- version = "0.8.11"
1874
+ version = "1.0.2"
1834
1875
  source = "registry+https://github.com/rust-lang/crates.io-index"
1835
- checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1876
+ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1836
1877
  dependencies = [
1878
+ "hermit-abi 0.3.9",
1837
1879
  "libc",
1838
1880
  "log",
1839
1881
  "wasi",
1840
- "windows-sys 0.48.0",
1882
+ "windows-sys 0.52.0",
1841
1883
  ]
1842
1884
 
1843
1885
  [[package]]
1844
1886
  name = "mutually_exclusive_features"
1845
- version = "0.0.3"
1887
+ version = "0.1.0"
1846
1888
  source = "registry+https://github.com/rust-lang/crates.io-index"
1847
- checksum = "6d02c0b00610773bb7fc61d85e13d86c7858cbdf00e1a120bfc41bc055dbaa0e"
1889
+ checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
1848
1890
 
1849
1891
  [[package]]
1850
1892
  name = "nom"
@@ -1900,9 +1942,9 @@ dependencies = [
1900
1942
 
1901
1943
  [[package]]
1902
1944
  name = "num-iter"
1903
- version = "0.1.44"
1945
+ version = "0.1.45"
1904
1946
  source = "registry+https://github.com/rust-lang/crates.io-index"
1905
- checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
1947
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1906
1948
  dependencies = [
1907
1949
  "autocfg",
1908
1950
  "num-integer",
@@ -1925,7 +1967,7 @@ version = "1.16.0"
1925
1967
  source = "registry+https://github.com/rust-lang/crates.io-index"
1926
1968
  checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1927
1969
  dependencies = [
1928
- "hermit-abi",
1970
+ "hermit-abi 0.3.9",
1929
1971
  "libc",
1930
1972
  ]
1931
1973
 
@@ -1940,15 +1982,15 @@ dependencies = [
1940
1982
 
1941
1983
  [[package]]
1942
1984
  name = "once_cell"
1943
- version = "1.19.0"
1985
+ version = "1.20.2"
1944
1986
  source = "registry+https://github.com/rust-lang/crates.io-index"
1945
- checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1987
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1946
1988
 
1947
1989
  [[package]]
1948
1990
  name = "oorandom"
1949
- version = "11.1.3"
1991
+ version = "11.1.4"
1950
1992
  source = "registry+https://github.com/rust-lang/crates.io-index"
1951
- checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1993
+ checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1952
1994
 
1953
1995
  [[package]]
1954
1996
  name = "opentelemetry"
@@ -2066,9 +2108,9 @@ dependencies = [
2066
2108
 
2067
2109
  [[package]]
2068
2110
  name = "ordered-float"
2069
- version = "4.2.0"
2111
+ version = "4.4.0"
2070
2112
  source = "registry+https://github.com/rust-lang/crates.io-index"
2071
- checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
2113
+ checksum = "83e7ccb95e240b7c9506a3d544f10d935e142cc90b0a1d56954fb44d89ad6b97"
2072
2114
  dependencies = [
2073
2115
  "num-traits",
2074
2116
  ]
@@ -2095,11 +2137,17 @@ version = "3.5.0"
2095
2137
  source = "registry+https://github.com/rust-lang/crates.io-index"
2096
2138
  checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2097
2139
 
2140
+ [[package]]
2141
+ name = "parking"
2142
+ version = "2.2.1"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2145
+
2098
2146
  [[package]]
2099
2147
  name = "parking_lot"
2100
- version = "0.12.1"
2148
+ version = "0.12.3"
2101
2149
  source = "registry+https://github.com/rust-lang/crates.io-index"
2102
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2150
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2103
2151
  dependencies = [
2104
2152
  "lock_api",
2105
2153
  "parking_lot_core",
@@ -2107,28 +2155,28 @@ dependencies = [
2107
2155
 
2108
2156
  [[package]]
2109
2157
  name = "parking_lot_core"
2110
- version = "0.9.9"
2158
+ version = "0.9.10"
2111
2159
  source = "registry+https://github.com/rust-lang/crates.io-index"
2112
- checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2160
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2113
2161
  dependencies = [
2114
2162
  "cfg-if",
2115
2163
  "libc",
2116
2164
  "redox_syscall",
2117
2165
  "smallvec",
2118
- "windows-targets 0.48.5",
2166
+ "windows-targets 0.52.6",
2119
2167
  ]
2120
2168
 
2121
2169
  [[package]]
2122
2170
  name = "paste"
2123
- version = "1.0.14"
2171
+ version = "1.0.15"
2124
2172
  source = "registry+https://github.com/rust-lang/crates.io-index"
2125
- checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
2173
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2126
2174
 
2127
2175
  [[package]]
2128
2176
  name = "pathdiff"
2129
- version = "0.2.1"
2177
+ version = "0.2.2"
2130
2178
  source = "registry+https://github.com/rust-lang/crates.io-index"
2131
- checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2179
+ checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"
2132
2180
 
2133
2181
  [[package]]
2134
2182
  name = "pem-rfc7468"
@@ -2147,9 +2195,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2147
2195
 
2148
2196
  [[package]]
2149
2197
  name = "pest"
2150
- version = "2.7.9"
2198
+ version = "2.7.14"
2151
2199
  source = "registry+https://github.com/rust-lang/crates.io-index"
2152
- checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95"
2200
+ checksum = "879952a81a83930934cbf1786752d6dedc3b1f29e8f8fb2ad1d0a36f377cf442"
2153
2201
  dependencies = [
2154
2202
  "memchr",
2155
2203
  "thiserror",
@@ -2158,9 +2206,9 @@ dependencies = [
2158
2206
 
2159
2207
  [[package]]
2160
2208
  name = "pest_derive"
2161
- version = "2.7.9"
2209
+ version = "2.7.14"
2162
2210
  source = "registry+https://github.com/rust-lang/crates.io-index"
2163
- checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c"
2211
+ checksum = "d214365f632b123a47fd913301e14c946c61d1c183ee245fa76eb752e59a02dd"
2164
2212
  dependencies = [
2165
2213
  "pest",
2166
2214
  "pest_generator",
@@ -2168,22 +2216,22 @@ dependencies = [
2168
2216
 
2169
2217
  [[package]]
2170
2218
  name = "pest_generator"
2171
- version = "2.7.9"
2219
+ version = "2.7.14"
2172
2220
  source = "registry+https://github.com/rust-lang/crates.io-index"
2173
- checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd"
2221
+ checksum = "eb55586734301717aea2ac313f50b2eb8f60d2fc3dc01d190eefa2e625f60c4e"
2174
2222
  dependencies = [
2175
2223
  "pest",
2176
2224
  "pest_meta",
2177
2225
  "proc-macro2",
2178
2226
  "quote",
2179
- "syn 2.0.60",
2227
+ "syn 2.0.85",
2180
2228
  ]
2181
2229
 
2182
2230
  [[package]]
2183
2231
  name = "pest_meta"
2184
- version = "2.7.9"
2232
+ version = "2.7.14"
2185
2233
  source = "registry+https://github.com/rust-lang/crates.io-index"
2186
- checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca"
2234
+ checksum = "b75da2a70cf4d9cb76833c990ac9cd3923c9a8905a8929789ce347c84564d03d"
2187
2235
  dependencies = [
2188
2236
  "once_cell",
2189
2237
  "pest",
@@ -2192,29 +2240,29 @@ dependencies = [
2192
2240
 
2193
2241
  [[package]]
2194
2242
  name = "pin-project"
2195
- version = "1.1.5"
2243
+ version = "1.1.7"
2196
2244
  source = "registry+https://github.com/rust-lang/crates.io-index"
2197
- checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
2245
+ checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
2198
2246
  dependencies = [
2199
2247
  "pin-project-internal",
2200
2248
  ]
2201
2249
 
2202
2250
  [[package]]
2203
2251
  name = "pin-project-internal"
2204
- version = "1.1.5"
2252
+ version = "1.1.7"
2205
2253
  source = "registry+https://github.com/rust-lang/crates.io-index"
2206
- checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
2254
+ checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
2207
2255
  dependencies = [
2208
2256
  "proc-macro2",
2209
2257
  "quote",
2210
- "syn 2.0.60",
2258
+ "syn 2.0.85",
2211
2259
  ]
2212
2260
 
2213
2261
  [[package]]
2214
2262
  name = "pin-project-lite"
2215
- version = "0.2.14"
2263
+ version = "0.2.15"
2216
2264
  source = "registry+https://github.com/rust-lang/crates.io-index"
2217
- checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2265
+ checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2218
2266
 
2219
2267
  [[package]]
2220
2268
  name = "pin-utils"
@@ -2245,15 +2293,15 @@ dependencies = [
2245
2293
 
2246
2294
  [[package]]
2247
2295
  name = "pkg-config"
2248
- version = "0.3.30"
2296
+ version = "0.3.31"
2249
2297
  source = "registry+https://github.com/rust-lang/crates.io-index"
2250
- checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2298
+ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2251
2299
 
2252
2300
  [[package]]
2253
2301
  name = "plotters"
2254
- version = "0.3.5"
2302
+ version = "0.3.7"
2255
2303
  source = "registry+https://github.com/rust-lang/crates.io-index"
2256
- checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
2304
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2257
2305
  dependencies = [
2258
2306
  "num-traits",
2259
2307
  "plotters-backend",
@@ -2264,24 +2312,24 @@ dependencies = [
2264
2312
 
2265
2313
  [[package]]
2266
2314
  name = "plotters-backend"
2267
- version = "0.3.5"
2315
+ version = "0.3.7"
2268
2316
  source = "registry+https://github.com/rust-lang/crates.io-index"
2269
- checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
2317
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2270
2318
 
2271
2319
  [[package]]
2272
2320
  name = "plotters-svg"
2273
- version = "0.3.5"
2321
+ version = "0.3.7"
2274
2322
  source = "registry+https://github.com/rust-lang/crates.io-index"
2275
- checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
2323
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2276
2324
  dependencies = [
2277
2325
  "plotters-backend",
2278
2326
  ]
2279
2327
 
2280
2328
  [[package]]
2281
2329
  name = "portable-atomic"
2282
- version = "1.6.0"
2330
+ version = "1.9.0"
2283
2331
  source = "registry+https://github.com/rust-lang/crates.io-index"
2284
- checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2332
+ checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2285
2333
 
2286
2334
  [[package]]
2287
2335
  name = "powerfmt"
@@ -2291,15 +2339,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2291
2339
 
2292
2340
  [[package]]
2293
2341
  name = "ppv-lite86"
2294
- version = "0.2.17"
2342
+ version = "0.2.20"
2295
2343
  source = "registry+https://github.com/rust-lang/crates.io-index"
2296
- checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2344
+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
2345
+ dependencies = [
2346
+ "zerocopy",
2347
+ ]
2297
2348
 
2298
2349
  [[package]]
2299
2350
  name = "proc-macro2"
2300
- version = "1.0.81"
2351
+ version = "1.0.89"
2301
2352
  source = "registry+https://github.com/rust-lang/crates.io-index"
2302
- checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
2353
+ checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
2303
2354
  dependencies = [
2304
2355
  "unicode-ident",
2305
2356
  ]
@@ -2399,7 +2450,7 @@ dependencies = [
2399
2450
  "proc-macro2",
2400
2451
  "pyo3-macros-backend",
2401
2452
  "quote",
2402
- "syn 2.0.60",
2453
+ "syn 2.0.85",
2403
2454
  ]
2404
2455
 
2405
2456
  [[package]]
@@ -2408,16 +2459,16 @@ version = "0.20.3"
2408
2459
  source = "registry+https://github.com/rust-lang/crates.io-index"
2409
2460
  checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2410
2461
  dependencies = [
2411
- "heck",
2462
+ "heck 0.4.1",
2412
2463
  "proc-macro2",
2413
2464
  "pyo3-build-config",
2414
2465
  "quote",
2415
- "syn 2.0.60",
2466
+ "syn 2.0.85",
2416
2467
  ]
2417
2468
 
2418
2469
  [[package]]
2419
2470
  name = "python-auditor"
2420
- version = "0.6.1"
2471
+ version = "0.6.3"
2421
2472
  dependencies = [
2422
2473
  "anyhow",
2423
2474
  "auditor",
@@ -2454,16 +2505,17 @@ dependencies = [
2454
2505
 
2455
2506
  [[package]]
2456
2507
  name = "quinn"
2457
- version = "0.11.2"
2508
+ version = "0.11.5"
2458
2509
  source = "registry+https://github.com/rust-lang/crates.io-index"
2459
- checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad"
2510
+ checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
2460
2511
  dependencies = [
2461
2512
  "bytes",
2462
2513
  "pin-project-lite",
2463
2514
  "quinn-proto",
2464
2515
  "quinn-udp",
2465
2516
  "rustc-hash",
2466
- "rustls 0.23.10",
2517
+ "rustls",
2518
+ "socket2",
2467
2519
  "thiserror",
2468
2520
  "tokio",
2469
2521
  "tracing",
@@ -2471,15 +2523,15 @@ dependencies = [
2471
2523
 
2472
2524
  [[package]]
2473
2525
  name = "quinn-proto"
2474
- version = "0.11.3"
2526
+ version = "0.11.8"
2475
2527
  source = "registry+https://github.com/rust-lang/crates.io-index"
2476
- checksum = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe"
2528
+ checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
2477
2529
  dependencies = [
2478
2530
  "bytes",
2479
2531
  "rand",
2480
2532
  "ring",
2481
2533
  "rustc-hash",
2482
- "rustls 0.23.10",
2534
+ "rustls",
2483
2535
  "slab",
2484
2536
  "thiserror",
2485
2537
  "tinyvec",
@@ -2488,22 +2540,23 @@ dependencies = [
2488
2540
 
2489
2541
  [[package]]
2490
2542
  name = "quinn-udp"
2491
- version = "0.5.2"
2543
+ version = "0.5.6"
2492
2544
  source = "registry+https://github.com/rust-lang/crates.io-index"
2493
- checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46"
2545
+ checksum = "e346e016eacfff12233c243718197ca12f148c84e1e84268a896699b41c71780"
2494
2546
  dependencies = [
2547
+ "cfg_aliases",
2495
2548
  "libc",
2496
2549
  "once_cell",
2497
2550
  "socket2",
2498
2551
  "tracing",
2499
- "windows-sys 0.52.0",
2552
+ "windows-sys 0.59.0",
2500
2553
  ]
2501
2554
 
2502
2555
  [[package]]
2503
2556
  name = "quote"
2504
- version = "1.0.36"
2557
+ version = "1.0.37"
2505
2558
  source = "registry+https://github.com/rust-lang/crates.io-index"
2506
- checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2559
+ checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2507
2560
  dependencies = [
2508
2561
  "proc-macro2",
2509
2562
  ]
@@ -2570,23 +2623,23 @@ dependencies = [
2570
2623
 
2571
2624
  [[package]]
2572
2625
  name = "redox_syscall"
2573
- version = "0.4.1"
2626
+ version = "0.5.7"
2574
2627
  source = "registry+https://github.com/rust-lang/crates.io-index"
2575
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2628
+ checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2576
2629
  dependencies = [
2577
- "bitflags 1.3.2",
2630
+ "bitflags 2.6.0",
2578
2631
  ]
2579
2632
 
2580
2633
  [[package]]
2581
2634
  name = "regex"
2582
- version = "1.10.5"
2635
+ version = "1.11.1"
2583
2636
  source = "registry+https://github.com/rust-lang/crates.io-index"
2584
- checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
2637
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2585
2638
  dependencies = [
2586
2639
  "aho-corasick",
2587
2640
  "memchr",
2588
- "regex-automata 0.4.6",
2589
- "regex-syntax 0.8.3",
2641
+ "regex-automata 0.4.8",
2642
+ "regex-syntax 0.8.5",
2590
2643
  ]
2591
2644
 
2592
2645
  [[package]]
@@ -2600,20 +2653,20 @@ dependencies = [
2600
2653
 
2601
2654
  [[package]]
2602
2655
  name = "regex-automata"
2603
- version = "0.4.6"
2656
+ version = "0.4.8"
2604
2657
  source = "registry+https://github.com/rust-lang/crates.io-index"
2605
- checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2658
+ checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
2606
2659
  dependencies = [
2607
2660
  "aho-corasick",
2608
2661
  "memchr",
2609
- "regex-syntax 0.8.3",
2662
+ "regex-syntax 0.8.5",
2610
2663
  ]
2611
2664
 
2612
2665
  [[package]]
2613
2666
  name = "regex-lite"
2614
- version = "0.1.5"
2667
+ version = "0.1.6"
2615
2668
  source = "registry+https://github.com/rust-lang/crates.io-index"
2616
- checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e"
2669
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2617
2670
 
2618
2671
  [[package]]
2619
2672
  name = "regex-syntax"
@@ -2623,17 +2676,17 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2623
2676
 
2624
2677
  [[package]]
2625
2678
  name = "regex-syntax"
2626
- version = "0.8.3"
2679
+ version = "0.8.5"
2627
2680
  source = "registry+https://github.com/rust-lang/crates.io-index"
2628
- checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2681
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2629
2682
 
2630
2683
  [[package]]
2631
2684
  name = "reqwest"
2632
- version = "0.12.5"
2685
+ version = "0.12.9"
2633
2686
  source = "registry+https://github.com/rust-lang/crates.io-index"
2634
- checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
2687
+ checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
2635
2688
  dependencies = [
2636
- "base64 0.22.0",
2689
+ "base64 0.22.1",
2637
2690
  "bytes",
2638
2691
  "futures-channel",
2639
2692
  "futures-core",
@@ -2652,8 +2705,8 @@ dependencies = [
2652
2705
  "percent-encoding",
2653
2706
  "pin-project-lite",
2654
2707
  "quinn",
2655
- "rustls 0.23.10",
2656
- "rustls-pemfile 2.1.2",
2708
+ "rustls",
2709
+ "rustls-pemfile",
2657
2710
  "rustls-pki-types",
2658
2711
  "serde",
2659
2712
  "serde_json",
@@ -2666,8 +2719,8 @@ dependencies = [
2666
2719
  "wasm-bindgen",
2667
2720
  "wasm-bindgen-futures",
2668
2721
  "web-sys",
2669
- "webpki-roots 0.26.1",
2670
- "winreg",
2722
+ "webpki-roots",
2723
+ "windows-registry",
2671
2724
  ]
2672
2725
 
2673
2726
  [[package]]
@@ -2680,7 +2733,7 @@ dependencies = [
2680
2733
  "cfg-if",
2681
2734
  "getrandom",
2682
2735
  "libc",
2683
- "spin 0.9.8",
2736
+ "spin",
2684
2737
  "untrusted",
2685
2738
  "windows-sys 0.52.0",
2686
2739
  ]
@@ -2728,32 +2781,32 @@ dependencies = [
2728
2781
 
2729
2782
  [[package]]
2730
2783
  name = "rustc-demangle"
2731
- version = "0.1.23"
2784
+ version = "0.1.24"
2732
2785
  source = "registry+https://github.com/rust-lang/crates.io-index"
2733
- checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2786
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2734
2787
 
2735
2788
  [[package]]
2736
2789
  name = "rustc-hash"
2737
- version = "1.1.0"
2790
+ version = "2.0.0"
2738
2791
  source = "registry+https://github.com/rust-lang/crates.io-index"
2739
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2792
+ checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
2740
2793
 
2741
2794
  [[package]]
2742
2795
  name = "rustc_version"
2743
- version = "0.4.0"
2796
+ version = "0.4.1"
2744
2797
  source = "registry+https://github.com/rust-lang/crates.io-index"
2745
- checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2798
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2746
2799
  dependencies = [
2747
2800
  "semver",
2748
2801
  ]
2749
2802
 
2750
2803
  [[package]]
2751
2804
  name = "rustix"
2752
- version = "0.38.34"
2805
+ version = "0.38.38"
2753
2806
  source = "registry+https://github.com/rust-lang/crates.io-index"
2754
- checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2807
+ checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
2755
2808
  dependencies = [
2756
- "bitflags 2.5.0",
2809
+ "bitflags 2.6.0",
2757
2810
  "errno",
2758
2811
  "libc",
2759
2812
  "linux-raw-sys",
@@ -2762,69 +2815,38 @@ dependencies = [
2762
2815
 
2763
2816
  [[package]]
2764
2817
  name = "rustls"
2765
- version = "0.21.11"
2818
+ version = "0.23.16"
2766
2819
  source = "registry+https://github.com/rust-lang/crates.io-index"
2767
- checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4"
2768
- dependencies = [
2769
- "ring",
2770
- "rustls-webpki 0.101.7",
2771
- "sct",
2772
- ]
2773
-
2774
- [[package]]
2775
- name = "rustls"
2776
- version = "0.23.10"
2777
- source = "registry+https://github.com/rust-lang/crates.io-index"
2778
- checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402"
2820
+ checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
2779
2821
  dependencies = [
2780
2822
  "once_cell",
2781
2823
  "ring",
2782
2824
  "rustls-pki-types",
2783
- "rustls-webpki 0.102.4",
2825
+ "rustls-webpki",
2784
2826
  "subtle",
2785
2827
  "zeroize",
2786
2828
  ]
2787
2829
 
2788
2830
  [[package]]
2789
2831
  name = "rustls-pemfile"
2790
- version = "1.0.4"
2791
- source = "registry+https://github.com/rust-lang/crates.io-index"
2792
- checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2793
- dependencies = [
2794
- "base64 0.21.7",
2795
- ]
2796
-
2797
- [[package]]
2798
- name = "rustls-pemfile"
2799
- version = "2.1.2"
2832
+ version = "2.2.0"
2800
2833
  source = "registry+https://github.com/rust-lang/crates.io-index"
2801
- checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
2834
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2802
2835
  dependencies = [
2803
- "base64 0.22.0",
2804
2836
  "rustls-pki-types",
2805
2837
  ]
2806
2838
 
2807
2839
  [[package]]
2808
2840
  name = "rustls-pki-types"
2809
- version = "1.7.0"
2810
- source = "registry+https://github.com/rust-lang/crates.io-index"
2811
- checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
2812
-
2813
- [[package]]
2814
- name = "rustls-webpki"
2815
- version = "0.101.7"
2841
+ version = "1.10.0"
2816
2842
  source = "registry+https://github.com/rust-lang/crates.io-index"
2817
- checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2818
- dependencies = [
2819
- "ring",
2820
- "untrusted",
2821
- ]
2843
+ checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
2822
2844
 
2823
2845
  [[package]]
2824
2846
  name = "rustls-webpki"
2825
- version = "0.102.4"
2847
+ version = "0.102.8"
2826
2848
  source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
2849
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2828
2850
  dependencies = [
2829
2851
  "ring",
2830
2852
  "rustls-pki-types",
@@ -2833,9 +2855,9 @@ dependencies = [
2833
2855
 
2834
2856
  [[package]]
2835
2857
  name = "ryu"
2836
- version = "1.0.17"
2858
+ version = "1.0.18"
2837
2859
  source = "registry+https://github.com/rust-lang/crates.io-index"
2838
- checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2860
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2839
2861
 
2840
2862
  [[package]]
2841
2863
  name = "same-file"
@@ -2852,16 +2874,6 @@ version = "1.2.0"
2852
2874
  source = "registry+https://github.com/rust-lang/crates.io-index"
2853
2875
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2854
2876
 
2855
- [[package]]
2856
- name = "sct"
2857
- version = "0.7.1"
2858
- source = "registry+https://github.com/rust-lang/crates.io-index"
2859
- checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2860
- dependencies = [
2861
- "ring",
2862
- "untrusted",
2863
- ]
2864
-
2865
2877
  [[package]]
2866
2878
  name = "secrecy"
2867
2879
  version = "0.8.0"
@@ -2874,15 +2886,15 @@ dependencies = [
2874
2886
 
2875
2887
  [[package]]
2876
2888
  name = "semver"
2877
- version = "1.0.22"
2889
+ version = "1.0.23"
2878
2890
  source = "registry+https://github.com/rust-lang/crates.io-index"
2879
- checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
2891
+ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2880
2892
 
2881
2893
  [[package]]
2882
2894
  name = "serde"
2883
- version = "1.0.204"
2895
+ version = "1.0.214"
2884
2896
  source = "registry+https://github.com/rust-lang/crates.io-index"
2885
- checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
2897
+ checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
2886
2898
  dependencies = [
2887
2899
  "serde_derive",
2888
2900
  ]
@@ -2900,22 +2912,23 @@ dependencies = [
2900
2912
 
2901
2913
  [[package]]
2902
2914
  name = "serde_derive"
2903
- version = "1.0.204"
2915
+ version = "1.0.214"
2904
2916
  source = "registry+https://github.com/rust-lang/crates.io-index"
2905
- checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2917
+ checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
2906
2918
  dependencies = [
2907
2919
  "proc-macro2",
2908
2920
  "quote",
2909
- "syn 2.0.60",
2921
+ "syn 2.0.85",
2910
2922
  ]
2911
2923
 
2912
2924
  [[package]]
2913
2925
  name = "serde_json"
2914
- version = "1.0.120"
2926
+ version = "1.0.132"
2915
2927
  source = "registry+https://github.com/rust-lang/crates.io-index"
2916
- checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
2928
+ checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
2917
2929
  dependencies = [
2918
2930
  "itoa",
2931
+ "memchr",
2919
2932
  "ryu",
2920
2933
  "serde",
2921
2934
  ]
@@ -2947,15 +2960,15 @@ dependencies = [
2947
2960
 
2948
2961
  [[package]]
2949
2962
  name = "serde_with"
2950
- version = "3.8.1"
2963
+ version = "3.11.0"
2951
2964
  source = "registry+https://github.com/rust-lang/crates.io-index"
2952
- checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20"
2965
+ checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817"
2953
2966
  dependencies = [
2954
- "base64 0.22.0",
2967
+ "base64 0.22.1",
2955
2968
  "chrono",
2956
2969
  "hex",
2957
2970
  "indexmap 1.9.3",
2958
- "indexmap 2.2.6",
2971
+ "indexmap 2.6.0",
2959
2972
  "serde",
2960
2973
  "serde_derive",
2961
2974
  "serde_json",
@@ -2965,14 +2978,14 @@ dependencies = [
2965
2978
 
2966
2979
  [[package]]
2967
2980
  name = "serde_with_macros"
2968
- version = "3.8.1"
2981
+ version = "3.11.0"
2969
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2970
- checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2"
2983
+ checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d"
2971
2984
  dependencies = [
2972
2985
  "darling",
2973
2986
  "proc-macro2",
2974
2987
  "quote",
2975
- "syn 2.0.60",
2988
+ "syn 2.0.85",
2976
2989
  ]
2977
2990
 
2978
2991
  [[package]]
@@ -3012,6 +3025,12 @@ version = "1.1.0"
3012
3025
  source = "registry+https://github.com/rust-lang/crates.io-index"
3013
3026
  checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
3014
3027
 
3028
+ [[package]]
3029
+ name = "shlex"
3030
+ version = "1.3.0"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3033
+
3015
3034
  [[package]]
3016
3035
  name = "signal-hook-registry"
3017
3036
  version = "1.4.2"
@@ -3045,23 +3064,20 @@ name = "smallvec"
3045
3064
  version = "1.13.2"
3046
3065
  source = "registry+https://github.com/rust-lang/crates.io-index"
3047
3066
  checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3067
+ dependencies = [
3068
+ "serde",
3069
+ ]
3048
3070
 
3049
3071
  [[package]]
3050
3072
  name = "socket2"
3051
- version = "0.5.6"
3073
+ version = "0.5.7"
3052
3074
  source = "registry+https://github.com/rust-lang/crates.io-index"
3053
- checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
3075
+ checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
3054
3076
  dependencies = [
3055
3077
  "libc",
3056
3078
  "windows-sys 0.52.0",
3057
3079
  ]
3058
3080
 
3059
- [[package]]
3060
- name = "spin"
3061
- version = "0.5.2"
3062
- source = "registry+https://github.com/rust-lang/crates.io-index"
3063
- checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
3064
-
3065
3081
  [[package]]
3066
3082
  name = "spin"
3067
3083
  version = "0.9.8"
@@ -3083,20 +3099,19 @@ dependencies = [
3083
3099
 
3084
3100
  [[package]]
3085
3101
  name = "sqlformat"
3086
- version = "0.2.3"
3102
+ version = "0.2.6"
3087
3103
  source = "registry+https://github.com/rust-lang/crates.io-index"
3088
- checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c"
3104
+ checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790"
3089
3105
  dependencies = [
3090
- "itertools 0.12.1",
3091
3106
  "nom",
3092
3107
  "unicode_categories",
3093
3108
  ]
3094
3109
 
3095
3110
  [[package]]
3096
3111
  name = "sqlx"
3097
- version = "0.7.4"
3112
+ version = "0.8.2"
3098
3113
  source = "registry+https://github.com/rust-lang/crates.io-index"
3099
- checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa"
3114
+ checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e"
3100
3115
  dependencies = [
3101
3116
  "sqlx-core",
3102
3117
  "sqlx-macros",
@@ -3107,11 +3122,10 @@ dependencies = [
3107
3122
 
3108
3123
  [[package]]
3109
3124
  name = "sqlx-core"
3110
- version = "0.7.4"
3125
+ version = "0.8.2"
3111
3126
  source = "registry+https://github.com/rust-lang/crates.io-index"
3112
- checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6"
3127
+ checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e"
3113
3128
  dependencies = [
3114
- "ahash 0.8.11",
3115
3129
  "atoi",
3116
3130
  "byteorder",
3117
3131
  "bytes",
@@ -3125,16 +3139,17 @@ dependencies = [
3125
3139
  "futures-intrusive",
3126
3140
  "futures-io",
3127
3141
  "futures-util",
3142
+ "hashbrown 0.14.5",
3128
3143
  "hashlink",
3129
3144
  "hex",
3130
- "indexmap 2.2.6",
3145
+ "indexmap 2.6.0",
3131
3146
  "log",
3132
3147
  "memchr",
3133
3148
  "once_cell",
3134
3149
  "paste",
3135
3150
  "percent-encoding",
3136
- "rustls 0.21.11",
3137
- "rustls-pemfile 1.0.4",
3151
+ "rustls",
3152
+ "rustls-pemfile",
3138
3153
  "serde",
3139
3154
  "serde_json",
3140
3155
  "sha2",
@@ -3146,31 +3161,31 @@ dependencies = [
3146
3161
  "tracing",
3147
3162
  "url",
3148
3163
  "uuid",
3149
- "webpki-roots 0.25.4",
3164
+ "webpki-roots",
3150
3165
  ]
3151
3166
 
3152
3167
  [[package]]
3153
3168
  name = "sqlx-macros"
3154
- version = "0.7.4"
3169
+ version = "0.8.2"
3155
3170
  source = "registry+https://github.com/rust-lang/crates.io-index"
3156
- checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127"
3171
+ checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657"
3157
3172
  dependencies = [
3158
3173
  "proc-macro2",
3159
3174
  "quote",
3160
3175
  "sqlx-core",
3161
3176
  "sqlx-macros-core",
3162
- "syn 1.0.109",
3177
+ "syn 2.0.85",
3163
3178
  ]
3164
3179
 
3165
3180
  [[package]]
3166
3181
  name = "sqlx-macros-core"
3167
- version = "0.7.4"
3182
+ version = "0.8.2"
3168
3183
  source = "registry+https://github.com/rust-lang/crates.io-index"
3169
- checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8"
3184
+ checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5"
3170
3185
  dependencies = [
3171
3186
  "dotenvy",
3172
3187
  "either",
3173
- "heck",
3188
+ "heck 0.5.0",
3174
3189
  "hex",
3175
3190
  "once_cell",
3176
3191
  "proc-macro2",
@@ -3182,7 +3197,7 @@ dependencies = [
3182
3197
  "sqlx-mysql",
3183
3198
  "sqlx-postgres",
3184
3199
  "sqlx-sqlite",
3185
- "syn 1.0.109",
3200
+ "syn 2.0.85",
3186
3201
  "tempfile",
3187
3202
  "tokio",
3188
3203
  "url",
@@ -3190,13 +3205,13 @@ dependencies = [
3190
3205
 
3191
3206
  [[package]]
3192
3207
  name = "sqlx-mysql"
3193
- version = "0.7.4"
3208
+ version = "0.8.2"
3194
3209
  source = "registry+https://github.com/rust-lang/crates.io-index"
3195
- checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418"
3210
+ checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a"
3196
3211
  dependencies = [
3197
3212
  "atoi",
3198
- "base64 0.21.7",
3199
- "bitflags 2.5.0",
3213
+ "base64 0.22.1",
3214
+ "bitflags 2.6.0",
3200
3215
  "byteorder",
3201
3216
  "bytes",
3202
3217
  "chrono",
@@ -3234,13 +3249,13 @@ dependencies = [
3234
3249
 
3235
3250
  [[package]]
3236
3251
  name = "sqlx-postgres"
3237
- version = "0.7.4"
3252
+ version = "0.8.2"
3238
3253
  source = "registry+https://github.com/rust-lang/crates.io-index"
3239
- checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e"
3254
+ checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8"
3240
3255
  dependencies = [
3241
3256
  "atoi",
3242
- "base64 0.21.7",
3243
- "bitflags 2.5.0",
3257
+ "base64 0.22.1",
3258
+ "bitflags 2.6.0",
3244
3259
  "byteorder",
3245
3260
  "chrono",
3246
3261
  "crc",
@@ -3274,9 +3289,9 @@ dependencies = [
3274
3289
 
3275
3290
  [[package]]
3276
3291
  name = "sqlx-sqlite"
3277
- version = "0.7.4"
3292
+ version = "0.8.2"
3278
3293
  source = "registry+https://github.com/rust-lang/crates.io-index"
3279
- checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa"
3294
+ checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680"
3280
3295
  dependencies = [
3281
3296
  "atoi",
3282
3297
  "chrono",
@@ -3290,35 +3305,35 @@ dependencies = [
3290
3305
  "log",
3291
3306
  "percent-encoding",
3292
3307
  "serde",
3308
+ "serde_urlencoded",
3293
3309
  "sqlx-core",
3294
3310
  "tracing",
3295
3311
  "url",
3296
- "urlencoding",
3297
3312
  "uuid",
3298
3313
  ]
3299
3314
 
3300
3315
  [[package]]
3301
3316
  name = "stringprep"
3302
- version = "0.1.4"
3317
+ version = "0.1.5"
3303
3318
  source = "registry+https://github.com/rust-lang/crates.io-index"
3304
- checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6"
3319
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
3305
3320
  dependencies = [
3306
- "finl_unicode",
3307
3321
  "unicode-bidi",
3308
3322
  "unicode-normalization",
3323
+ "unicode-properties",
3309
3324
  ]
3310
3325
 
3311
3326
  [[package]]
3312
3327
  name = "strsim"
3313
- version = "0.10.0"
3328
+ version = "0.11.1"
3314
3329
  source = "registry+https://github.com/rust-lang/crates.io-index"
3315
- checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3330
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3316
3331
 
3317
3332
  [[package]]
3318
3333
  name = "subtle"
3319
- version = "2.5.0"
3334
+ version = "2.6.1"
3320
3335
  source = "registry+https://github.com/rust-lang/crates.io-index"
3321
- checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
3336
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3322
3337
 
3323
3338
  [[package]]
3324
3339
  name = "syn"
@@ -3333,9 +3348,9 @@ dependencies = [
3333
3348
 
3334
3349
  [[package]]
3335
3350
  name = "syn"
3336
- version = "2.0.60"
3351
+ version = "2.0.85"
3337
3352
  source = "registry+https://github.com/rust-lang/crates.io-index"
3338
- checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
3353
+ checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
3339
3354
  dependencies = [
3340
3355
  "proc-macro2",
3341
3356
  "quote",
@@ -3347,43 +3362,47 @@ name = "sync_wrapper"
3347
3362
  version = "1.0.1"
3348
3363
  source = "registry+https://github.com/rust-lang/crates.io-index"
3349
3364
  checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
3365
+ dependencies = [
3366
+ "futures-core",
3367
+ ]
3350
3368
 
3351
3369
  [[package]]
3352
3370
  name = "target-lexicon"
3353
- version = "0.12.14"
3371
+ version = "0.12.16"
3354
3372
  source = "registry+https://github.com/rust-lang/crates.io-index"
3355
- checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
3373
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3356
3374
 
3357
3375
  [[package]]
3358
3376
  name = "tempfile"
3359
- version = "3.10.1"
3377
+ version = "3.13.0"
3360
3378
  source = "registry+https://github.com/rust-lang/crates.io-index"
3361
- checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
3379
+ checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
3362
3380
  dependencies = [
3363
3381
  "cfg-if",
3364
3382
  "fastrand",
3383
+ "once_cell",
3365
3384
  "rustix",
3366
- "windows-sys 0.52.0",
3385
+ "windows-sys 0.59.0",
3367
3386
  ]
3368
3387
 
3369
3388
  [[package]]
3370
3389
  name = "thiserror"
3371
- version = "1.0.63"
3390
+ version = "1.0.65"
3372
3391
  source = "registry+https://github.com/rust-lang/crates.io-index"
3373
- checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
3392
+ checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
3374
3393
  dependencies = [
3375
3394
  "thiserror-impl",
3376
3395
  ]
3377
3396
 
3378
3397
  [[package]]
3379
3398
  name = "thiserror-impl"
3380
- version = "1.0.63"
3399
+ version = "1.0.65"
3381
3400
  source = "registry+https://github.com/rust-lang/crates.io-index"
3382
- checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
3401
+ checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
3383
3402
  dependencies = [
3384
3403
  "proc-macro2",
3385
3404
  "quote",
3386
- "syn 2.0.60",
3405
+ "syn 2.0.85",
3387
3406
  ]
3388
3407
 
3389
3408
  [[package]]
@@ -3439,9 +3458,9 @@ dependencies = [
3439
3458
 
3440
3459
  [[package]]
3441
3460
  name = "tinyvec"
3442
- version = "1.6.0"
3461
+ version = "1.8.0"
3443
3462
  source = "registry+https://github.com/rust-lang/crates.io-index"
3444
- checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
3463
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
3445
3464
  dependencies = [
3446
3465
  "tinyvec_macros",
3447
3466
  ]
@@ -3454,32 +3473,31 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3454
3473
 
3455
3474
  [[package]]
3456
3475
  name = "tokio"
3457
- version = "1.38.0"
3476
+ version = "1.41.0"
3458
3477
  source = "registry+https://github.com/rust-lang/crates.io-index"
3459
- checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
3478
+ checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
3460
3479
  dependencies = [
3461
3480
  "backtrace",
3462
3481
  "bytes",
3463
3482
  "libc",
3464
3483
  "mio",
3465
- "num_cpus",
3466
3484
  "parking_lot",
3467
3485
  "pin-project-lite",
3468
3486
  "signal-hook-registry",
3469
3487
  "socket2",
3470
3488
  "tokio-macros",
3471
- "windows-sys 0.48.0",
3489
+ "windows-sys 0.52.0",
3472
3490
  ]
3473
3491
 
3474
3492
  [[package]]
3475
3493
  name = "tokio-macros"
3476
- version = "2.3.0"
3494
+ version = "2.4.0"
3477
3495
  source = "registry+https://github.com/rust-lang/crates.io-index"
3478
- checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
3496
+ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
3479
3497
  dependencies = [
3480
3498
  "proc-macro2",
3481
3499
  "quote",
3482
- "syn 2.0.60",
3500
+ "syn 2.0.85",
3483
3501
  ]
3484
3502
 
3485
3503
  [[package]]
@@ -3488,16 +3506,16 @@ version = "0.26.0"
3488
3506
  source = "registry+https://github.com/rust-lang/crates.io-index"
3489
3507
  checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
3490
3508
  dependencies = [
3491
- "rustls 0.23.10",
3509
+ "rustls",
3492
3510
  "rustls-pki-types",
3493
3511
  "tokio",
3494
3512
  ]
3495
3513
 
3496
3514
  [[package]]
3497
3515
  name = "tokio-stream"
3498
- version = "0.1.15"
3516
+ version = "0.1.16"
3499
3517
  source = "registry+https://github.com/rust-lang/crates.io-index"
3500
- checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
3518
+ checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
3501
3519
  dependencies = [
3502
3520
  "futures-core",
3503
3521
  "pin-project-lite",
@@ -3506,16 +3524,15 @@ dependencies = [
3506
3524
 
3507
3525
  [[package]]
3508
3526
  name = "tokio-util"
3509
- version = "0.7.10"
3527
+ version = "0.7.12"
3510
3528
  source = "registry+https://github.com/rust-lang/crates.io-index"
3511
- checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
3529
+ checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
3512
3530
  dependencies = [
3513
3531
  "bytes",
3514
3532
  "futures-core",
3515
3533
  "futures-sink",
3516
3534
  "pin-project-lite",
3517
3535
  "tokio",
3518
- "tracing",
3519
3536
  ]
3520
3537
 
3521
3538
  [[package]]
@@ -3527,33 +3544,11 @@ dependencies = [
3527
3544
  "serde",
3528
3545
  ]
3529
3546
 
3530
- [[package]]
3531
- name = "tower"
3532
- version = "0.4.13"
3533
- source = "registry+https://github.com/rust-lang/crates.io-index"
3534
- checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3535
- dependencies = [
3536
- "futures-core",
3537
- "futures-util",
3538
- "pin-project",
3539
- "pin-project-lite",
3540
- "tokio",
3541
- "tower-layer",
3542
- "tower-service",
3543
- "tracing",
3544
- ]
3545
-
3546
- [[package]]
3547
- name = "tower-layer"
3548
- version = "0.3.2"
3549
- source = "registry+https://github.com/rust-lang/crates.io-index"
3550
- checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
3551
-
3552
3547
  [[package]]
3553
3548
  name = "tower-service"
3554
- version = "0.3.2"
3549
+ version = "0.3.3"
3555
3550
  source = "registry+https://github.com/rust-lang/crates.io-index"
3556
- checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
3551
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3557
3552
 
3558
3553
  [[package]]
3559
3554
  name = "tracing"
@@ -3569,9 +3564,9 @@ dependencies = [
3569
3564
 
3570
3565
  [[package]]
3571
3566
  name = "tracing-actix-web"
3572
- version = "0.7.11"
3567
+ version = "0.7.14"
3573
3568
  source = "registry+https://github.com/rust-lang/crates.io-index"
3574
- checksum = "4ee9e39a66d9b615644893ffc1704d2a89b5b315b7fd0228ad3182ca9a306b19"
3569
+ checksum = "6b87073920bcce23e9f5cb0d2671e9f01d6803bb5229c159b2f5ce6806d73ffc"
3575
3570
  dependencies = [
3576
3571
  "actix-web",
3577
3572
  "mutually_exclusive_features",
@@ -3588,7 +3583,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3588
3583
  dependencies = [
3589
3584
  "proc-macro2",
3590
3585
  "quote",
3591
- "syn 2.0.60",
3586
+ "syn 2.0.85",
3592
3587
  ]
3593
3588
 
3594
3589
  [[package]]
@@ -3683,36 +3678,42 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3683
3678
 
3684
3679
  [[package]]
3685
3680
  name = "ucd-trie"
3686
- version = "0.1.6"
3681
+ version = "0.1.7"
3687
3682
  source = "registry+https://github.com/rust-lang/crates.io-index"
3688
- checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
3683
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
3689
3684
 
3690
3685
  [[package]]
3691
3686
  name = "unicode-bidi"
3692
- version = "0.3.15"
3687
+ version = "0.3.17"
3693
3688
  source = "registry+https://github.com/rust-lang/crates.io-index"
3694
- checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
3689
+ checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
3695
3690
 
3696
3691
  [[package]]
3697
3692
  name = "unicode-ident"
3698
- version = "1.0.12"
3693
+ version = "1.0.13"
3699
3694
  source = "registry+https://github.com/rust-lang/crates.io-index"
3700
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
3695
+ checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
3701
3696
 
3702
3697
  [[package]]
3703
3698
  name = "unicode-normalization"
3704
- version = "0.1.23"
3699
+ version = "0.1.24"
3705
3700
  source = "registry+https://github.com/rust-lang/crates.io-index"
3706
- checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
3701
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3707
3702
  dependencies = [
3708
3703
  "tinyvec",
3709
3704
  ]
3710
3705
 
3706
+ [[package]]
3707
+ name = "unicode-properties"
3708
+ version = "0.1.3"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
3711
+
3711
3712
  [[package]]
3712
3713
  name = "unicode-segmentation"
3713
- version = "1.11.0"
3714
+ version = "1.12.0"
3714
3715
  source = "registry+https://github.com/rust-lang/crates.io-index"
3715
- checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
3716
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3716
3717
 
3717
3718
  [[package]]
3718
3719
  name = "unicode_categories"
@@ -3734,9 +3735,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3734
3735
 
3735
3736
  [[package]]
3736
3737
  name = "url"
3737
- version = "2.5.0"
3738
+ version = "2.5.2"
3738
3739
  source = "registry+https://github.com/rust-lang/crates.io-index"
3739
- checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
3740
+ checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
3740
3741
  dependencies = [
3741
3742
  "form_urlencoded",
3742
3743
  "idna",
@@ -3751,9 +3752,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3751
3752
 
3752
3753
  [[package]]
3753
3754
  name = "uuid"
3754
- version = "1.10.0"
3755
+ version = "1.11.0"
3755
3756
  source = "registry+https://github.com/rust-lang/crates.io-index"
3756
- checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
3757
+ checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
3757
3758
  dependencies = [
3758
3759
  "getrandom",
3759
3760
  ]
@@ -3772,9 +3773,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3772
3773
 
3773
3774
  [[package]]
3774
3775
  name = "version_check"
3775
- version = "0.9.4"
3776
+ version = "0.9.5"
3776
3777
  source = "registry+https://github.com/rust-lang/crates.io-index"
3777
- checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3778
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3778
3779
 
3779
3780
  [[package]]
3780
3781
  name = "walkdir"
@@ -3809,34 +3810,35 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3809
3810
 
3810
3811
  [[package]]
3811
3812
  name = "wasm-bindgen"
3812
- version = "0.2.92"
3813
+ version = "0.2.95"
3813
3814
  source = "registry+https://github.com/rust-lang/crates.io-index"
3814
- checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
3815
+ checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
3815
3816
  dependencies = [
3816
3817
  "cfg-if",
3818
+ "once_cell",
3817
3819
  "wasm-bindgen-macro",
3818
3820
  ]
3819
3821
 
3820
3822
  [[package]]
3821
3823
  name = "wasm-bindgen-backend"
3822
- version = "0.2.92"
3824
+ version = "0.2.95"
3823
3825
  source = "registry+https://github.com/rust-lang/crates.io-index"
3824
- checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
3826
+ checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
3825
3827
  dependencies = [
3826
3828
  "bumpalo",
3827
3829
  "log",
3828
3830
  "once_cell",
3829
3831
  "proc-macro2",
3830
3832
  "quote",
3831
- "syn 2.0.60",
3833
+ "syn 2.0.85",
3832
3834
  "wasm-bindgen-shared",
3833
3835
  ]
3834
3836
 
3835
3837
  [[package]]
3836
3838
  name = "wasm-bindgen-futures"
3837
- version = "0.4.42"
3839
+ version = "0.4.45"
3838
3840
  source = "registry+https://github.com/rust-lang/crates.io-index"
3839
- checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
3841
+ checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
3840
3842
  dependencies = [
3841
3843
  "cfg-if",
3842
3844
  "js-sys",
@@ -3846,9 +3848,9 @@ dependencies = [
3846
3848
 
3847
3849
  [[package]]
3848
3850
  name = "wasm-bindgen-macro"
3849
- version = "0.2.92"
3851
+ version = "0.2.95"
3850
3852
  source = "registry+https://github.com/rust-lang/crates.io-index"
3851
- checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
3853
+ checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
3852
3854
  dependencies = [
3853
3855
  "quote",
3854
3856
  "wasm-bindgen-macro-support",
@@ -3856,28 +3858,28 @@ dependencies = [
3856
3858
 
3857
3859
  [[package]]
3858
3860
  name = "wasm-bindgen-macro-support"
3859
- version = "0.2.92"
3861
+ version = "0.2.95"
3860
3862
  source = "registry+https://github.com/rust-lang/crates.io-index"
3861
- checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3863
+ checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
3862
3864
  dependencies = [
3863
3865
  "proc-macro2",
3864
3866
  "quote",
3865
- "syn 2.0.60",
3867
+ "syn 2.0.85",
3866
3868
  "wasm-bindgen-backend",
3867
3869
  "wasm-bindgen-shared",
3868
3870
  ]
3869
3871
 
3870
3872
  [[package]]
3871
3873
  name = "wasm-bindgen-shared"
3872
- version = "0.2.92"
3874
+ version = "0.2.95"
3873
3875
  source = "registry+https://github.com/rust-lang/crates.io-index"
3874
- checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3876
+ checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
3875
3877
 
3876
3878
  [[package]]
3877
3879
  name = "web-sys"
3878
- version = "0.3.69"
3880
+ version = "0.3.72"
3879
3881
  source = "registry+https://github.com/rust-lang/crates.io-index"
3880
- checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
3882
+ checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
3881
3883
  dependencies = [
3882
3884
  "js-sys",
3883
3885
  "wasm-bindgen",
@@ -3885,24 +3887,18 @@ dependencies = [
3885
3887
 
3886
3888
  [[package]]
3887
3889
  name = "webpki-roots"
3888
- version = "0.25.4"
3889
- source = "registry+https://github.com/rust-lang/crates.io-index"
3890
- checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3891
-
3892
- [[package]]
3893
- name = "webpki-roots"
3894
- version = "0.26.1"
3890
+ version = "0.26.6"
3895
3891
  source = "registry+https://github.com/rust-lang/crates.io-index"
3896
- checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
3892
+ checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958"
3897
3893
  dependencies = [
3898
3894
  "rustls-pki-types",
3899
3895
  ]
3900
3896
 
3901
3897
  [[package]]
3902
3898
  name = "whoami"
3903
- version = "1.5.1"
3899
+ version = "1.5.2"
3904
3900
  source = "registry+https://github.com/rust-lang/crates.io-index"
3905
- checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
3901
+ checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d"
3906
3902
  dependencies = [
3907
3903
  "redox_syscall",
3908
3904
  "wasite",
@@ -3926,11 +3922,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3926
3922
 
3927
3923
  [[package]]
3928
3924
  name = "winapi-util"
3929
- version = "0.1.6"
3925
+ version = "0.1.9"
3930
3926
  source = "registry+https://github.com/rust-lang/crates.io-index"
3931
- checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
3927
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3932
3928
  dependencies = [
3933
- "winapi",
3929
+ "windows-sys 0.59.0",
3934
3930
  ]
3935
3931
 
3936
3932
  [[package]]
@@ -3945,7 +3941,37 @@ version = "0.52.0"
3945
3941
  source = "registry+https://github.com/rust-lang/crates.io-index"
3946
3942
  checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3947
3943
  dependencies = [
3948
- "windows-targets 0.52.5",
3944
+ "windows-targets 0.52.6",
3945
+ ]
3946
+
3947
+ [[package]]
3948
+ name = "windows-registry"
3949
+ version = "0.2.0"
3950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3951
+ checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
3952
+ dependencies = [
3953
+ "windows-result",
3954
+ "windows-strings",
3955
+ "windows-targets 0.52.6",
3956
+ ]
3957
+
3958
+ [[package]]
3959
+ name = "windows-result"
3960
+ version = "0.2.0"
3961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3962
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
3963
+ dependencies = [
3964
+ "windows-targets 0.52.6",
3965
+ ]
3966
+
3967
+ [[package]]
3968
+ name = "windows-strings"
3969
+ version = "0.1.0"
3970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3971
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
3972
+ dependencies = [
3973
+ "windows-result",
3974
+ "windows-targets 0.52.6",
3949
3975
  ]
3950
3976
 
3951
3977
  [[package]]
@@ -3963,7 +3989,16 @@ version = "0.52.0"
3963
3989
  source = "registry+https://github.com/rust-lang/crates.io-index"
3964
3990
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3965
3991
  dependencies = [
3966
- "windows-targets 0.52.5",
3992
+ "windows-targets 0.52.6",
3993
+ ]
3994
+
3995
+ [[package]]
3996
+ name = "windows-sys"
3997
+ version = "0.59.0"
3998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3999
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4000
+ dependencies = [
4001
+ "windows-targets 0.52.6",
3967
4002
  ]
3968
4003
 
3969
4004
  [[package]]
@@ -3983,18 +4018,18 @@ dependencies = [
3983
4018
 
3984
4019
  [[package]]
3985
4020
  name = "windows-targets"
3986
- version = "0.52.5"
4021
+ version = "0.52.6"
3987
4022
  source = "registry+https://github.com/rust-lang/crates.io-index"
3988
- checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
4023
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3989
4024
  dependencies = [
3990
- "windows_aarch64_gnullvm 0.52.5",
3991
- "windows_aarch64_msvc 0.52.5",
3992
- "windows_i686_gnu 0.52.5",
4025
+ "windows_aarch64_gnullvm 0.52.6",
4026
+ "windows_aarch64_msvc 0.52.6",
4027
+ "windows_i686_gnu 0.52.6",
3993
4028
  "windows_i686_gnullvm",
3994
- "windows_i686_msvc 0.52.5",
3995
- "windows_x86_64_gnu 0.52.5",
3996
- "windows_x86_64_gnullvm 0.52.5",
3997
- "windows_x86_64_msvc 0.52.5",
4029
+ "windows_i686_msvc 0.52.6",
4030
+ "windows_x86_64_gnu 0.52.6",
4031
+ "windows_x86_64_gnullvm 0.52.6",
4032
+ "windows_x86_64_msvc 0.52.6",
3998
4033
  ]
3999
4034
 
4000
4035
  [[package]]
@@ -4005,9 +4040,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4005
4040
 
4006
4041
  [[package]]
4007
4042
  name = "windows_aarch64_gnullvm"
4008
- version = "0.52.5"
4043
+ version = "0.52.6"
4009
4044
  source = "registry+https://github.com/rust-lang/crates.io-index"
4010
- checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
4045
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4011
4046
 
4012
4047
  [[package]]
4013
4048
  name = "windows_aarch64_msvc"
@@ -4017,9 +4052,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4017
4052
 
4018
4053
  [[package]]
4019
4054
  name = "windows_aarch64_msvc"
4020
- version = "0.52.5"
4055
+ version = "0.52.6"
4021
4056
  source = "registry+https://github.com/rust-lang/crates.io-index"
4022
- checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
4057
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4023
4058
 
4024
4059
  [[package]]
4025
4060
  name = "windows_i686_gnu"
@@ -4029,15 +4064,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4029
4064
 
4030
4065
  [[package]]
4031
4066
  name = "windows_i686_gnu"
4032
- version = "0.52.5"
4067
+ version = "0.52.6"
4033
4068
  source = "registry+https://github.com/rust-lang/crates.io-index"
4034
- checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
4069
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4035
4070
 
4036
4071
  [[package]]
4037
4072
  name = "windows_i686_gnullvm"
4038
- version = "0.52.5"
4073
+ version = "0.52.6"
4039
4074
  source = "registry+https://github.com/rust-lang/crates.io-index"
4040
- checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
4075
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4041
4076
 
4042
4077
  [[package]]
4043
4078
  name = "windows_i686_msvc"
@@ -4047,9 +4082,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4047
4082
 
4048
4083
  [[package]]
4049
4084
  name = "windows_i686_msvc"
4050
- version = "0.52.5"
4085
+ version = "0.52.6"
4051
4086
  source = "registry+https://github.com/rust-lang/crates.io-index"
4052
- checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
4087
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4053
4088
 
4054
4089
  [[package]]
4055
4090
  name = "windows_x86_64_gnu"
@@ -4059,9 +4094,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4059
4094
 
4060
4095
  [[package]]
4061
4096
  name = "windows_x86_64_gnu"
4062
- version = "0.52.5"
4097
+ version = "0.52.6"
4063
4098
  source = "registry+https://github.com/rust-lang/crates.io-index"
4064
- checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
4099
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4065
4100
 
4066
4101
  [[package]]
4067
4102
  name = "windows_x86_64_gnullvm"
@@ -4071,9 +4106,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4071
4106
 
4072
4107
  [[package]]
4073
4108
  name = "windows_x86_64_gnullvm"
4074
- version = "0.52.5"
4109
+ version = "0.52.6"
4075
4110
  source = "registry+https://github.com/rust-lang/crates.io-index"
4076
- checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
4111
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4077
4112
 
4078
4113
  [[package]]
4079
4114
  name = "windows_x86_64_msvc"
@@ -4083,29 +4118,19 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4083
4118
 
4084
4119
  [[package]]
4085
4120
  name = "windows_x86_64_msvc"
4086
- version = "0.52.5"
4087
- source = "registry+https://github.com/rust-lang/crates.io-index"
4088
- checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
4089
-
4090
- [[package]]
4091
- name = "winreg"
4092
- version = "0.52.0"
4121
+ version = "0.52.6"
4093
4122
  source = "registry+https://github.com/rust-lang/crates.io-index"
4094
- checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
4095
- dependencies = [
4096
- "cfg-if",
4097
- "windows-sys 0.48.0",
4098
- ]
4123
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4099
4124
 
4100
4125
  [[package]]
4101
4126
  name = "wiremock"
4102
- version = "0.6.0"
4127
+ version = "0.6.2"
4103
4128
  source = "registry+https://github.com/rust-lang/crates.io-index"
4104
- checksum = "ec874e1eef0df2dcac546057fe5e29186f09c378181cd7b635b4b7bcc98e9d81"
4129
+ checksum = "7fff469918e7ca034884c7fd8f93fe27bacb7fcb599fd879df6c7b429a29b646"
4105
4130
  dependencies = [
4106
4131
  "assert-json-diff",
4107
4132
  "async-trait",
4108
- "base64 0.21.7",
4133
+ "base64 0.22.1",
4109
4134
  "deadpool",
4110
4135
  "futures",
4111
4136
  "http 1.1.0",
@@ -4132,53 +4157,54 @@ dependencies = [
4132
4157
 
4133
4158
  [[package]]
4134
4159
  name = "zerocopy"
4135
- version = "0.7.32"
4160
+ version = "0.7.35"
4136
4161
  source = "registry+https://github.com/rust-lang/crates.io-index"
4137
- checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
4162
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4138
4163
  dependencies = [
4164
+ "byteorder",
4139
4165
  "zerocopy-derive",
4140
4166
  ]
4141
4167
 
4142
4168
  [[package]]
4143
4169
  name = "zerocopy-derive"
4144
- version = "0.7.32"
4170
+ version = "0.7.35"
4145
4171
  source = "registry+https://github.com/rust-lang/crates.io-index"
4146
- checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
4172
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4147
4173
  dependencies = [
4148
4174
  "proc-macro2",
4149
4175
  "quote",
4150
- "syn 2.0.60",
4176
+ "syn 2.0.85",
4151
4177
  ]
4152
4178
 
4153
4179
  [[package]]
4154
4180
  name = "zeroize"
4155
- version = "1.7.0"
4181
+ version = "1.8.1"
4156
4182
  source = "registry+https://github.com/rust-lang/crates.io-index"
4157
- checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
4183
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4158
4184
 
4159
4185
  [[package]]
4160
4186
  name = "zstd"
4161
- version = "0.13.1"
4187
+ version = "0.13.2"
4162
4188
  source = "registry+https://github.com/rust-lang/crates.io-index"
4163
- checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
4189
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
4164
4190
  dependencies = [
4165
4191
  "zstd-safe",
4166
4192
  ]
4167
4193
 
4168
4194
  [[package]]
4169
4195
  name = "zstd-safe"
4170
- version = "7.1.0"
4196
+ version = "7.2.1"
4171
4197
  source = "registry+https://github.com/rust-lang/crates.io-index"
4172
- checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
4198
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
4173
4199
  dependencies = [
4174
4200
  "zstd-sys",
4175
4201
  ]
4176
4202
 
4177
4203
  [[package]]
4178
4204
  name = "zstd-sys"
4179
- version = "2.0.10+zstd.1.5.6"
4205
+ version = "2.0.13+zstd.1.5.6"
4180
4206
  source = "registry+https://github.com/rust-lang/crates.io-index"
4181
- checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
4207
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4182
4208
  dependencies = [
4183
4209
  "cc",
4184
4210
  "pkg-config",