python-auditor 0.9.4__tar.gz → 0.10.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. {python_auditor-0.9.4 → python_auditor-0.10.0}/Cargo.lock +1178 -308
  2. {python_auditor-0.9.4 → python_auditor-0.10.0}/Cargo.toml +1 -1
  3. {python_auditor-0.9.4 → python_auditor-0.10.0}/PKG-INFO +1 -1
  4. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/examples.rst +20 -20
  5. python_auditor-0.10.0/local_dependencies/auditor/.sqlx/query-bac1cfa96d1801a491bc325101a0ea88c18a9e1ca50b2b623e07791a46d61b48.json +28 -0
  6. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/Cargo.toml +8 -1
  7. python_auditor-0.10.0/local_dependencies/auditor/certs/rootCA-key.pem +52 -0
  8. python_auditor-0.10.0/local_dependencies/auditor/certs/rootCA.pem +31 -0
  9. python_auditor-0.10.0/local_dependencies/auditor/certs/server-cert.pem +27 -0
  10. python_auditor-0.10.0/local_dependencies/auditor/certs/server-key.pem +28 -0
  11. python_auditor-0.10.0/local_dependencies/auditor/configuration/archive.yaml +27 -0
  12. python_auditor-0.10.0/local_dependencies/auditor/configuration/rbac.yaml +35 -0
  13. python_auditor-0.10.0/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/.env +7 -0
  14. python_auditor-0.10.0/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/parquet_to_auditor.py +104 -0
  15. python_auditor-0.10.0/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/requirements.txt +5 -0
  16. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +2 -2
  17. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +2 -1
  18. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +12 -12
  19. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +3 -3
  20. python_auditor-0.10.0/local_dependencies/auditor/src/archive.rs +400 -0
  21. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/configuration.rs +127 -1
  22. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/score.rs +2 -7
  23. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/lib.rs +3 -0
  24. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/main.rs +107 -5
  25. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/metrics/database.rs +18 -9
  26. python_auditor-0.10.0/local_dependencies/auditor/src/middleware.rs +163 -0
  27. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/add.rs +52 -25
  28. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +126 -35
  29. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/record_handlers.rs +16 -4
  30. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/startup.rs +92 -9
  31. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +8 -11
  32. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/helpers.rs +4 -0
  33. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/Cargo.toml +1 -1
  34. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +5 -5
  35. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/database.rs +3 -0
  36. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/lib.rs +16 -16
  37. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_advanced_query.py +3 -3
  38. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_advanced_query_blocking.py +3 -3
  39. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_advanced_query_queued.py +3 -3
  40. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/client.rs +2 -2
  41. python_auditor-0.9.4/local_dependencies/auditor/certs/rootCA-key.pem +0 -40
  42. python_auditor-0.9.4/local_dependencies/auditor/certs/rootCA.pem +0 -28
  43. python_auditor-0.9.4/local_dependencies/auditor/certs/server-cert.pem +0 -26
  44. python_auditor-0.9.4/local_dependencies/auditor/certs/server-key.pem +0 -28
  45. {python_auditor-0.9.4 → python_auditor-0.10.0}/.cargo/config.toml +0 -0
  46. {python_auditor-0.9.4 → python_auditor-0.10.0}/.readthedocs.yaml +0 -0
  47. {python_auditor-0.9.4 → python_auditor-0.10.0}/README.md +0 -0
  48. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/Makefile +0 -0
  49. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/api.rst +0 -0
  50. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/changelog.rst +0 -0
  51. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/conf.py +0 -0
  52. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/index.rst +0 -0
  53. {python_auditor-0.9.4 → python_auditor-0.10.0}/docs/make.bat +0 -0
  54. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.env +0 -0
  55. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  56. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  57. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  58. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  59. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  60. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  61. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  62. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  63. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  64. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  65. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  66. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  67. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/build.rs +0 -0
  68. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/base.yaml +0 -0
  69. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/dualstack.yaml +0 -0
  70. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  71. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  72. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  73. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  74. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
  75. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/.env +0 -0
  76. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
  77. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  78. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
  79. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
  80. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/constants.rs +0 -0
  81. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  82. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  83. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  84. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/record.rs +0 -0
  85. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  86. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  87. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  88. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/error.rs +0 -0
  89. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/macros.rs +0 -0
  90. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  91. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/get.rs +0 -0
  92. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  93. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  94. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/update.rs +0 -0
  95. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/src/telemetry.rs +0 -0
  96. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/add.rs +0 -0
  97. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/get.rs +0 -0
  98. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  99. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  100. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  101. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
  102. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/update.rs +0 -0
  103. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.env +0 -0
  104. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  105. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  106. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  107. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  108. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  109. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  110. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  111. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  112. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  113. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/README.md +0 -0
  114. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  115. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  116. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  117. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  118. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  119. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  120. {python_auditor-0.9.4 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/constants.rs +0 -0
  121. {python_auditor-0.9.4 → python_auditor-0.10.0}/pyproject.toml +0 -0
  122. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_add_update.py +0 -0
  123. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_add_update_blocking.py +0 -0
  124. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_add_update_queued.py +0 -0
  125. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_bulk_insert.py +0 -0
  126. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_bulk_insert_blocking.py +0 -0
  127. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_bulk_insert_queued.py +0 -0
  128. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_components.py +0 -0
  129. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_components_blocking.py +0 -0
  130. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_components_queued.py +0 -0
  131. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_eq.py +0 -0
  132. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_get_since.py +0 -0
  133. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_get_since_blocking.py +0 -0
  134. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_get_since_queued.py +0 -0
  135. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_get_single_record.py +0 -0
  136. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_get_single_record_blocking.py +0 -0
  137. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_get_single_record_queued.py +0 -0
  138. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_meta.py +0 -0
  139. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_meta_blocking.py +0 -0
  140. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/test_meta_queued.py +0 -0
  141. {python_auditor-0.9.4 → python_auditor-0.10.0}/scripts/tls_test/test_tls.py +0 -0
  142. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/blocking_client.rs +0 -0
  143. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/builder.rs +0 -0
  144. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/domain/component.rs +0 -0
  145. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/domain/meta.rs +0 -0
  146. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/domain/mod.rs +0 -0
  147. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/domain/record.rs +0 -0
  148. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/domain/score.rs +0 -0
  149. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/lib.rs +0 -0
  150. {python_auditor-0.9.4 → python_auditor-0.10.0}/src/queued_client.rs +0 -0
@@ -40,7 +40,7 @@ dependencies = [
40
40
  "flate2",
41
41
  "foldhash",
42
42
  "futures-core",
43
- "h2 0.3.26",
43
+ "h2 0.3.27",
44
44
  "http 0.2.12",
45
45
  "httparse",
46
46
  "httpdate",
@@ -50,7 +50,7 @@ dependencies = [
50
50
  "mime",
51
51
  "percent-encoding",
52
52
  "pin-project-lite",
53
- "rand 0.9.1",
53
+ "rand 0.9.2",
54
54
  "sha1",
55
55
  "smallvec",
56
56
  "tokio",
@@ -66,7 +66,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
66
66
  checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
67
67
  dependencies = [
68
68
  "quote",
69
- "syn",
69
+ "syn 2.0.104",
70
70
  ]
71
71
 
72
72
  [[package]]
@@ -106,7 +106,7 @@ dependencies = [
106
106
  "futures-core",
107
107
  "futures-util",
108
108
  "mio",
109
- "socket2",
109
+ "socket2 0.5.10",
110
110
  "tokio",
111
111
  "tracing",
112
112
  ]
@@ -188,7 +188,7 @@ dependencies = [
188
188
  "serde_json",
189
189
  "serde_urlencoded",
190
190
  "smallvec",
191
- "socket2",
191
+ "socket2 0.5.10",
192
192
  "time",
193
193
  "tracing",
194
194
  "url",
@@ -203,7 +203,7 @@ dependencies = [
203
203
  "actix-router",
204
204
  "proc-macro2",
205
205
  "quote",
206
- "syn",
206
+ "syn 2.0.104",
207
207
  ]
208
208
 
209
209
  [[package]]
@@ -233,9 +233,9 @@ dependencies = [
233
233
 
234
234
  [[package]]
235
235
  name = "adler2"
236
- version = "2.0.0"
236
+ version = "2.0.1"
237
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
238
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
238
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
239
239
 
240
240
  [[package]]
241
241
  name = "ahash"
@@ -244,6 +244,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
244
244
  checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
245
245
  dependencies = [
246
246
  "cfg-if",
247
+ "const-random",
247
248
  "getrandom 0.3.3",
248
249
  "once_cell",
249
250
  "version_check",
@@ -303,9 +304,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
303
304
 
304
305
  [[package]]
305
306
  name = "anstyle"
306
- version = "1.0.10"
307
+ version = "1.0.11"
307
308
  source = "registry+https://github.com/rust-lang/crates.io-index"
308
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
309
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
309
310
 
310
311
  [[package]]
311
312
  name = "anyhow"
@@ -319,6 +320,252 @@ version = "0.5.1"
319
320
  source = "registry+https://github.com/rust-lang/crates.io-index"
320
321
  checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
321
322
 
323
+ [[package]]
324
+ name = "arrow"
325
+ version = "56.0.0"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "fd798aea3553913a5986813e9c6ad31a2d2b04e931fe8ea4a37155eb541cebb5"
328
+ dependencies = [
329
+ "arrow-arith",
330
+ "arrow-array",
331
+ "arrow-buffer",
332
+ "arrow-cast",
333
+ "arrow-csv",
334
+ "arrow-data",
335
+ "arrow-ipc",
336
+ "arrow-json",
337
+ "arrow-ord",
338
+ "arrow-row",
339
+ "arrow-schema",
340
+ "arrow-select",
341
+ "arrow-string",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "arrow-arith"
346
+ version = "56.0.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "508dafb53e5804a238cab7fd97a59ddcbfab20cc4d9814b1ab5465b9fa147f2e"
349
+ dependencies = [
350
+ "arrow-array",
351
+ "arrow-buffer",
352
+ "arrow-data",
353
+ "arrow-schema",
354
+ "chrono",
355
+ "num",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "arrow-array"
360
+ version = "56.0.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "e2730bc045d62bb2e53ef8395b7d4242f5c8102f41ceac15e8395b9ac3d08461"
363
+ dependencies = [
364
+ "ahash",
365
+ "arrow-buffer",
366
+ "arrow-data",
367
+ "arrow-schema",
368
+ "chrono",
369
+ "half",
370
+ "hashbrown 0.15.4",
371
+ "num",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "arrow-buffer"
376
+ version = "56.0.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "54295b93beb702ee9a6f6fbced08ad7f4d76ec1c297952d4b83cf68755421d1d"
379
+ dependencies = [
380
+ "bytes",
381
+ "half",
382
+ "num",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "arrow-cast"
387
+ version = "56.0.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "67e8bcb7dc971d779a7280593a1bf0c2743533b8028909073e804552e85e75b5"
390
+ dependencies = [
391
+ "arrow-array",
392
+ "arrow-buffer",
393
+ "arrow-data",
394
+ "arrow-schema",
395
+ "arrow-select",
396
+ "atoi",
397
+ "base64 0.22.1",
398
+ "chrono",
399
+ "half",
400
+ "lexical-core",
401
+ "num",
402
+ "ryu",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "arrow-csv"
407
+ version = "56.0.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "673fd2b5fb57a1754fdbfac425efd7cf54c947ac9950c1cce86b14e248f1c458"
410
+ dependencies = [
411
+ "arrow-array",
412
+ "arrow-cast",
413
+ "arrow-schema",
414
+ "chrono",
415
+ "csv",
416
+ "csv-core",
417
+ "regex",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "arrow-data"
422
+ version = "56.0.0"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "97c22fe3da840039c69e9f61f81e78092ea36d57037b4900151f063615a2f6b4"
425
+ dependencies = [
426
+ "arrow-buffer",
427
+ "arrow-schema",
428
+ "half",
429
+ "num",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "arrow-ipc"
434
+ version = "56.0.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "778de14c5a69aedb27359e3dd06dd5f9c481d5f6ee9fbae912dba332fd64636b"
437
+ dependencies = [
438
+ "arrow-array",
439
+ "arrow-buffer",
440
+ "arrow-data",
441
+ "arrow-schema",
442
+ "flatbuffers",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "arrow-json"
447
+ version = "56.0.0"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "3860db334fe7b19fcf81f6b56f8d9d95053f3839ffe443d56b5436f7a29a1794"
450
+ dependencies = [
451
+ "arrow-array",
452
+ "arrow-buffer",
453
+ "arrow-cast",
454
+ "arrow-data",
455
+ "arrow-schema",
456
+ "chrono",
457
+ "half",
458
+ "indexmap 2.10.0",
459
+ "lexical-core",
460
+ "memchr",
461
+ "num",
462
+ "serde",
463
+ "serde_json",
464
+ "simdutf8",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "arrow-ord"
469
+ version = "56.0.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "425fa0b42a39d3ff55160832e7c25553e7f012c3f187def3d70313e7a29ba5d9"
472
+ dependencies = [
473
+ "arrow-array",
474
+ "arrow-buffer",
475
+ "arrow-data",
476
+ "arrow-schema",
477
+ "arrow-select",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "arrow-row"
482
+ version = "56.0.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "df9c9423c9e71abd1b08a7f788fcd203ba2698ac8e72a1f236f1faa1a06a7414"
485
+ dependencies = [
486
+ "arrow-array",
487
+ "arrow-buffer",
488
+ "arrow-data",
489
+ "arrow-schema",
490
+ "half",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "arrow-schema"
495
+ version = "56.0.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "85fa1babc4a45fdc64a92175ef51ff00eba5ebbc0007962fecf8022ac1c6ce28"
498
+
499
+ [[package]]
500
+ name = "arrow-select"
501
+ version = "56.0.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "d8854d15f1cf5005b4b358abeb60adea17091ff5bdd094dca5d3f73787d81170"
504
+ dependencies = [
505
+ "ahash",
506
+ "arrow-array",
507
+ "arrow-buffer",
508
+ "arrow-data",
509
+ "arrow-schema",
510
+ "num",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "arrow-string"
515
+ version = "56.0.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "2c477e8b89e1213d5927a2a84a72c384a9bf4dd0dbf15f9fd66d821aafd9e95e"
518
+ dependencies = [
519
+ "arrow-array",
520
+ "arrow-buffer",
521
+ "arrow-data",
522
+ "arrow-schema",
523
+ "arrow-select",
524
+ "memchr",
525
+ "num",
526
+ "regex",
527
+ "regex-syntax 0.8.5",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "asn1-rs"
532
+ version = "0.5.2"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"
535
+ dependencies = [
536
+ "asn1-rs-derive",
537
+ "asn1-rs-impl",
538
+ "displaydoc",
539
+ "nom",
540
+ "num-traits",
541
+ "rusticata-macros",
542
+ "thiserror 1.0.69",
543
+ "time",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "asn1-rs-derive"
548
+ version = "0.4.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
551
+ dependencies = [
552
+ "proc-macro2",
553
+ "quote",
554
+ "syn 1.0.109",
555
+ "synstructure 0.12.6",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "asn1-rs-impl"
560
+ version = "0.1.0"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
563
+ dependencies = [
564
+ "proc-macro2",
565
+ "quote",
566
+ "syn 1.0.109",
567
+ ]
568
+
322
569
  [[package]]
323
570
  name = "assert-json-diff"
324
571
  version = "2.0.2"
@@ -348,7 +595,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
348
595
  dependencies = [
349
596
  "proc-macro2",
350
597
  "quote",
351
- "syn",
598
+ "syn 2.0.104",
352
599
  ]
353
600
 
354
601
  [[package]]
@@ -359,7 +606,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
359
606
  dependencies = [
360
607
  "proc-macro2",
361
608
  "quote",
362
- "syn",
609
+ "syn 2.0.104",
363
610
  ]
364
611
 
365
612
  [[package]]
@@ -379,16 +626,20 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
379
626
 
380
627
  [[package]]
381
628
  name = "auditor"
382
- version = "0.9.4"
629
+ version = "0.10.0"
383
630
  dependencies = [
384
631
  "actix-tls",
385
632
  "actix-web",
386
633
  "actix-web-opentelemetry",
387
634
  "anyhow",
635
+ "arrow",
636
+ "arrow-array",
388
637
  "async-stream",
638
+ "casbin",
389
639
  "chrono",
390
640
  "claims",
391
641
  "config",
642
+ "csv",
392
643
  "fake",
393
644
  "futures",
394
645
  "futures-util",
@@ -398,6 +649,7 @@ dependencies = [
398
649
  "opentelemetry 0.23.0",
399
650
  "opentelemetry-prometheus 0.16.0",
400
651
  "opentelemetry_sdk 0.23.0",
652
+ "parquet",
401
653
  "prometheus",
402
654
  "quickcheck",
403
655
  "quickcheck_macros",
@@ -405,7 +657,7 @@ dependencies = [
405
657
  "regex",
406
658
  "reqwest",
407
659
  "reqwest-streams",
408
- "rustls 0.23.27",
660
+ "rustls 0.23.31",
409
661
  "rustls-pemfile 2.2.0",
410
662
  "secrecy",
411
663
  "serde",
@@ -416,6 +668,7 @@ dependencies = [
416
668
  "sqlx",
417
669
  "thiserror 2.0.12",
418
670
  "tokio",
671
+ "tokio-cron-scheduler",
419
672
  "tracing",
420
673
  "tracing-actix-web",
421
674
  "tracing-bunyan-formatter",
@@ -425,11 +678,12 @@ dependencies = [
425
678
  "urlencoding",
426
679
  "uuid",
427
680
  "wiremock",
681
+ "x509-parser",
428
682
  ]
429
683
 
430
684
  [[package]]
431
685
  name = "auditor-client"
432
- version = "0.9.4"
686
+ version = "0.10.0"
433
687
  dependencies = [
434
688
  "anyhow",
435
689
  "auditor",
@@ -447,7 +701,7 @@ dependencies = [
447
701
  "rand_distr",
448
702
  "reqwest",
449
703
  "reqwest-streams",
450
- "rustls 0.23.27",
704
+ "rustls 0.23.31",
451
705
  "serde",
452
706
  "serde-aux",
453
707
  "serde_json",
@@ -464,7 +718,7 @@ dependencies = [
464
718
 
465
719
  [[package]]
466
720
  name = "auditor-kubernetes-collector"
467
- version = "0.9.4"
721
+ version = "0.10.0"
468
722
  dependencies = [
469
723
  "anyhow",
470
724
  "auditor",
@@ -488,7 +742,7 @@ dependencies = [
488
742
 
489
743
  [[package]]
490
744
  name = "auditor-priority-plugin"
491
- version = "0.9.4"
745
+ version = "0.10.0"
492
746
  dependencies = [
493
747
  "actix-web",
494
748
  "actix-web-opentelemetry",
@@ -515,7 +769,7 @@ dependencies = [
515
769
 
516
770
  [[package]]
517
771
  name = "auditor-slurm-collector"
518
- version = "0.9.4"
772
+ version = "0.10.0"
519
773
  dependencies = [
520
774
  "anyhow",
521
775
  "auditor",
@@ -541,7 +795,7 @@ dependencies = [
541
795
 
542
796
  [[package]]
543
797
  name = "auditor-slurm-epilog-collector"
544
- version = "0.9.4"
798
+ version = "0.10.0"
545
799
  dependencies = [
546
800
  "anyhow",
547
801
  "auditor",
@@ -560,15 +814,15 @@ dependencies = [
560
814
 
561
815
  [[package]]
562
816
  name = "autocfg"
563
- version = "1.4.0"
817
+ version = "1.5.0"
564
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
565
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
819
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
566
820
 
567
821
  [[package]]
568
822
  name = "aws-lc-rs"
569
- version = "1.13.1"
823
+ version = "1.13.3"
570
824
  source = "registry+https://github.com/rust-lang/crates.io-index"
571
- checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
825
+ checksum = "5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17ba"
572
826
  dependencies = [
573
827
  "aws-lc-sys",
574
828
  "zeroize",
@@ -576,9 +830,9 @@ dependencies = [
576
830
 
577
831
  [[package]]
578
832
  name = "aws-lc-sys"
579
- version = "0.29.0"
833
+ version = "0.30.0"
580
834
  source = "registry+https://github.com/rust-lang/crates.io-index"
581
- checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
835
+ checksum = "dbfd150b5dbdb988bcc8fb1fe787eb6b7ee6180ca24da683b61ea5405f3d43ff"
582
836
  dependencies = [
583
837
  "bindgen",
584
838
  "cc",
@@ -616,9 +870,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
616
870
 
617
871
  [[package]]
618
872
  name = "base64ct"
619
- version = "1.7.3"
873
+ version = "1.8.0"
620
874
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
- checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
875
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
622
876
 
623
877
  [[package]]
624
878
  name = "bincode"
@@ -648,7 +902,7 @@ dependencies = [
648
902
  "regex",
649
903
  "rustc-hash 1.1.0",
650
904
  "shlex",
651
- "syn",
905
+ "syn 2.0.104",
652
906
  "which",
653
907
  ]
654
908
 
@@ -693,9 +947,9 @@ dependencies = [
693
947
 
694
948
  [[package]]
695
949
  name = "bumpalo"
696
- version = "3.17.0"
950
+ version = "3.19.0"
697
951
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
952
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
699
953
 
700
954
  [[package]]
701
955
  name = "byteorder"
@@ -724,6 +978,28 @@ version = "1.5.0"
724
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
725
979
  checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad"
726
980
 
981
+ [[package]]
982
+ name = "casbin"
983
+ version = "2.10.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "a100183440478aa2b64e6f432295fa90c052d53011c9799b655b7283b6e6707c"
986
+ dependencies = [
987
+ "async-trait",
988
+ "fixedbitset",
989
+ "getrandom 0.2.16",
990
+ "hashlink 0.9.1",
991
+ "once_cell",
992
+ "parking_lot",
993
+ "petgraph",
994
+ "regex",
995
+ "rhai",
996
+ "serde",
997
+ "serde_json",
998
+ "thiserror 1.0.69",
999
+ "tokio",
1000
+ "wasm-bindgen-test",
1001
+ ]
1002
+
727
1003
  [[package]]
728
1004
  name = "cast"
729
1005
  version = "0.3.0"
@@ -732,9 +1008,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
732
1008
 
733
1009
  [[package]]
734
1010
  name = "cc"
735
- version = "1.2.23"
1011
+ version = "1.2.31"
736
1012
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
- checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
1013
+ checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2"
738
1014
  dependencies = [
739
1015
  "jobserver",
740
1016
  "libc",
@@ -752,9 +1028,9 @@ dependencies = [
752
1028
 
753
1029
  [[package]]
754
1030
  name = "cfg-if"
755
- version = "1.0.0"
1031
+ version = "1.0.1"
756
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
757
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
1033
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
758
1034
 
759
1035
  [[package]]
760
1036
  name = "cfg_aliases"
@@ -770,8 +1046,10 @@ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
770
1046
  dependencies = [
771
1047
  "android-tzdata",
772
1048
  "iana-time-zone",
1049
+ "js-sys",
773
1050
  "num-traits",
774
1051
  "serde",
1052
+ "wasm-bindgen",
775
1053
  "windows-link",
776
1054
  ]
777
1055
 
@@ -824,18 +1102,18 @@ dependencies = [
824
1102
 
825
1103
  [[package]]
826
1104
  name = "clap"
827
- version = "4.5.38"
1105
+ version = "4.5.43"
828
1106
  source = "registry+https://github.com/rust-lang/crates.io-index"
829
- checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
1107
+ checksum = "50fd97c9dc2399518aa331917ac6f274280ec5eb34e555dd291899745c48ec6f"
830
1108
  dependencies = [
831
1109
  "clap_builder",
832
1110
  ]
833
1111
 
834
1112
  [[package]]
835
1113
  name = "clap_builder"
836
- version = "4.5.38"
1114
+ version = "4.5.43"
837
1115
  source = "registry+https://github.com/rust-lang/crates.io-index"
838
- checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
1116
+ checksum = "c35b5830294e1fa0462034af85cc95225a4cb07092c088c55bda3147cfcd8f65"
839
1117
  dependencies = [
840
1118
  "anstyle",
841
1119
  "clap_lex",
@@ -843,9 +1121,9 @@ dependencies = [
843
1121
 
844
1122
  [[package]]
845
1123
  name = "clap_lex"
846
- version = "0.7.4"
1124
+ version = "0.7.5"
847
1125
  source = "registry+https://github.com/rust-lang/crates.io-index"
848
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
1126
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
849
1127
 
850
1128
  [[package]]
851
1129
  name = "cmake"
@@ -858,9 +1136,9 @@ dependencies = [
858
1136
 
859
1137
  [[package]]
860
1138
  name = "color-eyre"
861
- version = "0.6.4"
1139
+ version = "0.6.5"
862
1140
  source = "registry+https://github.com/rust-lang/crates.io-index"
863
- checksum = "e6e1761c0e16f8883bbbb8ce5990867f4f06bf11a0253da6495a04ce4b6ef0ec"
1141
+ checksum = "e5920befb47832a6d61ee3a3a846565cfa39b331331e68a3b1d1116630f2f26d"
864
1142
  dependencies = [
865
1143
  "backtrace",
866
1144
  "color-spantrace",
@@ -873,9 +1151,9 @@ dependencies = [
873
1151
 
874
1152
  [[package]]
875
1153
  name = "color-spantrace"
876
- version = "0.2.2"
1154
+ version = "0.3.0"
877
1155
  source = "registry+https://github.com/rust-lang/crates.io-index"
878
- checksum = "2ddd8d5bfda1e11a501d0a7303f3bfed9aa632ebdb859be40d0fd70478ed70d5"
1156
+ checksum = "b8b88ea9df13354b55bc7234ebcce36e6ef896aca2e42a15de9e10edce01b427"
879
1157
  dependencies = [
880
1158
  "once_cell",
881
1159
  "owo-colors",
@@ -894,9 +1172,9 @@ dependencies = [
894
1172
 
895
1173
  [[package]]
896
1174
  name = "config"
897
- version = "0.15.11"
1175
+ version = "0.15.13"
898
1176
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "595aae20e65c3be792d05818e8c63025294ac3cb7e200f11459063a352a6ef80"
1177
+ checksum = "5b1eb4fb07bc7f012422df02766c7bd5971effb894f573865642f06fa3265440"
900
1178
  dependencies = [
901
1179
  "async-trait",
902
1180
  "convert_case",
@@ -999,9 +1277,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
999
1277
 
1000
1278
  [[package]]
1001
1279
  name = "crc32fast"
1002
- version = "1.4.2"
1280
+ version = "1.5.0"
1003
1281
  source = "registry+https://github.com/rust-lang/crates.io-index"
1004
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
1282
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
1005
1283
  dependencies = [
1006
1284
  "cfg-if",
1007
1285
  ]
@@ -1054,6 +1332,15 @@ dependencies = [
1054
1332
  "itertools 0.10.5",
1055
1333
  ]
1056
1334
 
1335
+ [[package]]
1336
+ name = "croner"
1337
+ version = "2.2.0"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "c344b0690c1ad1c7176fe18eb173e0c927008fdaaa256e40dfd43ddd149c0843"
1340
+ dependencies = [
1341
+ "chrono",
1342
+ ]
1343
+
1057
1344
  [[package]]
1058
1345
  name = "crossbeam-deque"
1059
1346
  version = "0.8.6"
@@ -1090,9 +1377,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1090
1377
 
1091
1378
  [[package]]
1092
1379
  name = "crunchy"
1093
- version = "0.2.3"
1380
+ version = "0.2.4"
1094
1381
  source = "registry+https://github.com/rust-lang/crates.io-index"
1095
- checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
1382
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1096
1383
 
1097
1384
  [[package]]
1098
1385
  name = "crypto-common"
@@ -1104,6 +1391,27 @@ dependencies = [
1104
1391
  "typenum",
1105
1392
  ]
1106
1393
 
1394
+ [[package]]
1395
+ name = "csv"
1396
+ version = "1.3.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
1399
+ dependencies = [
1400
+ "csv-core",
1401
+ "itoa",
1402
+ "ryu",
1403
+ "serde",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "csv-core"
1408
+ version = "0.1.12"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
1411
+ dependencies = [
1412
+ "memchr",
1413
+ ]
1414
+
1107
1415
  [[package]]
1108
1416
  name = "darling"
1109
1417
  version = "0.20.11"
@@ -1125,7 +1433,7 @@ dependencies = [
1125
1433
  "proc-macro2",
1126
1434
  "quote",
1127
1435
  "strsim",
1128
- "syn",
1436
+ "syn 2.0.104",
1129
1437
  ]
1130
1438
 
1131
1439
  [[package]]
@@ -1136,9 +1444,15 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1136
1444
  dependencies = [
1137
1445
  "darling_core",
1138
1446
  "quote",
1139
- "syn",
1447
+ "syn 2.0.104",
1140
1448
  ]
1141
1449
 
1450
+ [[package]]
1451
+ name = "data-encoding"
1452
+ version = "2.9.0"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
1455
+
1142
1456
  [[package]]
1143
1457
  name = "deadpool"
1144
1458
  version = "0.10.0"
@@ -1168,6 +1482,20 @@ dependencies = [
1168
1482
  "zeroize",
1169
1483
  ]
1170
1484
 
1485
+ [[package]]
1486
+ name = "der-parser"
1487
+ version = "8.2.0"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"
1490
+ dependencies = [
1491
+ "asn1-rs",
1492
+ "displaydoc",
1493
+ "nom",
1494
+ "num-bigint",
1495
+ "num-traits",
1496
+ "rusticata-macros",
1497
+ ]
1498
+
1171
1499
  [[package]]
1172
1500
  name = "deranged"
1173
1501
  version = "0.4.0"
@@ -1195,7 +1523,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
1195
1523
  dependencies = [
1196
1524
  "proc-macro2",
1197
1525
  "quote",
1198
- "syn",
1526
+ "syn 2.0.104",
1199
1527
  "unicode-xid",
1200
1528
  ]
1201
1529
 
@@ -1225,7 +1553,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1225
1553
  dependencies = [
1226
1554
  "proc-macro2",
1227
1555
  "quote",
1228
- "syn",
1556
+ "syn 2.0.104",
1229
1557
  ]
1230
1558
 
1231
1559
  [[package]]
@@ -1252,7 +1580,7 @@ dependencies = [
1252
1580
  "darling",
1253
1581
  "proc-macro2",
1254
1582
  "quote",
1255
- "syn",
1583
+ "syn 2.0.104",
1256
1584
  ]
1257
1585
 
1258
1586
  [[package]]
@@ -1261,6 +1589,12 @@ version = "1.0.5"
1261
1589
  source = "registry+https://github.com/rust-lang/crates.io-index"
1262
1590
  checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1263
1591
 
1592
+ [[package]]
1593
+ name = "dyn-clone"
1594
+ version = "1.0.20"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1597
+
1264
1598
  [[package]]
1265
1599
  name = "either"
1266
1600
  version = "1.15.0"
@@ -1288,7 +1622,7 @@ dependencies = [
1288
1622
  "heck",
1289
1623
  "proc-macro2",
1290
1624
  "quote",
1291
- "syn",
1625
+ "syn 2.0.104",
1292
1626
  ]
1293
1627
 
1294
1628
  [[package]]
@@ -1309,12 +1643,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1309
1643
 
1310
1644
  [[package]]
1311
1645
  name = "errno"
1312
- version = "0.3.12"
1646
+ version = "0.3.13"
1313
1647
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
- checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
1648
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
1315
1649
  dependencies = [
1316
1650
  "libc",
1317
- "windows-sys 0.59.0",
1651
+ "windows-sys 0.60.2",
1318
1652
  ]
1319
1653
 
1320
1654
  [[package]]
@@ -1330,9 +1664,9 @@ dependencies = [
1330
1664
 
1331
1665
  [[package]]
1332
1666
  name = "event-listener"
1333
- version = "5.4.0"
1667
+ version = "5.4.1"
1334
1668
  source = "registry+https://github.com/rust-lang/crates.io-index"
1335
- checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
1669
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
1336
1670
  dependencies = [
1337
1671
  "concurrent-queue",
1338
1672
  "parking",
@@ -1361,13 +1695,30 @@ dependencies = [
1361
1695
  "rand 0.8.5",
1362
1696
  ]
1363
1697
 
1698
+ [[package]]
1699
+ name = "fixedbitset"
1700
+ version = "0.4.2"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1703
+
1704
+ [[package]]
1705
+ name = "flatbuffers"
1706
+ version = "25.2.10"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "1045398c1bfd89168b5fd3f1fc11f6e70b34f6f66300c87d44d3de849463abf1"
1709
+ dependencies = [
1710
+ "bitflags",
1711
+ "rustc_version",
1712
+ ]
1713
+
1364
1714
  [[package]]
1365
1715
  name = "flate2"
1366
- version = "1.1.1"
1716
+ version = "1.1.2"
1367
1717
  source = "registry+https://github.com/rust-lang/crates.io-index"
1368
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
1718
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
1369
1719
  dependencies = [
1370
1720
  "crc32fast",
1721
+ "libz-rs-sys",
1371
1722
  "miniz_oxide",
1372
1723
  ]
1373
1724
 
@@ -1379,7 +1730,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1379
1730
  dependencies = [
1380
1731
  "futures-core",
1381
1732
  "futures-sink",
1382
- "spin",
1733
+ "spin 0.9.8",
1383
1734
  ]
1384
1735
 
1385
1736
  [[package]]
@@ -1476,7 +1827,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1476
1827
  dependencies = [
1477
1828
  "proc-macro2",
1478
1829
  "quote",
1479
- "syn",
1830
+ "syn 2.0.104",
1480
1831
  ]
1481
1832
 
1482
1833
  [[package]]
@@ -1538,7 +1889,7 @@ dependencies = [
1538
1889
  "cfg-if",
1539
1890
  "js-sys",
1540
1891
  "libc",
1541
- "wasi 0.11.0+wasi-snapshot-preview1",
1892
+ "wasi 0.11.1+wasi-snapshot-preview1",
1542
1893
  "wasm-bindgen",
1543
1894
  ]
1544
1895
 
@@ -1570,9 +1921,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1570
1921
 
1571
1922
  [[package]]
1572
1923
  name = "h2"
1573
- version = "0.3.26"
1924
+ version = "0.3.27"
1574
1925
  source = "registry+https://github.com/rust-lang/crates.io-index"
1575
- checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1926
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1576
1927
  dependencies = [
1577
1928
  "bytes",
1578
1929
  "fnv",
@@ -1580,7 +1931,7 @@ dependencies = [
1580
1931
  "futures-sink",
1581
1932
  "futures-util",
1582
1933
  "http 0.2.12",
1583
- "indexmap 2.9.0",
1934
+ "indexmap 2.10.0",
1584
1935
  "slab",
1585
1936
  "tokio",
1586
1937
  "tokio-util",
@@ -1589,9 +1940,9 @@ dependencies = [
1589
1940
 
1590
1941
  [[package]]
1591
1942
  name = "h2"
1592
- version = "0.4.10"
1943
+ version = "0.4.12"
1593
1944
  source = "registry+https://github.com/rust-lang/crates.io-index"
1594
- checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
1945
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1595
1946
  dependencies = [
1596
1947
  "atomic-waker",
1597
1948
  "bytes",
@@ -1599,7 +1950,7 @@ dependencies = [
1599
1950
  "futures-core",
1600
1951
  "futures-sink",
1601
1952
  "http 1.3.1",
1602
- "indexmap 2.9.0",
1953
+ "indexmap 2.10.0",
1603
1954
  "slab",
1604
1955
  "tokio",
1605
1956
  "tokio-util",
@@ -1614,6 +1965,7 @@ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
1614
1965
  dependencies = [
1615
1966
  "cfg-if",
1616
1967
  "crunchy",
1968
+ "num-traits",
1617
1969
  ]
1618
1970
 
1619
1971
  [[package]]
@@ -1627,25 +1979,37 @@ name = "hashbrown"
1627
1979
  version = "0.14.5"
1628
1980
  source = "registry+https://github.com/rust-lang/crates.io-index"
1629
1981
  checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1982
+ dependencies = [
1983
+ "ahash",
1984
+ ]
1630
1985
 
1631
1986
  [[package]]
1632
1987
  name = "hashbrown"
1633
- version = "0.15.3"
1988
+ version = "0.15.4"
1634
1989
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
1990
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1636
1991
  dependencies = [
1637
1992
  "allocator-api2",
1638
1993
  "equivalent",
1639
1994
  "foldhash",
1640
1995
  ]
1641
1996
 
1997
+ [[package]]
1998
+ name = "hashlink"
1999
+ version = "0.9.1"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
2002
+ dependencies = [
2003
+ "hashbrown 0.14.5",
2004
+ ]
2005
+
1642
2006
  [[package]]
1643
2007
  name = "hashlink"
1644
2008
  version = "0.10.0"
1645
2009
  source = "registry+https://github.com/rust-lang/crates.io-index"
1646
2010
  checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1647
2011
  dependencies = [
1648
- "hashbrown 0.15.3",
2012
+ "hashbrown 0.15.4",
1649
2013
  ]
1650
2014
 
1651
2015
  [[package]]
@@ -1656,15 +2020,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1656
2020
 
1657
2021
  [[package]]
1658
2022
  name = "hermit-abi"
1659
- version = "0.3.9"
1660
- source = "registry+https://github.com/rust-lang/crates.io-index"
1661
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1662
-
1663
- [[package]]
1664
- name = "hermit-abi"
1665
- version = "0.5.1"
2023
+ version = "0.5.2"
1666
2024
  source = "registry+https://github.com/rust-lang/crates.io-index"
1667
- checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08"
2025
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1668
2026
 
1669
2027
  [[package]]
1670
2028
  name = "hex"
@@ -1789,7 +2147,7 @@ dependencies = [
1789
2147
  "httpdate",
1790
2148
  "itoa",
1791
2149
  "pin-project-lite",
1792
- "socket2",
2150
+ "socket2 0.5.10",
1793
2151
  "tokio",
1794
2152
  "tower-service",
1795
2153
  "tracing",
@@ -1805,7 +2163,7 @@ dependencies = [
1805
2163
  "bytes",
1806
2164
  "futures-channel",
1807
2165
  "futures-util",
1808
- "h2 0.4.10",
2166
+ "h2 0.4.12",
1809
2167
  "http 1.3.1",
1810
2168
  "http-body 1.0.1",
1811
2169
  "httparse",
@@ -1835,20 +2193,19 @@ dependencies = [
1835
2193
 
1836
2194
  [[package]]
1837
2195
  name = "hyper-rustls"
1838
- version = "0.27.5"
2196
+ version = "0.27.7"
1839
2197
  source = "registry+https://github.com/rust-lang/crates.io-index"
1840
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
2198
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1841
2199
  dependencies = [
1842
- "futures-util",
1843
2200
  "http 1.3.1",
1844
2201
  "hyper 1.6.0",
1845
2202
  "hyper-util",
1846
- "rustls 0.23.27",
2203
+ "rustls 0.23.31",
1847
2204
  "rustls-pki-types",
1848
2205
  "tokio",
1849
2206
  "tokio-rustls 0.26.2",
1850
2207
  "tower-service",
1851
- "webpki-roots 0.26.11",
2208
+ "webpki-roots 1.0.2",
1852
2209
  ]
1853
2210
 
1854
2211
  [[package]]
@@ -1865,19 +2222,23 @@ dependencies = [
1865
2222
 
1866
2223
  [[package]]
1867
2224
  name = "hyper-util"
1868
- version = "0.1.12"
2225
+ version = "0.1.16"
1869
2226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1870
- checksum = "cf9f1e950e0d9d1d3c47184416723cf29c0d1f93bd8cccf37e4beb6b44f31710"
2227
+ checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1871
2228
  dependencies = [
2229
+ "base64 0.22.1",
1872
2230
  "bytes",
1873
2231
  "futures-channel",
2232
+ "futures-core",
1874
2233
  "futures-util",
1875
2234
  "http 1.3.1",
1876
2235
  "http-body 1.0.1",
1877
2236
  "hyper 1.6.0",
2237
+ "ipnet",
1878
2238
  "libc",
2239
+ "percent-encoding",
1879
2240
  "pin-project-lite",
1880
- "socket2",
2241
+ "socket2 0.6.0",
1881
2242
  "tokio",
1882
2243
  "tower-service",
1883
2244
  "tracing",
@@ -2028,9 +2389,9 @@ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
2028
2389
 
2029
2390
  [[package]]
2030
2391
  name = "indenter"
2031
- version = "0.3.3"
2392
+ version = "0.3.4"
2032
2393
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
- checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2394
+ checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
2034
2395
 
2035
2396
  [[package]]
2036
2397
  name = "indexmap"
@@ -2045,12 +2406,12 @@ dependencies = [
2045
2406
 
2046
2407
  [[package]]
2047
2408
  name = "indexmap"
2048
- version = "2.9.0"
2409
+ version = "2.10.0"
2049
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
2411
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
2051
2412
  dependencies = [
2052
2413
  "equivalent",
2053
- "hashbrown 0.15.3",
2414
+ "hashbrown 0.15.4",
2054
2415
  "serde",
2055
2416
  ]
2056
2417
 
@@ -2060,19 +2421,55 @@ version = "2.0.6"
2060
2421
  source = "registry+https://github.com/rust-lang/crates.io-index"
2061
2422
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
2062
2423
 
2424
+ [[package]]
2425
+ name = "instant"
2426
+ version = "0.1.13"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
2429
+ dependencies = [
2430
+ "cfg-if",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "integer-encoding"
2435
+ version = "3.0.4"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2438
+
2439
+ [[package]]
2440
+ name = "io-uring"
2441
+ version = "0.7.9"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
2444
+ dependencies = [
2445
+ "bitflags",
2446
+ "cfg-if",
2447
+ "libc",
2448
+ ]
2449
+
2063
2450
  [[package]]
2064
2451
  name = "ipnet"
2065
2452
  version = "2.11.0"
2066
2453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2067
2454
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2068
2455
 
2456
+ [[package]]
2457
+ name = "iri-string"
2458
+ version = "0.7.8"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
2461
+ dependencies = [
2462
+ "memchr",
2463
+ "serde",
2464
+ ]
2465
+
2069
2466
  [[package]]
2070
2467
  name = "is-terminal"
2071
2468
  version = "0.4.16"
2072
2469
  source = "registry+https://github.com/rust-lang/crates.io-index"
2073
2470
  checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
2074
2471
  dependencies = [
2075
- "hermit-abi 0.5.1",
2472
+ "hermit-abi",
2076
2473
  "libc",
2077
2474
  "windows-sys 0.59.0",
2078
2475
  ]
@@ -2210,7 +2607,7 @@ dependencies = [
2210
2607
  "tokio",
2211
2608
  "tokio-util",
2212
2609
  "tower 0.4.13",
2213
- "tower-http",
2610
+ "tower-http 0.4.4",
2214
2611
  "tracing",
2215
2612
  ]
2216
2613
 
@@ -2242,7 +2639,7 @@ version = "1.5.0"
2242
2639
  source = "registry+https://github.com/rust-lang/crates.io-index"
2243
2640
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2244
2641
  dependencies = [
2245
- "spin",
2642
+ "spin 0.9.8",
2246
2643
  ]
2247
2644
 
2248
2645
  [[package]]
@@ -2251,20 +2648,84 @@ version = "1.3.0"
2251
2648
  source = "registry+https://github.com/rust-lang/crates.io-index"
2252
2649
  checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2253
2650
 
2651
+ [[package]]
2652
+ name = "lexical-core"
2653
+ version = "1.0.5"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "b765c31809609075565a70b4b71402281283aeda7ecaf4818ac14a7b2ade8958"
2656
+ dependencies = [
2657
+ "lexical-parse-float",
2658
+ "lexical-parse-integer",
2659
+ "lexical-util",
2660
+ "lexical-write-float",
2661
+ "lexical-write-integer",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "lexical-parse-float"
2666
+ version = "1.0.5"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "de6f9cb01fb0b08060209a057c048fcbab8717b4c1ecd2eac66ebfe39a65b0f2"
2669
+ dependencies = [
2670
+ "lexical-parse-integer",
2671
+ "lexical-util",
2672
+ "static_assertions",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "lexical-parse-integer"
2677
+ version = "1.0.5"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "72207aae22fc0a121ba7b6d479e42cbfea549af1479c3f3a4f12c70dd66df12e"
2680
+ dependencies = [
2681
+ "lexical-util",
2682
+ "static_assertions",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "lexical-util"
2687
+ version = "1.0.6"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "5a82e24bf537fd24c177ffbbdc6ebcc8d54732c35b50a3f28cc3f4e4c949a0b3"
2690
+ dependencies = [
2691
+ "static_assertions",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "lexical-write-float"
2696
+ version = "1.0.5"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "c5afc668a27f460fb45a81a757b6bf2f43c2d7e30cb5a2dcd3abf294c78d62bd"
2699
+ dependencies = [
2700
+ "lexical-util",
2701
+ "lexical-write-integer",
2702
+ "static_assertions",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "lexical-write-integer"
2707
+ version = "1.0.5"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "629ddff1a914a836fb245616a7888b62903aae58fa771e1d83943035efa0f978"
2710
+ dependencies = [
2711
+ "lexical-util",
2712
+ "static_assertions",
2713
+ ]
2714
+
2254
2715
  [[package]]
2255
2716
  name = "libc"
2256
- version = "0.2.172"
2717
+ version = "0.2.174"
2257
2718
  source = "registry+https://github.com/rust-lang/crates.io-index"
2258
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2719
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2259
2720
 
2260
2721
  [[package]]
2261
2722
  name = "libloading"
2262
- version = "0.8.7"
2723
+ version = "0.8.8"
2263
2724
  source = "registry+https://github.com/rust-lang/crates.io-index"
2264
- checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
2725
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
2265
2726
  dependencies = [
2266
2727
  "cfg-if",
2267
- "windows-targets 0.53.0",
2728
+ "windows-targets 0.53.3",
2268
2729
  ]
2269
2730
 
2270
2731
  [[package]]
@@ -2284,6 +2745,15 @@ dependencies = [
2284
2745
  "vcpkg",
2285
2746
  ]
2286
2747
 
2748
+ [[package]]
2749
+ name = "libz-rs-sys"
2750
+ version = "0.5.1"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221"
2753
+ dependencies = [
2754
+ "zlib-rs",
2755
+ ]
2756
+
2287
2757
  [[package]]
2288
2758
  name = "linux-raw-sys"
2289
2759
  version = "0.4.15"
@@ -2315,9 +2785,9 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2315
2785
 
2316
2786
  [[package]]
2317
2787
  name = "lock_api"
2318
- version = "0.4.12"
2788
+ version = "0.4.13"
2319
2789
  source = "registry+https://github.com/rust-lang/crates.io-index"
2320
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2790
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2321
2791
  dependencies = [
2322
2792
  "autocfg",
2323
2793
  "scopeguard",
@@ -2335,6 +2805,15 @@ version = "0.1.2"
2335
2805
  source = "registry+https://github.com/rust-lang/crates.io-index"
2336
2806
  checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2337
2807
 
2808
+ [[package]]
2809
+ name = "lz4_flex"
2810
+ version = "0.11.5"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
2813
+ dependencies = [
2814
+ "twox-hash",
2815
+ ]
2816
+
2338
2817
  [[package]]
2339
2818
  name = "matchers"
2340
2819
  version = "0.1.0"
@@ -2356,9 +2835,9 @@ dependencies = [
2356
2835
 
2357
2836
  [[package]]
2358
2837
  name = "memchr"
2359
- version = "2.7.4"
2838
+ version = "2.7.5"
2360
2839
  source = "registry+https://github.com/rust-lang/crates.io-index"
2361
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2840
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2362
2841
 
2363
2842
  [[package]]
2364
2843
  name = "memoffset"
@@ -2375,6 +2854,16 @@ version = "0.3.17"
2375
2854
  source = "registry+https://github.com/rust-lang/crates.io-index"
2376
2855
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2377
2856
 
2857
+ [[package]]
2858
+ name = "minicov"
2859
+ version = "0.3.7"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
2862
+ dependencies = [
2863
+ "cc",
2864
+ "walkdir",
2865
+ ]
2866
+
2378
2867
  [[package]]
2379
2868
  name = "minimal-lexical"
2380
2869
  version = "0.2.1"
@@ -2383,23 +2872,23 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2383
2872
 
2384
2873
  [[package]]
2385
2874
  name = "miniz_oxide"
2386
- version = "0.8.8"
2875
+ version = "0.8.9"
2387
2876
  source = "registry+https://github.com/rust-lang/crates.io-index"
2388
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2877
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2389
2878
  dependencies = [
2390
2879
  "adler2",
2391
2880
  ]
2392
2881
 
2393
2882
  [[package]]
2394
2883
  name = "mio"
2395
- version = "1.0.3"
2884
+ version = "1.0.4"
2396
2885
  source = "registry+https://github.com/rust-lang/crates.io-index"
2397
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2886
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2398
2887
  dependencies = [
2399
2888
  "libc",
2400
2889
  "log",
2401
- "wasi 0.11.0+wasi-snapshot-preview1",
2402
- "windows-sys 0.52.0",
2890
+ "wasi 0.11.1+wasi-snapshot-preview1",
2891
+ "windows-sys 0.59.0",
2403
2892
  ]
2404
2893
 
2405
2894
  [[package]]
@@ -2408,6 +2897,15 @@ version = "0.1.0"
2408
2897
  source = "registry+https://github.com/rust-lang/crates.io-index"
2409
2898
  checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
2410
2899
 
2900
+ [[package]]
2901
+ name = "no-std-compat"
2902
+ version = "0.4.1"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
2905
+ dependencies = [
2906
+ "spin 0.5.2",
2907
+ ]
2908
+
2411
2909
  [[package]]
2412
2910
  name = "nom"
2413
2911
  version = "7.1.3"
@@ -2428,6 +2926,30 @@ dependencies = [
2428
2926
  "winapi",
2429
2927
  ]
2430
2928
 
2929
+ [[package]]
2930
+ name = "num"
2931
+ version = "0.4.3"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
2934
+ dependencies = [
2935
+ "num-bigint",
2936
+ "num-complex",
2937
+ "num-integer",
2938
+ "num-iter",
2939
+ "num-rational",
2940
+ "num-traits",
2941
+ ]
2942
+
2943
+ [[package]]
2944
+ name = "num-bigint"
2945
+ version = "0.4.6"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2948
+ dependencies = [
2949
+ "num-integer",
2950
+ "num-traits",
2951
+ ]
2952
+
2431
2953
  [[package]]
2432
2954
  name = "num-bigint-dig"
2433
2955
  version = "0.8.4"
@@ -2445,12 +2967,32 @@ dependencies = [
2445
2967
  "zeroize",
2446
2968
  ]
2447
2969
 
2970
+ [[package]]
2971
+ name = "num-complex"
2972
+ version = "0.4.6"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2975
+ dependencies = [
2976
+ "num-traits",
2977
+ ]
2978
+
2448
2979
  [[package]]
2449
2980
  name = "num-conv"
2450
2981
  version = "0.1.0"
2451
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2452
2983
  checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2453
2984
 
2985
+ [[package]]
2986
+ name = "num-derive"
2987
+ version = "0.4.2"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2990
+ dependencies = [
2991
+ "proc-macro2",
2992
+ "quote",
2993
+ "syn 2.0.104",
2994
+ ]
2995
+
2454
2996
  [[package]]
2455
2997
  name = "num-integer"
2456
2998
  version = "0.1.46"
@@ -2471,6 +3013,17 @@ dependencies = [
2471
3013
  "num-traits",
2472
3014
  ]
2473
3015
 
3016
+ [[package]]
3017
+ name = "num-rational"
3018
+ version = "0.4.2"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
3021
+ dependencies = [
3022
+ "num-bigint",
3023
+ "num-integer",
3024
+ "num-traits",
3025
+ ]
3026
+
2474
3027
  [[package]]
2475
3028
  name = "num-traits"
2476
3029
  version = "0.2.19"
@@ -2483,11 +3036,11 @@ dependencies = [
2483
3036
 
2484
3037
  [[package]]
2485
3038
  name = "num_cpus"
2486
- version = "1.16.0"
3039
+ version = "1.17.0"
2487
3040
  source = "registry+https://github.com/rust-lang/crates.io-index"
2488
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
3041
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2489
3042
  dependencies = [
2490
- "hermit-abi 0.3.9",
3043
+ "hermit-abi",
2491
3044
  "libc",
2492
3045
  ]
2493
3046
 
@@ -2500,11 +3053,23 @@ dependencies = [
2500
3053
  "memchr",
2501
3054
  ]
2502
3055
 
3056
+ [[package]]
3057
+ name = "oid-registry"
3058
+ version = "0.6.1"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
3061
+ dependencies = [
3062
+ "asn1-rs",
3063
+ ]
3064
+
2503
3065
  [[package]]
2504
3066
  name = "once_cell"
2505
3067
  version = "1.21.3"
2506
3068
  source = "registry+https://github.com/rust-lang/crates.io-index"
2507
3069
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
3070
+ dependencies = [
3071
+ "portable-atomic",
3072
+ ]
2508
3073
 
2509
3074
  [[package]]
2510
3075
  name = "oorandom"
@@ -2652,9 +3217,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2652
3217
 
2653
3218
  [[package]]
2654
3219
  name = "owo-colors"
2655
- version = "4.2.1"
3220
+ version = "4.2.2"
2656
3221
  source = "registry+https://github.com/rust-lang/crates.io-index"
2657
- checksum = "26995317201fa17f3656c36716aed4a7c81743a9634ac4c99c0eeda495db0cec"
3222
+ checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
2658
3223
 
2659
3224
  [[package]]
2660
3225
  name = "parking"
@@ -2664,9 +3229,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2664
3229
 
2665
3230
  [[package]]
2666
3231
  name = "parking_lot"
2667
- version = "0.12.3"
3232
+ version = "0.12.4"
2668
3233
  source = "registry+https://github.com/rust-lang/crates.io-index"
2669
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
3234
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2670
3235
  dependencies = [
2671
3236
  "lock_api",
2672
3237
  "parking_lot_core",
@@ -2674,9 +3239,9 @@ dependencies = [
2674
3239
 
2675
3240
  [[package]]
2676
3241
  name = "parking_lot_core"
2677
- version = "0.9.10"
3242
+ version = "0.9.11"
2678
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
2679
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
3244
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2680
3245
  dependencies = [
2681
3246
  "cfg-if",
2682
3247
  "libc",
@@ -2685,6 +3250,45 @@ dependencies = [
2685
3250
  "windows-targets 0.52.6",
2686
3251
  ]
2687
3252
 
3253
+ [[package]]
3254
+ name = "parquet"
3255
+ version = "56.0.0"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "c7288a07ed5d25939a90f9cb1ca5afa6855faa08ec7700613511ae64bdb0620c"
3258
+ dependencies = [
3259
+ "ahash",
3260
+ "arrow-array",
3261
+ "arrow-buffer",
3262
+ "arrow-cast",
3263
+ "arrow-data",
3264
+ "arrow-ipc",
3265
+ "arrow-schema",
3266
+ "arrow-select",
3267
+ "base64 0.22.1",
3268
+ "brotli",
3269
+ "bytes",
3270
+ "chrono",
3271
+ "flate2",
3272
+ "half",
3273
+ "hashbrown 0.15.4",
3274
+ "lz4_flex",
3275
+ "num",
3276
+ "num-bigint",
3277
+ "paste",
3278
+ "seq-macro",
3279
+ "simdutf8",
3280
+ "snap",
3281
+ "thrift",
3282
+ "twox-hash",
3283
+ "zstd",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "paste"
3288
+ version = "1.0.15"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
3291
+
2688
3292
  [[package]]
2689
3293
  name = "pathdiff"
2690
3294
  version = "0.2.3"
@@ -2718,9 +3322,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2718
3322
 
2719
3323
  [[package]]
2720
3324
  name = "pest"
2721
- version = "2.8.0"
3325
+ version = "2.8.1"
2722
3326
  source = "registry+https://github.com/rust-lang/crates.io-index"
2723
- checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
3327
+ checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
2724
3328
  dependencies = [
2725
3329
  "memchr",
2726
3330
  "thiserror 2.0.12",
@@ -2729,9 +3333,9 @@ dependencies = [
2729
3333
 
2730
3334
  [[package]]
2731
3335
  name = "pest_derive"
2732
- version = "2.8.0"
3336
+ version = "2.8.1"
2733
3337
  source = "registry+https://github.com/rust-lang/crates.io-index"
2734
- checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
3338
+ checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
2735
3339
  dependencies = [
2736
3340
  "pest",
2737
3341
  "pest_generator",
@@ -2739,28 +3343,37 @@ dependencies = [
2739
3343
 
2740
3344
  [[package]]
2741
3345
  name = "pest_generator"
2742
- version = "2.8.0"
3346
+ version = "2.8.1"
2743
3347
  source = "registry+https://github.com/rust-lang/crates.io-index"
2744
- checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
3348
+ checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
2745
3349
  dependencies = [
2746
3350
  "pest",
2747
3351
  "pest_meta",
2748
3352
  "proc-macro2",
2749
3353
  "quote",
2750
- "syn",
3354
+ "syn 2.0.104",
2751
3355
  ]
2752
3356
 
2753
3357
  [[package]]
2754
3358
  name = "pest_meta"
2755
- version = "2.8.0"
3359
+ version = "2.8.1"
2756
3360
  source = "registry+https://github.com/rust-lang/crates.io-index"
2757
- checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
3361
+ checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
2758
3362
  dependencies = [
2759
- "once_cell",
2760
3363
  "pest",
2761
3364
  "sha2",
2762
3365
  ]
2763
3366
 
3367
+ [[package]]
3368
+ name = "petgraph"
3369
+ version = "0.6.5"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
3372
+ dependencies = [
3373
+ "fixedbitset",
3374
+ "indexmap 2.10.0",
3375
+ ]
3376
+
2764
3377
  [[package]]
2765
3378
  name = "pin-project"
2766
3379
  version = "1.1.10"
@@ -2778,7 +3391,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2778
3391
  dependencies = [
2779
3392
  "proc-macro2",
2780
3393
  "quote",
2781
- "syn",
3394
+ "syn 2.0.104",
2782
3395
  ]
2783
3396
 
2784
3397
  [[package]]
@@ -2850,9 +3463,9 @@ dependencies = [
2850
3463
 
2851
3464
  [[package]]
2852
3465
  name = "portable-atomic"
2853
- version = "1.11.0"
3466
+ version = "1.11.1"
2854
3467
  source = "registry+https://github.com/rust-lang/crates.io-index"
2855
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
3468
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2856
3469
 
2857
3470
  [[package]]
2858
3471
  name = "potential_utf"
@@ -2880,12 +3493,12 @@ dependencies = [
2880
3493
 
2881
3494
  [[package]]
2882
3495
  name = "prettyplease"
2883
- version = "0.2.32"
3496
+ version = "0.2.36"
2884
3497
  source = "registry+https://github.com/rust-lang/crates.io-index"
2885
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
3498
+ checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
2886
3499
  dependencies = [
2887
3500
  "proc-macro2",
2888
- "syn",
3501
+ "syn 2.0.104",
2889
3502
  ]
2890
3503
 
2891
3504
  [[package]]
@@ -2974,7 +3587,7 @@ checksum = "cf103ba4062fbb1e8022d9ed9b9830fbab074b2db0a0496c78e45a62f4330bcd"
2974
3587
  dependencies = [
2975
3588
  "proc-macro2",
2976
3589
  "quote",
2977
- "syn",
3590
+ "syn 2.0.104",
2978
3591
  ]
2979
3592
 
2980
3593
  [[package]]
@@ -3006,7 +3619,7 @@ dependencies = [
3006
3619
  "proc-macro2",
3007
3620
  "pyo3-macros-backend",
3008
3621
  "quote",
3009
- "syn",
3622
+ "syn 2.0.104",
3010
3623
  ]
3011
3624
 
3012
3625
  [[package]]
@@ -3019,12 +3632,12 @@ dependencies = [
3019
3632
  "proc-macro2",
3020
3633
  "pyo3-build-config",
3021
3634
  "quote",
3022
- "syn",
3635
+ "syn 2.0.104",
3023
3636
  ]
3024
3637
 
3025
3638
  [[package]]
3026
3639
  name = "python-auditor"
3027
- version = "0.9.4"
3640
+ version = "0.10.0"
3028
3641
  dependencies = [
3029
3642
  "anyhow",
3030
3643
  "auditor",
@@ -3056,7 +3669,7 @@ checksum = "f71ee38b42f8459a88d3362be6f9b841ad2d5421844f61eb1c59c11bff3ac14a"
3056
3669
  dependencies = [
3057
3670
  "proc-macro2",
3058
3671
  "quote",
3059
- "syn",
3672
+ "syn 2.0.104",
3060
3673
  ]
3061
3674
 
3062
3675
  [[package]]
@@ -3071,8 +3684,8 @@ dependencies = [
3071
3684
  "quinn-proto",
3072
3685
  "quinn-udp",
3073
3686
  "rustc-hash 2.1.1",
3074
- "rustls 0.23.27",
3075
- "socket2",
3687
+ "rustls 0.23.31",
3688
+ "socket2 0.5.10",
3076
3689
  "thiserror 2.0.12",
3077
3690
  "tokio",
3078
3691
  "tracing",
@@ -3088,10 +3701,10 @@ dependencies = [
3088
3701
  "bytes",
3089
3702
  "getrandom 0.3.3",
3090
3703
  "lru-slab",
3091
- "rand 0.9.1",
3704
+ "rand 0.9.2",
3092
3705
  "ring",
3093
3706
  "rustc-hash 2.1.1",
3094
- "rustls 0.23.27",
3707
+ "rustls 0.23.31",
3095
3708
  "rustls-pki-types",
3096
3709
  "slab",
3097
3710
  "thiserror 2.0.12",
@@ -3102,14 +3715,14 @@ dependencies = [
3102
3715
 
3103
3716
  [[package]]
3104
3717
  name = "quinn-udp"
3105
- version = "0.5.12"
3718
+ version = "0.5.13"
3106
3719
  source = "registry+https://github.com/rust-lang/crates.io-index"
3107
- checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
3720
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
3108
3721
  dependencies = [
3109
3722
  "cfg_aliases",
3110
3723
  "libc",
3111
3724
  "once_cell",
3112
- "socket2",
3725
+ "socket2 0.5.10",
3113
3726
  "tracing",
3114
3727
  "windows-sys 0.59.0",
3115
3728
  ]
@@ -3125,9 +3738,9 @@ dependencies = [
3125
3738
 
3126
3739
  [[package]]
3127
3740
  name = "r-efi"
3128
- version = "5.2.0"
3741
+ version = "5.3.0"
3129
3742
  source = "registry+https://github.com/rust-lang/crates.io-index"
3130
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3743
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3131
3744
 
3132
3745
  [[package]]
3133
3746
  name = "rand"
@@ -3142,9 +3755,9 @@ dependencies = [
3142
3755
 
3143
3756
  [[package]]
3144
3757
  name = "rand"
3145
- version = "0.9.1"
3758
+ version = "0.9.2"
3146
3759
  source = "registry+https://github.com/rust-lang/crates.io-index"
3147
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
3760
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3148
3761
  dependencies = [
3149
3762
  "rand_chacha 0.9.0",
3150
3763
  "rand_core 0.9.3",
@@ -3220,13 +3833,33 @@ dependencies = [
3220
3833
 
3221
3834
  [[package]]
3222
3835
  name = "redox_syscall"
3223
- version = "0.5.12"
3836
+ version = "0.5.17"
3224
3837
  source = "registry+https://github.com/rust-lang/crates.io-index"
3225
- checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
3838
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
3226
3839
  dependencies = [
3227
3840
  "bitflags",
3228
3841
  ]
3229
3842
 
3843
+ [[package]]
3844
+ name = "ref-cast"
3845
+ version = "1.0.24"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
3848
+ dependencies = [
3849
+ "ref-cast-impl",
3850
+ ]
3851
+
3852
+ [[package]]
3853
+ name = "ref-cast-impl"
3854
+ version = "1.0.24"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
3857
+ dependencies = [
3858
+ "proc-macro2",
3859
+ "quote",
3860
+ "syn 2.0.104",
3861
+ ]
3862
+
3230
3863
  [[package]]
3231
3864
  name = "regex"
3232
3865
  version = "1.11.1"
@@ -3279,9 +3912,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3279
3912
 
3280
3913
  [[package]]
3281
3914
  name = "reqwest"
3282
- version = "0.12.15"
3915
+ version = "0.12.22"
3283
3916
  source = "registry+https://github.com/rust-lang/crates.io-index"
3284
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3917
+ checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
3285
3918
  dependencies = [
3286
3919
  "base64 0.22.1",
3287
3920
  "bytes",
@@ -3292,18 +3925,14 @@ dependencies = [
3292
3925
  "http-body 1.0.1",
3293
3926
  "http-body-util",
3294
3927
  "hyper 1.6.0",
3295
- "hyper-rustls 0.27.5",
3928
+ "hyper-rustls 0.27.7",
3296
3929
  "hyper-util",
3297
- "ipnet",
3298
3930
  "js-sys",
3299
3931
  "log",
3300
- "mime",
3301
- "once_cell",
3302
3932
  "percent-encoding",
3303
3933
  "pin-project-lite",
3304
3934
  "quinn",
3305
- "rustls 0.23.27",
3306
- "rustls-pemfile 2.2.0",
3935
+ "rustls 0.23.31",
3307
3936
  "rustls-pki-types",
3308
3937
  "serde",
3309
3938
  "serde_json",
@@ -3313,14 +3942,14 @@ dependencies = [
3313
3942
  "tokio-rustls 0.26.2",
3314
3943
  "tokio-util",
3315
3944
  "tower 0.5.2",
3945
+ "tower-http 0.6.6",
3316
3946
  "tower-service",
3317
3947
  "url",
3318
3948
  "wasm-bindgen",
3319
3949
  "wasm-bindgen-futures",
3320
3950
  "wasm-streams",
3321
3951
  "web-sys",
3322
- "webpki-roots 0.26.11",
3323
- "windows-registry",
3952
+ "webpki-roots 1.0.2",
3324
3953
  ]
3325
3954
 
3326
3955
  [[package]]
@@ -3340,6 +3969,36 @@ dependencies = [
3340
3969
  "tokio-util",
3341
3970
  ]
3342
3971
 
3972
+ [[package]]
3973
+ name = "rhai"
3974
+ version = "1.22.2"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "2780e813b755850e50b178931aaf94ed24f6817f46aaaf5d21c13c12d939a249"
3977
+ dependencies = [
3978
+ "ahash",
3979
+ "bitflags",
3980
+ "instant",
3981
+ "no-std-compat",
3982
+ "num-traits",
3983
+ "once_cell",
3984
+ "rhai_codegen",
3985
+ "serde",
3986
+ "smallvec",
3987
+ "smartstring",
3988
+ "thin-vec",
3989
+ ]
3990
+
3991
+ [[package]]
3992
+ name = "rhai_codegen"
3993
+ version = "2.2.0"
3994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3995
+ checksum = "a5a11a05ee1ce44058fa3d5961d05194fdbe3ad6b40f904af764d81b86450e6b"
3996
+ dependencies = [
3997
+ "proc-macro2",
3998
+ "quote",
3999
+ "syn 2.0.104",
4000
+ ]
4001
+
3343
4002
  [[package]]
3344
4003
  name = "ring"
3345
4004
  version = "0.17.14"
@@ -3388,20 +4047,19 @@ dependencies = [
3388
4047
 
3389
4048
  [[package]]
3390
4049
  name = "rust-ini"
3391
- version = "0.21.1"
4050
+ version = "0.21.2"
3392
4051
  source = "registry+https://github.com/rust-lang/crates.io-index"
3393
- checksum = "4e310ef0e1b6eeb79169a1171daf9abcb87a2e17c03bee2c4bb100b55c75409f"
4052
+ checksum = "e7295b7ce3bf4806b419dc3420745998b447178b7005e2011947b38fc5aa6791"
3394
4053
  dependencies = [
3395
4054
  "cfg-if",
3396
4055
  "ordered-multimap",
3397
- "trim-in-place",
3398
4056
  ]
3399
4057
 
3400
4058
  [[package]]
3401
4059
  name = "rustc-demangle"
3402
- version = "0.1.24"
4060
+ version = "0.1.26"
3403
4061
  source = "registry+https://github.com/rust-lang/crates.io-index"
3404
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
4062
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3405
4063
 
3406
4064
  [[package]]
3407
4065
  name = "rustc-hash"
@@ -3415,6 +4073,24 @@ version = "2.1.1"
3415
4073
  source = "registry+https://github.com/rust-lang/crates.io-index"
3416
4074
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3417
4075
 
4076
+ [[package]]
4077
+ name = "rustc_version"
4078
+ version = "0.4.1"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
4081
+ dependencies = [
4082
+ "semver",
4083
+ ]
4084
+
4085
+ [[package]]
4086
+ name = "rusticata-macros"
4087
+ version = "4.1.0"
4088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4089
+ checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
4090
+ dependencies = [
4091
+ "nom",
4092
+ ]
4093
+
3418
4094
  [[package]]
3419
4095
  name = "rustix"
3420
4096
  version = "0.38.44"
@@ -3442,16 +4118,16 @@ dependencies = [
3442
4118
 
3443
4119
  [[package]]
3444
4120
  name = "rustls"
3445
- version = "0.23.27"
4121
+ version = "0.23.31"
3446
4122
  source = "registry+https://github.com/rust-lang/crates.io-index"
3447
- checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
4123
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
3448
4124
  dependencies = [
3449
4125
  "aws-lc-rs",
3450
4126
  "log",
3451
4127
  "once_cell",
3452
4128
  "ring",
3453
4129
  "rustls-pki-types",
3454
- "rustls-webpki 0.103.3",
4130
+ "rustls-webpki 0.103.4",
3455
4131
  "subtle",
3456
4132
  "zeroize",
3457
4133
  ]
@@ -3508,9 +4184,9 @@ dependencies = [
3508
4184
 
3509
4185
  [[package]]
3510
4186
  name = "rustls-webpki"
3511
- version = "0.103.3"
4187
+ version = "0.103.4"
3512
4188
  source = "registry+https://github.com/rust-lang/crates.io-index"
3513
- checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
4189
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
3514
4190
  dependencies = [
3515
4191
  "aws-lc-rs",
3516
4192
  "ring",
@@ -3520,9 +4196,9 @@ dependencies = [
3520
4196
 
3521
4197
  [[package]]
3522
4198
  name = "rustversion"
3523
- version = "1.0.20"
4199
+ version = "1.0.21"
3524
4200
  source = "registry+https://github.com/rust-lang/crates.io-index"
3525
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
4201
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
3526
4202
 
3527
4203
  [[package]]
3528
4204
  name = "ryu"
@@ -3548,6 +4224,30 @@ dependencies = [
3548
4224
  "windows-sys 0.59.0",
3549
4225
  ]
3550
4226
 
4227
+ [[package]]
4228
+ name = "schemars"
4229
+ version = "0.9.0"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
4232
+ dependencies = [
4233
+ "dyn-clone",
4234
+ "ref-cast",
4235
+ "serde",
4236
+ "serde_json",
4237
+ ]
4238
+
4239
+ [[package]]
4240
+ name = "schemars"
4241
+ version = "1.0.4"
4242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4243
+ checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
4244
+ dependencies = [
4245
+ "dyn-clone",
4246
+ "ref-cast",
4247
+ "serde",
4248
+ "serde_json",
4249
+ ]
4250
+
3551
4251
  [[package]]
3552
4252
  name = "scopeguard"
3553
4253
  version = "1.2.0"
@@ -3597,6 +4297,18 @@ dependencies = [
3597
4297
  "libc",
3598
4298
  ]
3599
4299
 
4300
+ [[package]]
4301
+ name = "semver"
4302
+ version = "1.0.26"
4303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4304
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
4305
+
4306
+ [[package]]
4307
+ name = "seq-macro"
4308
+ version = "0.3.6"
4309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4310
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
4311
+
3600
4312
  [[package]]
3601
4313
  name = "serde"
3602
4314
  version = "1.0.219"
@@ -3636,14 +4348,14 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3636
4348
  dependencies = [
3637
4349
  "proc-macro2",
3638
4350
  "quote",
3639
- "syn",
4351
+ "syn 2.0.104",
3640
4352
  ]
3641
4353
 
3642
4354
  [[package]]
3643
4355
  name = "serde_json"
3644
- version = "1.0.140"
4356
+ version = "1.0.142"
3645
4357
  source = "registry+https://github.com/rust-lang/crates.io-index"
3646
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
4358
+ checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
3647
4359
  dependencies = [
3648
4360
  "itoa",
3649
4361
  "memchr",
@@ -3666,9 +4378,9 @@ dependencies = [
3666
4378
 
3667
4379
  [[package]]
3668
4380
  name = "serde_spanned"
3669
- version = "0.6.8"
4381
+ version = "1.0.0"
3670
4382
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
4383
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
3672
4384
  dependencies = [
3673
4385
  "serde",
3674
4386
  ]
@@ -3687,15 +4399,17 @@ dependencies = [
3687
4399
 
3688
4400
  [[package]]
3689
4401
  name = "serde_with"
3690
- version = "3.12.0"
4402
+ version = "3.14.0"
3691
4403
  source = "registry+https://github.com/rust-lang/crates.io-index"
3692
- checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
4404
+ checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
3693
4405
  dependencies = [
3694
4406
  "base64 0.22.1",
3695
4407
  "chrono",
3696
4408
  "hex",
3697
4409
  "indexmap 1.9.3",
3698
- "indexmap 2.9.0",
4410
+ "indexmap 2.10.0",
4411
+ "schemars 0.9.0",
4412
+ "schemars 1.0.4",
3699
4413
  "serde",
3700
4414
  "serde_derive",
3701
4415
  "serde_json",
@@ -3705,14 +4419,14 @@ dependencies = [
3705
4419
 
3706
4420
  [[package]]
3707
4421
  name = "serde_with_macros"
3708
- version = "3.12.0"
4422
+ version = "3.14.0"
3709
4423
  source = "registry+https://github.com/rust-lang/crates.io-index"
3710
- checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
4424
+ checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
3711
4425
  dependencies = [
3712
4426
  "darling",
3713
4427
  "proc-macro2",
3714
4428
  "quote",
3715
- "syn",
4429
+ "syn 2.0.104",
3716
4430
  ]
3717
4431
 
3718
4432
  [[package]]
@@ -3721,7 +4435,7 @@ version = "0.9.34+deprecated"
3721
4435
  source = "registry+https://github.com/rust-lang/crates.io-index"
3722
4436
  checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3723
4437
  dependencies = [
3724
- "indexmap 2.9.0",
4438
+ "indexmap 2.10.0",
3725
4439
  "itoa",
3726
4440
  "ryu",
3727
4441
  "serde",
@@ -3773,9 +4487,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3773
4487
 
3774
4488
  [[package]]
3775
4489
  name = "signal-hook-registry"
3776
- version = "1.4.5"
4490
+ version = "1.4.6"
3777
4491
  source = "registry+https://github.com/rust-lang/crates.io-index"
3778
- checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
4492
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3779
4493
  dependencies = [
3780
4494
  "libc",
3781
4495
  ]
@@ -3790,34 +4504,71 @@ dependencies = [
3790
4504
  "rand_core 0.6.4",
3791
4505
  ]
3792
4506
 
4507
+ [[package]]
4508
+ name = "simdutf8"
4509
+ version = "0.1.5"
4510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4511
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
4512
+
3793
4513
  [[package]]
3794
4514
  name = "slab"
3795
- version = "0.4.9"
4515
+ version = "0.4.10"
4516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4517
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
4518
+
4519
+ [[package]]
4520
+ name = "smallvec"
4521
+ version = "1.15.1"
3796
4522
  source = "registry+https://github.com/rust-lang/crates.io-index"
3797
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4523
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3798
4524
  dependencies = [
3799
- "autocfg",
4525
+ "serde",
3800
4526
  ]
3801
4527
 
3802
4528
  [[package]]
3803
- name = "smallvec"
3804
- version = "1.15.0"
4529
+ name = "smartstring"
4530
+ version = "1.0.1"
3805
4531
  source = "registry+https://github.com/rust-lang/crates.io-index"
3806
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
4532
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
3807
4533
  dependencies = [
4534
+ "autocfg",
3808
4535
  "serde",
4536
+ "static_assertions",
4537
+ "version_check",
3809
4538
  ]
3810
4539
 
4540
+ [[package]]
4541
+ name = "snap"
4542
+ version = "1.1.1"
4543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4544
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
4545
+
3811
4546
  [[package]]
3812
4547
  name = "socket2"
3813
- version = "0.5.9"
4548
+ version = "0.5.10"
3814
4549
  source = "registry+https://github.com/rust-lang/crates.io-index"
3815
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
4550
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3816
4551
  dependencies = [
3817
4552
  "libc",
3818
4553
  "windows-sys 0.52.0",
3819
4554
  ]
3820
4555
 
4556
+ [[package]]
4557
+ name = "socket2"
4558
+ version = "0.6.0"
4559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4560
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
4561
+ dependencies = [
4562
+ "libc",
4563
+ "windows-sys 0.59.0",
4564
+ ]
4565
+
4566
+ [[package]]
4567
+ name = "spin"
4568
+ version = "0.5.2"
4569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4570
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
4571
+
3821
4572
  [[package]]
3822
4573
  name = "spin"
3823
4574
  version = "0.9.8"
@@ -3867,14 +4618,14 @@ dependencies = [
3867
4618
  "futures-intrusive",
3868
4619
  "futures-io",
3869
4620
  "futures-util",
3870
- "hashbrown 0.15.3",
3871
- "hashlink",
3872
- "indexmap 2.9.0",
4621
+ "hashbrown 0.15.4",
4622
+ "hashlink 0.10.0",
4623
+ "indexmap 2.10.0",
3873
4624
  "log",
3874
4625
  "memchr",
3875
4626
  "once_cell",
3876
4627
  "percent-encoding",
3877
- "rustls 0.23.27",
4628
+ "rustls 0.23.31",
3878
4629
  "serde",
3879
4630
  "serde_json",
3880
4631
  "sha2",
@@ -3898,7 +4649,7 @@ dependencies = [
3898
4649
  "quote",
3899
4650
  "sqlx-core",
3900
4651
  "sqlx-macros-core",
3901
- "syn",
4652
+ "syn 2.0.104",
3902
4653
  ]
3903
4654
 
3904
4655
  [[package]]
@@ -3921,7 +4672,7 @@ dependencies = [
3921
4672
  "sqlx-mysql",
3922
4673
  "sqlx-postgres",
3923
4674
  "sqlx-sqlite",
3924
- "syn",
4675
+ "syn 2.0.104",
3925
4676
  "tokio",
3926
4677
  "url",
3927
4678
  ]
@@ -4041,6 +4792,12 @@ version = "1.2.0"
4041
4792
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
4793
  checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
4043
4794
 
4795
+ [[package]]
4796
+ name = "static_assertions"
4797
+ version = "1.1.0"
4798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4799
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
4800
+
4044
4801
  [[package]]
4045
4802
  name = "stringprep"
4046
4803
  version = "0.1.5"
@@ -4066,9 +4823,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
4066
4823
 
4067
4824
  [[package]]
4068
4825
  name = "syn"
4069
- version = "2.0.101"
4826
+ version = "1.0.109"
4827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4828
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
4829
+ dependencies = [
4830
+ "proc-macro2",
4831
+ "quote",
4832
+ "unicode-ident",
4833
+ ]
4834
+
4835
+ [[package]]
4836
+ name = "syn"
4837
+ version = "2.0.104"
4070
4838
  source = "registry+https://github.com/rust-lang/crates.io-index"
4071
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
4839
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
4072
4840
  dependencies = [
4073
4841
  "proc-macro2",
4074
4842
  "quote",
@@ -4084,6 +4852,18 @@ dependencies = [
4084
4852
  "futures-core",
4085
4853
  ]
4086
4854
 
4855
+ [[package]]
4856
+ name = "synstructure"
4857
+ version = "0.12.6"
4858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4859
+ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
4860
+ dependencies = [
4861
+ "proc-macro2",
4862
+ "quote",
4863
+ "syn 1.0.109",
4864
+ "unicode-xid",
4865
+ ]
4866
+
4087
4867
  [[package]]
4088
4868
  name = "synstructure"
4089
4869
  version = "0.13.2"
@@ -4092,7 +4872,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
4092
4872
  dependencies = [
4093
4873
  "proc-macro2",
4094
4874
  "quote",
4095
- "syn",
4875
+ "syn 2.0.104",
4096
4876
  ]
4097
4877
 
4098
4878
  [[package]]
@@ -4101,6 +4881,15 @@ version = "0.13.2"
4101
4881
  source = "registry+https://github.com/rust-lang/crates.io-index"
4102
4882
  checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
4103
4883
 
4884
+ [[package]]
4885
+ name = "thin-vec"
4886
+ version = "0.2.14"
4887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4888
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
4889
+ dependencies = [
4890
+ "serde",
4891
+ ]
4892
+
4104
4893
  [[package]]
4105
4894
  name = "thiserror"
4106
4895
  version = "1.0.69"
@@ -4127,7 +4916,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
4127
4916
  dependencies = [
4128
4917
  "proc-macro2",
4129
4918
  "quote",
4130
- "syn",
4919
+ "syn 2.0.104",
4131
4920
  ]
4132
4921
 
4133
4922
  [[package]]
@@ -4138,17 +4927,27 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4138
4927
  dependencies = [
4139
4928
  "proc-macro2",
4140
4929
  "quote",
4141
- "syn",
4930
+ "syn 2.0.104",
4142
4931
  ]
4143
4932
 
4144
4933
  [[package]]
4145
4934
  name = "thread_local"
4146
- version = "1.1.8"
4935
+ version = "1.1.9"
4147
4936
  source = "registry+https://github.com/rust-lang/crates.io-index"
4148
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
4937
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
4149
4938
  dependencies = [
4150
4939
  "cfg-if",
4151
- "once_cell",
4940
+ ]
4941
+
4942
+ [[package]]
4943
+ name = "thrift"
4944
+ version = "0.17.0"
4945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4946
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
4947
+ dependencies = [
4948
+ "byteorder",
4949
+ "integer-encoding",
4950
+ "ordered-float 2.10.1",
4152
4951
  ]
4153
4952
 
4154
4953
  [[package]]
@@ -4228,27 +5027,44 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4228
5027
 
4229
5028
  [[package]]
4230
5029
  name = "tokio"
4231
- version = "1.45.0"
5030
+ version = "1.47.1"
4232
5031
  source = "registry+https://github.com/rust-lang/crates.io-index"
4233
- checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
5032
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
4234
5033
  dependencies = [
4235
5034
  "backtrace",
4236
5035
  "bytes",
5036
+ "io-uring",
4237
5037
  "libc",
4238
5038
  "mio",
4239
5039
  "parking_lot",
4240
5040
  "pin-project-lite",
4241
5041
  "signal-hook-registry",
4242
- "socket2",
5042
+ "slab",
5043
+ "socket2 0.6.0",
4243
5044
  "tokio-macros",
4244
- "windows-sys 0.52.0",
5045
+ "windows-sys 0.59.0",
5046
+ ]
5047
+
5048
+ [[package]]
5049
+ name = "tokio-cron-scheduler"
5050
+ version = "0.14.0"
5051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5052
+ checksum = "5c71ce8f810abc9fabebccc30302a952f9e89c6cf246fafaf170fef164063141"
5053
+ dependencies = [
5054
+ "chrono",
5055
+ "croner",
5056
+ "num-derive",
5057
+ "num-traits",
5058
+ "tokio",
5059
+ "tracing",
5060
+ "uuid",
4245
5061
  ]
4246
5062
 
4247
5063
  [[package]]
4248
5064
  name = "tokio-io-timeout"
4249
- version = "1.2.0"
5065
+ version = "1.2.1"
4250
5066
  source = "registry+https://github.com/rust-lang/crates.io-index"
4251
- checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
5067
+ checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
4252
5068
  dependencies = [
4253
5069
  "pin-project-lite",
4254
5070
  "tokio",
@@ -4262,7 +5078,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4262
5078
  dependencies = [
4263
5079
  "proc-macro2",
4264
5080
  "quote",
4265
- "syn",
5081
+ "syn 2.0.104",
4266
5082
  ]
4267
5083
 
4268
5084
  [[package]]
@@ -4281,7 +5097,7 @@ version = "0.26.2"
4281
5097
  source = "registry+https://github.com/rust-lang/crates.io-index"
4282
5098
  checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
4283
5099
  dependencies = [
4284
- "rustls 0.23.27",
5100
+ "rustls 0.23.31",
4285
5101
  "tokio",
4286
5102
  ]
4287
5103
 
@@ -4298,9 +5114,9 @@ dependencies = [
4298
5114
 
4299
5115
  [[package]]
4300
5116
  name = "tokio-util"
4301
- version = "0.7.15"
5117
+ version = "0.7.16"
4302
5118
  source = "registry+https://github.com/rust-lang/crates.io-index"
4303
- checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
5119
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
4304
5120
  dependencies = [
4305
5121
  "bytes",
4306
5122
  "futures-core",
@@ -4311,35 +5127,32 @@ dependencies = [
4311
5127
 
4312
5128
  [[package]]
4313
5129
  name = "toml"
4314
- version = "0.8.22"
5130
+ version = "0.9.5"
4315
5131
  source = "registry+https://github.com/rust-lang/crates.io-index"
4316
- checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
5132
+ checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
4317
5133
  dependencies = [
4318
5134
  "serde",
4319
5135
  "serde_spanned",
4320
5136
  "toml_datetime",
4321
- "toml_edit",
5137
+ "toml_parser",
5138
+ "winnow",
4322
5139
  ]
4323
5140
 
4324
5141
  [[package]]
4325
5142
  name = "toml_datetime"
4326
- version = "0.6.9"
5143
+ version = "0.7.0"
4327
5144
  source = "registry+https://github.com/rust-lang/crates.io-index"
4328
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
5145
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
4329
5146
  dependencies = [
4330
5147
  "serde",
4331
5148
  ]
4332
5149
 
4333
5150
  [[package]]
4334
- name = "toml_edit"
4335
- version = "0.22.26"
5151
+ name = "toml_parser"
5152
+ version = "1.0.2"
4336
5153
  source = "registry+https://github.com/rust-lang/crates.io-index"
4337
- checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
5154
+ checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10"
4338
5155
  dependencies = [
4339
- "indexmap 2.9.0",
4340
- "serde",
4341
- "serde_spanned",
4342
- "toml_datetime",
4343
5156
  "winnow",
4344
5157
  ]
4345
5158
 
@@ -4396,6 +5209,24 @@ dependencies = [
4396
5209
  "tracing",
4397
5210
  ]
4398
5211
 
5212
+ [[package]]
5213
+ name = "tower-http"
5214
+ version = "0.6.6"
5215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5216
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
5217
+ dependencies = [
5218
+ "bitflags",
5219
+ "bytes",
5220
+ "futures-util",
5221
+ "http 1.3.1",
5222
+ "http-body 1.0.1",
5223
+ "iri-string",
5224
+ "pin-project-lite",
5225
+ "tower 0.5.2",
5226
+ "tower-layer",
5227
+ "tower-service",
5228
+ ]
5229
+
4399
5230
  [[package]]
4400
5231
  name = "tower-layer"
4401
5232
  version = "0.3.3"
@@ -4422,9 +5253,9 @@ dependencies = [
4422
5253
 
4423
5254
  [[package]]
4424
5255
  name = "tracing-actix-web"
4425
- version = "0.7.18"
5256
+ version = "0.7.19"
4426
5257
  source = "registry+https://github.com/rust-lang/crates.io-index"
4427
- checksum = "2340b7722695166c7fc9b3e3cd1166e7c74fedb9075b8f0c74d3822d2e41caf5"
5258
+ checksum = "5360edd490ec8dee9fedfc6a9fd83ac2f01b3e1996e3261b9ad18a61971fe064"
4428
5259
  dependencies = [
4429
5260
  "actix-web",
4430
5261
  "mutually_exclusive_features",
@@ -4435,13 +5266,13 @@ dependencies = [
4435
5266
 
4436
5267
  [[package]]
4437
5268
  name = "tracing-attributes"
4438
- version = "0.1.28"
5269
+ version = "0.1.30"
4439
5270
  source = "registry+https://github.com/rust-lang/crates.io-index"
4440
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
5271
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4441
5272
  dependencies = [
4442
5273
  "proc-macro2",
4443
5274
  "quote",
4444
- "syn",
5275
+ "syn 2.0.104",
4445
5276
  ]
4446
5277
 
4447
5278
  [[package]]
@@ -4464,9 +5295,9 @@ dependencies = [
4464
5295
 
4465
5296
  [[package]]
4466
5297
  name = "tracing-core"
4467
- version = "0.1.33"
5298
+ version = "0.1.34"
4468
5299
  source = "registry+https://github.com/rust-lang/crates.io-index"
4469
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
5300
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4470
5301
  dependencies = [
4471
5302
  "once_cell",
4472
5303
  "valuable",
@@ -4522,18 +5353,18 @@ dependencies = [
4522
5353
  "tracing-log 0.2.0",
4523
5354
  ]
4524
5355
 
4525
- [[package]]
4526
- name = "trim-in-place"
4527
- version = "0.1.7"
4528
- source = "registry+https://github.com/rust-lang/crates.io-index"
4529
- checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc"
4530
-
4531
5356
  [[package]]
4532
5357
  name = "try-lock"
4533
5358
  version = "0.2.5"
4534
5359
  source = "registry+https://github.com/rust-lang/crates.io-index"
4535
5360
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4536
5361
 
5362
+ [[package]]
5363
+ name = "twox-hash"
5364
+ version = "2.1.1"
5365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5366
+ checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
5367
+
4537
5368
  [[package]]
4538
5369
  name = "typenum"
4539
5370
  version = "1.18.0"
@@ -4629,11 +5460,13 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4629
5460
 
4630
5461
  [[package]]
4631
5462
  name = "uuid"
4632
- version = "1.16.0"
5463
+ version = "1.17.0"
4633
5464
  source = "registry+https://github.com/rust-lang/crates.io-index"
4634
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
5465
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
4635
5466
  dependencies = [
4636
5467
  "getrandom 0.3.3",
5468
+ "js-sys",
5469
+ "wasm-bindgen",
4637
5470
  ]
4638
5471
 
4639
5472
  [[package]]
@@ -4675,9 +5508,9 @@ dependencies = [
4675
5508
 
4676
5509
  [[package]]
4677
5510
  name = "wasi"
4678
- version = "0.11.0+wasi-snapshot-preview1"
5511
+ version = "0.11.1+wasi-snapshot-preview1"
4679
5512
  source = "registry+https://github.com/rust-lang/crates.io-index"
4680
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
5513
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4681
5514
 
4682
5515
  [[package]]
4683
5516
  name = "wasi"
@@ -4716,7 +5549,7 @@ dependencies = [
4716
5549
  "log",
4717
5550
  "proc-macro2",
4718
5551
  "quote",
4719
- "syn",
5552
+ "syn 2.0.104",
4720
5553
  "wasm-bindgen-shared",
4721
5554
  ]
4722
5555
 
@@ -4751,7 +5584,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4751
5584
  dependencies = [
4752
5585
  "proc-macro2",
4753
5586
  "quote",
4754
- "syn",
5587
+ "syn 2.0.104",
4755
5588
  "wasm-bindgen-backend",
4756
5589
  "wasm-bindgen-shared",
4757
5590
  ]
@@ -4765,6 +5598,30 @@ dependencies = [
4765
5598
  "unicode-ident",
4766
5599
  ]
4767
5600
 
5601
+ [[package]]
5602
+ name = "wasm-bindgen-test"
5603
+ version = "0.3.50"
5604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5605
+ checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
5606
+ dependencies = [
5607
+ "js-sys",
5608
+ "minicov",
5609
+ "wasm-bindgen",
5610
+ "wasm-bindgen-futures",
5611
+ "wasm-bindgen-test-macro",
5612
+ ]
5613
+
5614
+ [[package]]
5615
+ name = "wasm-bindgen-test-macro"
5616
+ version = "0.3.50"
5617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5618
+ checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
5619
+ dependencies = [
5620
+ "proc-macro2",
5621
+ "quote",
5622
+ "syn 2.0.104",
5623
+ ]
5624
+
4768
5625
  [[package]]
4769
5626
  name = "wasm-streams"
4770
5627
  version = "0.4.2"
@@ -4804,14 +5661,14 @@ version = "0.26.11"
4804
5661
  source = "registry+https://github.com/rust-lang/crates.io-index"
4805
5662
  checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
4806
5663
  dependencies = [
4807
- "webpki-roots 1.0.0",
5664
+ "webpki-roots 1.0.2",
4808
5665
  ]
4809
5666
 
4810
5667
  [[package]]
4811
5668
  name = "webpki-roots"
4812
- version = "1.0.0"
5669
+ version = "1.0.2"
4813
5670
  source = "registry+https://github.com/rust-lang/crates.io-index"
4814
- checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
5671
+ checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
4815
5672
  dependencies = [
4816
5673
  "rustls-pki-types",
4817
5674
  ]
@@ -4879,7 +5736,7 @@ dependencies = [
4879
5736
  "windows-interface",
4880
5737
  "windows-link",
4881
5738
  "windows-result",
4882
- "windows-strings 0.4.2",
5739
+ "windows-strings",
4883
5740
  ]
4884
5741
 
4885
5742
  [[package]]
@@ -4890,7 +5747,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4890
5747
  dependencies = [
4891
5748
  "proc-macro2",
4892
5749
  "quote",
4893
- "syn",
5750
+ "syn 2.0.104",
4894
5751
  ]
4895
5752
 
4896
5753
  [[package]]
@@ -4901,25 +5758,14 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4901
5758
  dependencies = [
4902
5759
  "proc-macro2",
4903
5760
  "quote",
4904
- "syn",
5761
+ "syn 2.0.104",
4905
5762
  ]
4906
5763
 
4907
5764
  [[package]]
4908
5765
  name = "windows-link"
4909
- version = "0.1.1"
4910
- source = "registry+https://github.com/rust-lang/crates.io-index"
4911
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4912
-
4913
- [[package]]
4914
- name = "windows-registry"
4915
- version = "0.4.0"
5766
+ version = "0.1.3"
4916
5767
  source = "registry+https://github.com/rust-lang/crates.io-index"
4917
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4918
- dependencies = [
4919
- "windows-result",
4920
- "windows-strings 0.3.1",
4921
- "windows-targets 0.53.0",
4922
- ]
5768
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4923
5769
 
4924
5770
  [[package]]
4925
5771
  name = "windows-result"
@@ -4930,15 +5776,6 @@ dependencies = [
4930
5776
  "windows-link",
4931
5777
  ]
4932
5778
 
4933
- [[package]]
4934
- name = "windows-strings"
4935
- version = "0.3.1"
4936
- source = "registry+https://github.com/rust-lang/crates.io-index"
4937
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4938
- dependencies = [
4939
- "windows-link",
4940
- ]
4941
-
4942
5779
  [[package]]
4943
5780
  name = "windows-strings"
4944
5781
  version = "0.4.2"
@@ -4975,6 +5812,15 @@ dependencies = [
4975
5812
  "windows-targets 0.52.6",
4976
5813
  ]
4977
5814
 
5815
+ [[package]]
5816
+ name = "windows-sys"
5817
+ version = "0.60.2"
5818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5819
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5820
+ dependencies = [
5821
+ "windows-targets 0.53.3",
5822
+ ]
5823
+
4978
5824
  [[package]]
4979
5825
  name = "windows-targets"
4980
5826
  version = "0.48.5"
@@ -5008,10 +5854,11 @@ dependencies = [
5008
5854
 
5009
5855
  [[package]]
5010
5856
  name = "windows-targets"
5011
- version = "0.53.0"
5857
+ version = "0.53.3"
5012
5858
  source = "registry+https://github.com/rust-lang/crates.io-index"
5013
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
5859
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
5014
5860
  dependencies = [
5861
+ "windows-link",
5015
5862
  "windows_aarch64_gnullvm 0.53.0",
5016
5863
  "windows_aarch64_msvc 0.53.0",
5017
5864
  "windows_i686_gnu 0.53.0",
@@ -5162,18 +6009,18 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
5162
6009
 
5163
6010
  [[package]]
5164
6011
  name = "winnow"
5165
- version = "0.7.10"
6012
+ version = "0.7.12"
5166
6013
  source = "registry+https://github.com/rust-lang/crates.io-index"
5167
- checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
6014
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
5168
6015
  dependencies = [
5169
6016
  "memchr",
5170
6017
  ]
5171
6018
 
5172
6019
  [[package]]
5173
6020
  name = "wiremock"
5174
- version = "0.6.3"
6021
+ version = "0.6.4"
5175
6022
  source = "registry+https://github.com/rust-lang/crates.io-index"
5176
- checksum = "101681b74cd87b5899e87bcf5a64e83334dd313fcd3053ea72e6dba18928e301"
6023
+ checksum = "a2b8b99d4cdbf36b239a9532e31fe4fb8acc38d1897c1761e161550a7dc78e6a"
5177
6024
  dependencies = [
5178
6025
  "assert-json-diff",
5179
6026
  "async-trait",
@@ -5208,15 +6055,32 @@ version = "0.6.1"
5208
6055
  source = "registry+https://github.com/rust-lang/crates.io-index"
5209
6056
  checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
5210
6057
 
6058
+ [[package]]
6059
+ name = "x509-parser"
6060
+ version = "0.15.1"
6061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6062
+ checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da"
6063
+ dependencies = [
6064
+ "asn1-rs",
6065
+ "data-encoding",
6066
+ "der-parser",
6067
+ "lazy_static",
6068
+ "nom",
6069
+ "oid-registry",
6070
+ "rusticata-macros",
6071
+ "thiserror 1.0.69",
6072
+ "time",
6073
+ ]
6074
+
5211
6075
  [[package]]
5212
6076
  name = "yaml-rust2"
5213
- version = "0.10.2"
6077
+ version = "0.10.3"
5214
6078
  source = "registry+https://github.com/rust-lang/crates.io-index"
5215
- checksum = "18b783b2c2789414f8bb84ca3318fc9c2d7e7be1c22907d37839a58dedb369d3"
6079
+ checksum = "4ce2a4ff45552406d02501cea6c18d8a7e50228e7736a872951fe2fe75c91be7"
5216
6080
  dependencies = [
5217
6081
  "arraydeque",
5218
6082
  "encoding_rs",
5219
- "hashlink",
6083
+ "hashlink 0.10.0",
5220
6084
  ]
5221
6085
 
5222
6086
  [[package]]
@@ -5239,28 +6103,28 @@ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
5239
6103
  dependencies = [
5240
6104
  "proc-macro2",
5241
6105
  "quote",
5242
- "syn",
5243
- "synstructure",
6106
+ "syn 2.0.104",
6107
+ "synstructure 0.13.2",
5244
6108
  ]
5245
6109
 
5246
6110
  [[package]]
5247
6111
  name = "zerocopy"
5248
- version = "0.8.25"
6112
+ version = "0.8.26"
5249
6113
  source = "registry+https://github.com/rust-lang/crates.io-index"
5250
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
6114
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
5251
6115
  dependencies = [
5252
6116
  "zerocopy-derive",
5253
6117
  ]
5254
6118
 
5255
6119
  [[package]]
5256
6120
  name = "zerocopy-derive"
5257
- version = "0.8.25"
6121
+ version = "0.8.26"
5258
6122
  source = "registry+https://github.com/rust-lang/crates.io-index"
5259
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
6123
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
5260
6124
  dependencies = [
5261
6125
  "proc-macro2",
5262
6126
  "quote",
5263
- "syn",
6127
+ "syn 2.0.104",
5264
6128
  ]
5265
6129
 
5266
6130
  [[package]]
@@ -5280,8 +6144,8 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5280
6144
  dependencies = [
5281
6145
  "proc-macro2",
5282
6146
  "quote",
5283
- "syn",
5284
- "synstructure",
6147
+ "syn 2.0.104",
6148
+ "synstructure 0.13.2",
5285
6149
  ]
5286
6150
 
5287
6151
  [[package]]
@@ -5303,9 +6167,9 @@ dependencies = [
5303
6167
 
5304
6168
  [[package]]
5305
6169
  name = "zerovec"
5306
- version = "0.11.2"
6170
+ version = "0.11.4"
5307
6171
  source = "registry+https://github.com/rust-lang/crates.io-index"
5308
- checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
6172
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
5309
6173
  dependencies = [
5310
6174
  "yoke",
5311
6175
  "zerofrom",
@@ -5320,9 +6184,15 @@ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
5320
6184
  dependencies = [
5321
6185
  "proc-macro2",
5322
6186
  "quote",
5323
- "syn",
6187
+ "syn 2.0.104",
5324
6188
  ]
5325
6189
 
6190
+ [[package]]
6191
+ name = "zlib-rs"
6192
+ version = "0.5.1"
6193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6194
+ checksum = "626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a"
6195
+
5326
6196
  [[package]]
5327
6197
  name = "zstd"
5328
6198
  version = "0.13.3"