python-auditor 0.9.3__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.3 → python_auditor-0.10.0}/Cargo.lock +1206 -375
  2. {python_auditor-0.9.3 → python_auditor-0.10.0}/Cargo.toml +1 -1
  3. {python_auditor-0.9.3 → python_auditor-0.10.0}/PKG-INFO +1 -1
  4. {python_auditor-0.9.3 → 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.3 → python_auditor-0.10.0}/local_dependencies/auditor/Cargo.toml +9 -2
  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.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +2 -2
  17. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +2 -1
  18. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +12 -12
  19. {python_auditor-0.9.3 → 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.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/configuration.rs +127 -1
  22. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/score.rs +2 -7
  23. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/lib.rs +3 -0
  24. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/main.rs +107 -5
  25. {python_auditor-0.9.3 → 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.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/add.rs +52 -25
  28. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +126 -35
  29. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/record_handlers.rs +16 -4
  30. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/startup.rs +92 -9
  31. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +8 -11
  32. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/helpers.rs +4 -0
  33. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/Cargo.toml +2 -2
  34. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +5 -5
  35. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/database.rs +3 -0
  36. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/lib.rs +16 -16
  37. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_advanced_query.py +3 -3
  38. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_advanced_query_blocking.py +3 -3
  39. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_advanced_query_queued.py +3 -3
  40. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/client.rs +2 -2
  41. python_auditor-0.9.3/local_dependencies/auditor/certs/rootCA-key.pem +0 -40
  42. python_auditor-0.9.3/local_dependencies/auditor/certs/rootCA.pem +0 -28
  43. python_auditor-0.9.3/local_dependencies/auditor/certs/server-cert.pem +0 -26
  44. python_auditor-0.9.3/local_dependencies/auditor/certs/server-key.pem +0 -28
  45. {python_auditor-0.9.3 → python_auditor-0.10.0}/.cargo/config.toml +0 -0
  46. {python_auditor-0.9.3 → python_auditor-0.10.0}/.readthedocs.yaml +0 -0
  47. {python_auditor-0.9.3 → python_auditor-0.10.0}/README.md +0 -0
  48. {python_auditor-0.9.3 → python_auditor-0.10.0}/docs/Makefile +0 -0
  49. {python_auditor-0.9.3 → python_auditor-0.10.0}/docs/api.rst +0 -0
  50. {python_auditor-0.9.3 → python_auditor-0.10.0}/docs/changelog.rst +0 -0
  51. {python_auditor-0.9.3 → python_auditor-0.10.0}/docs/conf.py +0 -0
  52. {python_auditor-0.9.3 → python_auditor-0.10.0}/docs/index.rst +0 -0
  53. {python_auditor-0.9.3 → python_auditor-0.10.0}/docs/make.bat +0 -0
  54. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.env +0 -0
  55. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  56. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  57. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  58. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  59. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  60. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  61. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  62. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  63. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  64. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  65. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  66. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  67. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/build.rs +0 -0
  68. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/base.yaml +0 -0
  69. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/dualstack.yaml +0 -0
  70. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  71. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  72. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  73. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  74. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
  75. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/.env +0 -0
  76. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
  77. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  78. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
  79. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
  80. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/constants.rs +0 -0
  81. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  82. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  83. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  84. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/record.rs +0 -0
  85. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  86. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  87. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  88. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/error.rs +0 -0
  89. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/macros.rs +0 -0
  90. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  91. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/get.rs +0 -0
  92. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  93. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  94. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/routes/update.rs +0 -0
  95. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/src/telemetry.rs +0 -0
  96. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/add.rs +0 -0
  97. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/get.rs +0 -0
  98. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  99. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  100. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  101. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
  102. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor/tests/api/update.rs +0 -0
  103. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.env +0 -0
  104. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  105. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  106. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  107. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  108. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  109. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  110. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  111. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  112. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  113. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/README.md +0 -0
  114. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  115. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  116. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  117. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  118. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  119. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  120. {python_auditor-0.9.3 → python_auditor-0.10.0}/local_dependencies/auditor-client/src/constants.rs +0 -0
  121. {python_auditor-0.9.3 → python_auditor-0.10.0}/pyproject.toml +0 -0
  122. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_add_update.py +0 -0
  123. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_add_update_blocking.py +0 -0
  124. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_add_update_queued.py +0 -0
  125. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_bulk_insert.py +0 -0
  126. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_bulk_insert_blocking.py +0 -0
  127. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_bulk_insert_queued.py +0 -0
  128. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_components.py +0 -0
  129. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_components_blocking.py +0 -0
  130. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_components_queued.py +0 -0
  131. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_eq.py +0 -0
  132. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_get_since.py +0 -0
  133. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_get_since_blocking.py +0 -0
  134. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_get_since_queued.py +0 -0
  135. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_get_single_record.py +0 -0
  136. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_get_single_record_blocking.py +0 -0
  137. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_get_single_record_queued.py +0 -0
  138. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_meta.py +0 -0
  139. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_meta_blocking.py +0 -0
  140. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/test_meta_queued.py +0 -0
  141. {python_auditor-0.9.3 → python_auditor-0.10.0}/scripts/tls_test/test_tls.py +0 -0
  142. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/blocking_client.rs +0 -0
  143. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/builder.rs +0 -0
  144. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/domain/component.rs +0 -0
  145. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/domain/meta.rs +0 -0
  146. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/domain/mod.rs +0 -0
  147. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/domain/record.rs +0 -0
  148. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/domain/score.rs +0 -0
  149. {python_auditor-0.9.3 → python_auditor-0.10.0}/src/lib.rs +0 -0
  150. {python_auditor-0.9.3 → 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.3"
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.3"
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.3"
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.3"
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.3"
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.3"
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,15 +902,15 @@ 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
 
655
909
  [[package]]
656
910
  name = "bitflags"
657
- version = "2.9.0"
911
+ version = "2.9.1"
658
912
  source = "registry+https://github.com/rust-lang/crates.io-index"
659
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
913
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
660
914
  dependencies = [
661
915
  "serde",
662
916
  ]
@@ -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.22"
1011
+ version = "1.2.31"
736
1012
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
- checksum = "32db95edf998450acc7881c932f94cd9b05c87b4b2599e8bab064753da4acfd1"
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.11"
1646
+ version = "0.3.13"
1313
1647
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
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",
@@ -1362,18 +1696,29 @@ dependencies = [
1362
1696
  ]
1363
1697
 
1364
1698
  [[package]]
1365
- name = "fastrand"
1366
- version = "2.3.0"
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"
1367
1707
  source = "registry+https://github.com/rust-lang/crates.io-index"
1368
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1708
+ checksum = "1045398c1bfd89168b5fd3f1fc11f6e70b34f6f66300c87d44d3de849463abf1"
1709
+ dependencies = [
1710
+ "bitflags",
1711
+ "rustc_version",
1712
+ ]
1369
1713
 
1370
1714
  [[package]]
1371
1715
  name = "flate2"
1372
- version = "1.1.1"
1716
+ version = "1.1.2"
1373
1717
  source = "registry+https://github.com/rust-lang/crates.io-index"
1374
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
1718
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
1375
1719
  dependencies = [
1376
1720
  "crc32fast",
1721
+ "libz-rs-sys",
1377
1722
  "miniz_oxide",
1378
1723
  ]
1379
1724
 
@@ -1385,7 +1730,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1385
1730
  dependencies = [
1386
1731
  "futures-core",
1387
1732
  "futures-sink",
1388
- "spin",
1733
+ "spin 0.9.8",
1389
1734
  ]
1390
1735
 
1391
1736
  [[package]]
@@ -1482,7 +1827,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1482
1827
  dependencies = [
1483
1828
  "proc-macro2",
1484
1829
  "quote",
1485
- "syn",
1830
+ "syn 2.0.104",
1486
1831
  ]
1487
1832
 
1488
1833
  [[package]]
@@ -1544,7 +1889,7 @@ dependencies = [
1544
1889
  "cfg-if",
1545
1890
  "js-sys",
1546
1891
  "libc",
1547
- "wasi 0.11.0+wasi-snapshot-preview1",
1892
+ "wasi 0.11.1+wasi-snapshot-preview1",
1548
1893
  "wasm-bindgen",
1549
1894
  ]
1550
1895
 
@@ -1576,9 +1921,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1576
1921
 
1577
1922
  [[package]]
1578
1923
  name = "h2"
1579
- version = "0.3.26"
1924
+ version = "0.3.27"
1580
1925
  source = "registry+https://github.com/rust-lang/crates.io-index"
1581
- checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1926
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1582
1927
  dependencies = [
1583
1928
  "bytes",
1584
1929
  "fnv",
@@ -1586,7 +1931,7 @@ dependencies = [
1586
1931
  "futures-sink",
1587
1932
  "futures-util",
1588
1933
  "http 0.2.12",
1589
- "indexmap 2.9.0",
1934
+ "indexmap 2.10.0",
1590
1935
  "slab",
1591
1936
  "tokio",
1592
1937
  "tokio-util",
@@ -1595,9 +1940,9 @@ dependencies = [
1595
1940
 
1596
1941
  [[package]]
1597
1942
  name = "h2"
1598
- version = "0.4.10"
1943
+ version = "0.4.12"
1599
1944
  source = "registry+https://github.com/rust-lang/crates.io-index"
1600
- checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
1945
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1601
1946
  dependencies = [
1602
1947
  "atomic-waker",
1603
1948
  "bytes",
@@ -1605,7 +1950,7 @@ dependencies = [
1605
1950
  "futures-core",
1606
1951
  "futures-sink",
1607
1952
  "http 1.3.1",
1608
- "indexmap 2.9.0",
1953
+ "indexmap 2.10.0",
1609
1954
  "slab",
1610
1955
  "tokio",
1611
1956
  "tokio-util",
@@ -1620,6 +1965,7 @@ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
1620
1965
  dependencies = [
1621
1966
  "cfg-if",
1622
1967
  "crunchy",
1968
+ "num-traits",
1623
1969
  ]
1624
1970
 
1625
1971
  [[package]]
@@ -1633,25 +1979,37 @@ name = "hashbrown"
1633
1979
  version = "0.14.5"
1634
1980
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
1981
  checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1982
+ dependencies = [
1983
+ "ahash",
1984
+ ]
1636
1985
 
1637
1986
  [[package]]
1638
1987
  name = "hashbrown"
1639
- version = "0.15.3"
1988
+ version = "0.15.4"
1640
1989
  source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
1990
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1642
1991
  dependencies = [
1643
1992
  "allocator-api2",
1644
1993
  "equivalent",
1645
1994
  "foldhash",
1646
1995
  ]
1647
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
+
1648
2006
  [[package]]
1649
2007
  name = "hashlink"
1650
2008
  version = "0.10.0"
1651
2009
  source = "registry+https://github.com/rust-lang/crates.io-index"
1652
2010
  checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1653
2011
  dependencies = [
1654
- "hashbrown 0.15.3",
2012
+ "hashbrown 0.15.4",
1655
2013
  ]
1656
2014
 
1657
2015
  [[package]]
@@ -1662,15 +2020,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1662
2020
 
1663
2021
  [[package]]
1664
2022
  name = "hermit-abi"
1665
- version = "0.3.9"
1666
- source = "registry+https://github.com/rust-lang/crates.io-index"
1667
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1668
-
1669
- [[package]]
1670
- name = "hermit-abi"
1671
- version = "0.5.1"
2023
+ version = "0.5.2"
1672
2024
  source = "registry+https://github.com/rust-lang/crates.io-index"
1673
- checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08"
2025
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1674
2026
 
1675
2027
  [[package]]
1676
2028
  name = "hex"
@@ -1795,7 +2147,7 @@ dependencies = [
1795
2147
  "httpdate",
1796
2148
  "itoa",
1797
2149
  "pin-project-lite",
1798
- "socket2",
2150
+ "socket2 0.5.10",
1799
2151
  "tokio",
1800
2152
  "tower-service",
1801
2153
  "tracing",
@@ -1811,7 +2163,7 @@ dependencies = [
1811
2163
  "bytes",
1812
2164
  "futures-channel",
1813
2165
  "futures-util",
1814
- "h2 0.4.10",
2166
+ "h2 0.4.12",
1815
2167
  "http 1.3.1",
1816
2168
  "http-body 1.0.1",
1817
2169
  "httparse",
@@ -1841,20 +2193,19 @@ dependencies = [
1841
2193
 
1842
2194
  [[package]]
1843
2195
  name = "hyper-rustls"
1844
- version = "0.27.5"
2196
+ version = "0.27.7"
1845
2197
  source = "registry+https://github.com/rust-lang/crates.io-index"
1846
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
2198
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1847
2199
  dependencies = [
1848
- "futures-util",
1849
2200
  "http 1.3.1",
1850
2201
  "hyper 1.6.0",
1851
2202
  "hyper-util",
1852
- "rustls 0.23.27",
2203
+ "rustls 0.23.31",
1853
2204
  "rustls-pki-types",
1854
2205
  "tokio",
1855
2206
  "tokio-rustls 0.26.2",
1856
2207
  "tower-service",
1857
- "webpki-roots 0.26.11",
2208
+ "webpki-roots 1.0.2",
1858
2209
  ]
1859
2210
 
1860
2211
  [[package]]
@@ -1871,19 +2222,23 @@ dependencies = [
1871
2222
 
1872
2223
  [[package]]
1873
2224
  name = "hyper-util"
1874
- version = "0.1.11"
2225
+ version = "0.1.16"
1875
2226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1876
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
2227
+ checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1877
2228
  dependencies = [
2229
+ "base64 0.22.1",
1878
2230
  "bytes",
1879
2231
  "futures-channel",
2232
+ "futures-core",
1880
2233
  "futures-util",
1881
2234
  "http 1.3.1",
1882
2235
  "http-body 1.0.1",
1883
2236
  "hyper 1.6.0",
2237
+ "ipnet",
1884
2238
  "libc",
2239
+ "percent-encoding",
1885
2240
  "pin-project-lite",
1886
- "socket2",
2241
+ "socket2 0.6.0",
1887
2242
  "tokio",
1888
2243
  "tower-service",
1889
2244
  "tracing",
@@ -1962,9 +2317,9 @@ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1962
2317
 
1963
2318
  [[package]]
1964
2319
  name = "icu_properties"
1965
- version = "2.0.0"
2320
+ version = "2.0.1"
1966
2321
  source = "registry+https://github.com/rust-lang/crates.io-index"
1967
- checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a"
2322
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1968
2323
  dependencies = [
1969
2324
  "displaydoc",
1970
2325
  "icu_collections",
@@ -1978,9 +2333,9 @@ dependencies = [
1978
2333
 
1979
2334
  [[package]]
1980
2335
  name = "icu_properties_data"
1981
- version = "2.0.0"
2336
+ version = "2.0.1"
1982
2337
  source = "registry+https://github.com/rust-lang/crates.io-index"
1983
- checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04"
2338
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1984
2339
 
1985
2340
  [[package]]
1986
2341
  name = "icu_provider"
@@ -2034,9 +2389,9 @@ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
2034
2389
 
2035
2390
  [[package]]
2036
2391
  name = "indenter"
2037
- version = "0.3.3"
2392
+ version = "0.3.4"
2038
2393
  source = "registry+https://github.com/rust-lang/crates.io-index"
2039
- checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2394
+ checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
2040
2395
 
2041
2396
  [[package]]
2042
2397
  name = "indexmap"
@@ -2051,12 +2406,12 @@ dependencies = [
2051
2406
 
2052
2407
  [[package]]
2053
2408
  name = "indexmap"
2054
- version = "2.9.0"
2409
+ version = "2.10.0"
2055
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2056
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
2411
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
2057
2412
  dependencies = [
2058
2413
  "equivalent",
2059
- "hashbrown 0.15.3",
2414
+ "hashbrown 0.15.4",
2060
2415
  "serde",
2061
2416
  ]
2062
2417
 
@@ -2066,19 +2421,55 @@ version = "2.0.6"
2066
2421
  source = "registry+https://github.com/rust-lang/crates.io-index"
2067
2422
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
2068
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
+
2069
2450
  [[package]]
2070
2451
  name = "ipnet"
2071
2452
  version = "2.11.0"
2072
2453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2073
2454
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2074
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
+
2075
2466
  [[package]]
2076
2467
  name = "is-terminal"
2077
2468
  version = "0.4.16"
2078
2469
  source = "registry+https://github.com/rust-lang/crates.io-index"
2079
2470
  checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
2080
2471
  dependencies = [
2081
- "hermit-abi 0.5.1",
2472
+ "hermit-abi",
2082
2473
  "libc",
2083
2474
  "windows-sys 0.59.0",
2084
2475
  ]
@@ -2216,7 +2607,7 @@ dependencies = [
2216
2607
  "tokio",
2217
2608
  "tokio-util",
2218
2609
  "tower 0.4.13",
2219
- "tower-http",
2610
+ "tower-http 0.4.4",
2220
2611
  "tracing",
2221
2612
  ]
2222
2613
 
@@ -2248,7 +2639,7 @@ version = "1.5.0"
2248
2639
  source = "registry+https://github.com/rust-lang/crates.io-index"
2249
2640
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2250
2641
  dependencies = [
2251
- "spin",
2642
+ "spin 0.9.8",
2252
2643
  ]
2253
2644
 
2254
2645
  [[package]]
@@ -2257,20 +2648,84 @@ version = "1.3.0"
2257
2648
  source = "registry+https://github.com/rust-lang/crates.io-index"
2258
2649
  checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2259
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
+
2260
2715
  [[package]]
2261
2716
  name = "libc"
2262
- version = "0.2.172"
2717
+ version = "0.2.174"
2263
2718
  source = "registry+https://github.com/rust-lang/crates.io-index"
2264
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2719
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2265
2720
 
2266
2721
  [[package]]
2267
2722
  name = "libloading"
2268
- version = "0.8.7"
2723
+ version = "0.8.8"
2269
2724
  source = "registry+https://github.com/rust-lang/crates.io-index"
2270
- checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
2725
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
2271
2726
  dependencies = [
2272
2727
  "cfg-if",
2273
- "windows-targets 0.53.0",
2728
+ "windows-targets 0.53.3",
2274
2729
  ]
2275
2730
 
2276
2731
  [[package]]
@@ -2291,16 +2746,19 @@ dependencies = [
2291
2746
  ]
2292
2747
 
2293
2748
  [[package]]
2294
- name = "linux-raw-sys"
2295
- version = "0.4.15"
2749
+ name = "libz-rs-sys"
2750
+ version = "0.5.1"
2296
2751
  source = "registry+https://github.com/rust-lang/crates.io-index"
2297
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2752
+ checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221"
2753
+ dependencies = [
2754
+ "zlib-rs",
2755
+ ]
2298
2756
 
2299
2757
  [[package]]
2300
2758
  name = "linux-raw-sys"
2301
- version = "0.9.4"
2759
+ version = "0.4.15"
2302
2760
  source = "registry+https://github.com/rust-lang/crates.io-index"
2303
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2761
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2304
2762
 
2305
2763
  [[package]]
2306
2764
  name = "litemap"
@@ -2327,9 +2785,9 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2327
2785
 
2328
2786
  [[package]]
2329
2787
  name = "lock_api"
2330
- version = "0.4.12"
2788
+ version = "0.4.13"
2331
2789
  source = "registry+https://github.com/rust-lang/crates.io-index"
2332
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2790
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2333
2791
  dependencies = [
2334
2792
  "autocfg",
2335
2793
  "scopeguard",
@@ -2347,6 +2805,15 @@ version = "0.1.2"
2347
2805
  source = "registry+https://github.com/rust-lang/crates.io-index"
2348
2806
  checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2349
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
+
2350
2817
  [[package]]
2351
2818
  name = "matchers"
2352
2819
  version = "0.1.0"
@@ -2368,9 +2835,9 @@ dependencies = [
2368
2835
 
2369
2836
  [[package]]
2370
2837
  name = "memchr"
2371
- version = "2.7.4"
2838
+ version = "2.7.5"
2372
2839
  source = "registry+https://github.com/rust-lang/crates.io-index"
2373
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2840
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2374
2841
 
2375
2842
  [[package]]
2376
2843
  name = "memoffset"
@@ -2387,6 +2854,16 @@ version = "0.3.17"
2387
2854
  source = "registry+https://github.com/rust-lang/crates.io-index"
2388
2855
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2389
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
+
2390
2867
  [[package]]
2391
2868
  name = "minimal-lexical"
2392
2869
  version = "0.2.1"
@@ -2395,23 +2872,23 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2395
2872
 
2396
2873
  [[package]]
2397
2874
  name = "miniz_oxide"
2398
- version = "0.8.8"
2875
+ version = "0.8.9"
2399
2876
  source = "registry+https://github.com/rust-lang/crates.io-index"
2400
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2877
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2401
2878
  dependencies = [
2402
2879
  "adler2",
2403
2880
  ]
2404
2881
 
2405
2882
  [[package]]
2406
2883
  name = "mio"
2407
- version = "1.0.3"
2884
+ version = "1.0.4"
2408
2885
  source = "registry+https://github.com/rust-lang/crates.io-index"
2409
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2886
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2410
2887
  dependencies = [
2411
2888
  "libc",
2412
2889
  "log",
2413
- "wasi 0.11.0+wasi-snapshot-preview1",
2414
- "windows-sys 0.52.0",
2890
+ "wasi 0.11.1+wasi-snapshot-preview1",
2891
+ "windows-sys 0.59.0",
2415
2892
  ]
2416
2893
 
2417
2894
  [[package]]
@@ -2420,6 +2897,15 @@ version = "0.1.0"
2420
2897
  source = "registry+https://github.com/rust-lang/crates.io-index"
2421
2898
  checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
2422
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
+
2423
2909
  [[package]]
2424
2910
  name = "nom"
2425
2911
  version = "7.1.3"
@@ -2440,6 +2926,30 @@ dependencies = [
2440
2926
  "winapi",
2441
2927
  ]
2442
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
+
2443
2953
  [[package]]
2444
2954
  name = "num-bigint-dig"
2445
2955
  version = "0.8.4"
@@ -2457,12 +2967,32 @@ dependencies = [
2457
2967
  "zeroize",
2458
2968
  ]
2459
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
+
2460
2979
  [[package]]
2461
2980
  name = "num-conv"
2462
2981
  version = "0.1.0"
2463
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2464
2983
  checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2465
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
+
2466
2996
  [[package]]
2467
2997
  name = "num-integer"
2468
2998
  version = "0.1.46"
@@ -2483,6 +3013,17 @@ dependencies = [
2483
3013
  "num-traits",
2484
3014
  ]
2485
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
+
2486
3027
  [[package]]
2487
3028
  name = "num-traits"
2488
3029
  version = "0.2.19"
@@ -2495,11 +3036,11 @@ dependencies = [
2495
3036
 
2496
3037
  [[package]]
2497
3038
  name = "num_cpus"
2498
- version = "1.16.0"
3039
+ version = "1.17.0"
2499
3040
  source = "registry+https://github.com/rust-lang/crates.io-index"
2500
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
3041
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2501
3042
  dependencies = [
2502
- "hermit-abi 0.3.9",
3043
+ "hermit-abi",
2503
3044
  "libc",
2504
3045
  ]
2505
3046
 
@@ -2512,11 +3053,23 @@ dependencies = [
2512
3053
  "memchr",
2513
3054
  ]
2514
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
+
2515
3065
  [[package]]
2516
3066
  name = "once_cell"
2517
3067
  version = "1.21.3"
2518
3068
  source = "registry+https://github.com/rust-lang/crates.io-index"
2519
3069
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
3070
+ dependencies = [
3071
+ "portable-atomic",
3072
+ ]
2520
3073
 
2521
3074
  [[package]]
2522
3075
  name = "oorandom"
@@ -2664,9 +3217,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2664
3217
 
2665
3218
  [[package]]
2666
3219
  name = "owo-colors"
2667
- version = "4.2.0"
3220
+ version = "4.2.2"
2668
3221
  source = "registry+https://github.com/rust-lang/crates.io-index"
2669
- checksum = "1036865bb9422d3300cf723f657c2851d0e9ab12567854b1f4eba3d77decf564"
3222
+ checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
2670
3223
 
2671
3224
  [[package]]
2672
3225
  name = "parking"
@@ -2676,9 +3229,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2676
3229
 
2677
3230
  [[package]]
2678
3231
  name = "parking_lot"
2679
- version = "0.12.3"
3232
+ version = "0.12.4"
2680
3233
  source = "registry+https://github.com/rust-lang/crates.io-index"
2681
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
3234
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2682
3235
  dependencies = [
2683
3236
  "lock_api",
2684
3237
  "parking_lot_core",
@@ -2686,9 +3239,9 @@ dependencies = [
2686
3239
 
2687
3240
  [[package]]
2688
3241
  name = "parking_lot_core"
2689
- version = "0.9.10"
3242
+ version = "0.9.11"
2690
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
2691
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
3244
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2692
3245
  dependencies = [
2693
3246
  "cfg-if",
2694
3247
  "libc",
@@ -2697,6 +3250,45 @@ dependencies = [
2697
3250
  "windows-targets 0.52.6",
2698
3251
  ]
2699
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
+
2700
3292
  [[package]]
2701
3293
  name = "pathdiff"
2702
3294
  version = "0.2.3"
@@ -2730,9 +3322,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2730
3322
 
2731
3323
  [[package]]
2732
3324
  name = "pest"
2733
- version = "2.8.0"
3325
+ version = "2.8.1"
2734
3326
  source = "registry+https://github.com/rust-lang/crates.io-index"
2735
- checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
3327
+ checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
2736
3328
  dependencies = [
2737
3329
  "memchr",
2738
3330
  "thiserror 2.0.12",
@@ -2741,9 +3333,9 @@ dependencies = [
2741
3333
 
2742
3334
  [[package]]
2743
3335
  name = "pest_derive"
2744
- version = "2.8.0"
3336
+ version = "2.8.1"
2745
3337
  source = "registry+https://github.com/rust-lang/crates.io-index"
2746
- checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
3338
+ checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
2747
3339
  dependencies = [
2748
3340
  "pest",
2749
3341
  "pest_generator",
@@ -2751,28 +3343,37 @@ dependencies = [
2751
3343
 
2752
3344
  [[package]]
2753
3345
  name = "pest_generator"
2754
- version = "2.8.0"
3346
+ version = "2.8.1"
2755
3347
  source = "registry+https://github.com/rust-lang/crates.io-index"
2756
- checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
3348
+ checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
2757
3349
  dependencies = [
2758
3350
  "pest",
2759
3351
  "pest_meta",
2760
3352
  "proc-macro2",
2761
3353
  "quote",
2762
- "syn",
3354
+ "syn 2.0.104",
2763
3355
  ]
2764
3356
 
2765
3357
  [[package]]
2766
3358
  name = "pest_meta"
2767
- version = "2.8.0"
3359
+ version = "2.8.1"
2768
3360
  source = "registry+https://github.com/rust-lang/crates.io-index"
2769
- checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
3361
+ checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
2770
3362
  dependencies = [
2771
- "once_cell",
2772
3363
  "pest",
2773
3364
  "sha2",
2774
3365
  ]
2775
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
+
2776
3377
  [[package]]
2777
3378
  name = "pin-project"
2778
3379
  version = "1.1.10"
@@ -2790,7 +3391,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2790
3391
  dependencies = [
2791
3392
  "proc-macro2",
2792
3393
  "quote",
2793
- "syn",
3394
+ "syn 2.0.104",
2794
3395
  ]
2795
3396
 
2796
3397
  [[package]]
@@ -2862,9 +3463,9 @@ dependencies = [
2862
3463
 
2863
3464
  [[package]]
2864
3465
  name = "portable-atomic"
2865
- version = "1.11.0"
3466
+ version = "1.11.1"
2866
3467
  source = "registry+https://github.com/rust-lang/crates.io-index"
2867
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
3468
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2868
3469
 
2869
3470
  [[package]]
2870
3471
  name = "potential_utf"
@@ -2892,12 +3493,12 @@ dependencies = [
2892
3493
 
2893
3494
  [[package]]
2894
3495
  name = "prettyplease"
2895
- version = "0.2.32"
3496
+ version = "0.2.36"
2896
3497
  source = "registry+https://github.com/rust-lang/crates.io-index"
2897
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
3498
+ checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
2898
3499
  dependencies = [
2899
3500
  "proc-macro2",
2900
- "syn",
3501
+ "syn 2.0.104",
2901
3502
  ]
2902
3503
 
2903
3504
  [[package]]
@@ -2986,7 +3587,7 @@ checksum = "cf103ba4062fbb1e8022d9ed9b9830fbab074b2db0a0496c78e45a62f4330bcd"
2986
3587
  dependencies = [
2987
3588
  "proc-macro2",
2988
3589
  "quote",
2989
- "syn",
3590
+ "syn 2.0.104",
2990
3591
  ]
2991
3592
 
2992
3593
  [[package]]
@@ -3018,7 +3619,7 @@ dependencies = [
3018
3619
  "proc-macro2",
3019
3620
  "pyo3-macros-backend",
3020
3621
  "quote",
3021
- "syn",
3622
+ "syn 2.0.104",
3022
3623
  ]
3023
3624
 
3024
3625
  [[package]]
@@ -3031,12 +3632,12 @@ dependencies = [
3031
3632
  "proc-macro2",
3032
3633
  "pyo3-build-config",
3033
3634
  "quote",
3034
- "syn",
3635
+ "syn 2.0.104",
3035
3636
  ]
3036
3637
 
3037
3638
  [[package]]
3038
3639
  name = "python-auditor"
3039
- version = "0.9.3"
3640
+ version = "0.10.0"
3040
3641
  dependencies = [
3041
3642
  "anyhow",
3042
3643
  "auditor",
@@ -3068,7 +3669,7 @@ checksum = "f71ee38b42f8459a88d3362be6f9b841ad2d5421844f61eb1c59c11bff3ac14a"
3068
3669
  dependencies = [
3069
3670
  "proc-macro2",
3070
3671
  "quote",
3071
- "syn",
3672
+ "syn 2.0.104",
3072
3673
  ]
3073
3674
 
3074
3675
  [[package]]
@@ -3083,8 +3684,8 @@ dependencies = [
3083
3684
  "quinn-proto",
3084
3685
  "quinn-udp",
3085
3686
  "rustc-hash 2.1.1",
3086
- "rustls 0.23.27",
3087
- "socket2",
3687
+ "rustls 0.23.31",
3688
+ "socket2 0.5.10",
3088
3689
  "thiserror 2.0.12",
3089
3690
  "tokio",
3090
3691
  "tracing",
@@ -3100,10 +3701,10 @@ dependencies = [
3100
3701
  "bytes",
3101
3702
  "getrandom 0.3.3",
3102
3703
  "lru-slab",
3103
- "rand 0.9.1",
3704
+ "rand 0.9.2",
3104
3705
  "ring",
3105
3706
  "rustc-hash 2.1.1",
3106
- "rustls 0.23.27",
3707
+ "rustls 0.23.31",
3107
3708
  "rustls-pki-types",
3108
3709
  "slab",
3109
3710
  "thiserror 2.0.12",
@@ -3114,14 +3715,14 @@ dependencies = [
3114
3715
 
3115
3716
  [[package]]
3116
3717
  name = "quinn-udp"
3117
- version = "0.5.12"
3718
+ version = "0.5.13"
3118
3719
  source = "registry+https://github.com/rust-lang/crates.io-index"
3119
- checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
3720
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
3120
3721
  dependencies = [
3121
3722
  "cfg_aliases",
3122
3723
  "libc",
3123
3724
  "once_cell",
3124
- "socket2",
3725
+ "socket2 0.5.10",
3125
3726
  "tracing",
3126
3727
  "windows-sys 0.59.0",
3127
3728
  ]
@@ -3137,9 +3738,9 @@ dependencies = [
3137
3738
 
3138
3739
  [[package]]
3139
3740
  name = "r-efi"
3140
- version = "5.2.0"
3741
+ version = "5.3.0"
3141
3742
  source = "registry+https://github.com/rust-lang/crates.io-index"
3142
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3743
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3143
3744
 
3144
3745
  [[package]]
3145
3746
  name = "rand"
@@ -3154,9 +3755,9 @@ dependencies = [
3154
3755
 
3155
3756
  [[package]]
3156
3757
  name = "rand"
3157
- version = "0.9.1"
3758
+ version = "0.9.2"
3158
3759
  source = "registry+https://github.com/rust-lang/crates.io-index"
3159
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
3760
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3160
3761
  dependencies = [
3161
3762
  "rand_chacha 0.9.0",
3162
3763
  "rand_core 0.9.3",
@@ -3232,13 +3833,33 @@ dependencies = [
3232
3833
 
3233
3834
  [[package]]
3234
3835
  name = "redox_syscall"
3235
- version = "0.5.12"
3836
+ version = "0.5.17"
3236
3837
  source = "registry+https://github.com/rust-lang/crates.io-index"
3237
- checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
3838
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
3238
3839
  dependencies = [
3239
3840
  "bitflags",
3240
3841
  ]
3241
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
+
3242
3863
  [[package]]
3243
3864
  name = "regex"
3244
3865
  version = "1.11.1"
@@ -3291,9 +3912,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3291
3912
 
3292
3913
  [[package]]
3293
3914
  name = "reqwest"
3294
- version = "0.12.15"
3915
+ version = "0.12.22"
3295
3916
  source = "registry+https://github.com/rust-lang/crates.io-index"
3296
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3917
+ checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
3297
3918
  dependencies = [
3298
3919
  "base64 0.22.1",
3299
3920
  "bytes",
@@ -3304,18 +3925,14 @@ dependencies = [
3304
3925
  "http-body 1.0.1",
3305
3926
  "http-body-util",
3306
3927
  "hyper 1.6.0",
3307
- "hyper-rustls 0.27.5",
3928
+ "hyper-rustls 0.27.7",
3308
3929
  "hyper-util",
3309
- "ipnet",
3310
3930
  "js-sys",
3311
3931
  "log",
3312
- "mime",
3313
- "once_cell",
3314
3932
  "percent-encoding",
3315
3933
  "pin-project-lite",
3316
3934
  "quinn",
3317
- "rustls 0.23.27",
3318
- "rustls-pemfile 2.2.0",
3935
+ "rustls 0.23.31",
3319
3936
  "rustls-pki-types",
3320
3937
  "serde",
3321
3938
  "serde_json",
@@ -3325,31 +3942,61 @@ dependencies = [
3325
3942
  "tokio-rustls 0.26.2",
3326
3943
  "tokio-util",
3327
3944
  "tower 0.5.2",
3945
+ "tower-http 0.6.6",
3328
3946
  "tower-service",
3329
3947
  "url",
3330
3948
  "wasm-bindgen",
3331
3949
  "wasm-bindgen-futures",
3332
3950
  "wasm-streams",
3333
3951
  "web-sys",
3334
- "webpki-roots 0.26.11",
3335
- "windows-registry",
3952
+ "webpki-roots 1.0.2",
3953
+ ]
3954
+
3955
+ [[package]]
3956
+ name = "reqwest-streams"
3957
+ version = "0.9.0"
3958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3959
+ checksum = "a7c5c3436b21f323e34b937f18b090a99c459b5065c710bee637645ebc703532"
3960
+ dependencies = [
3961
+ "async-trait",
3962
+ "bytes",
3963
+ "cargo-husky",
3964
+ "futures",
3965
+ "reqwest",
3966
+ "serde",
3967
+ "serde_json",
3968
+ "tokio",
3969
+ "tokio-util",
3970
+ ]
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",
3336
3989
  ]
3337
3990
 
3338
3991
  [[package]]
3339
- name = "reqwest-streams"
3340
- version = "0.9.0"
3992
+ name = "rhai_codegen"
3993
+ version = "2.2.0"
3341
3994
  source = "registry+https://github.com/rust-lang/crates.io-index"
3342
- checksum = "a7c5c3436b21f323e34b937f18b090a99c459b5065c710bee637645ebc703532"
3995
+ checksum = "a5a11a05ee1ce44058fa3d5961d05194fdbe3ad6b40f904af764d81b86450e6b"
3343
3996
  dependencies = [
3344
- "async-trait",
3345
- "bytes",
3346
- "cargo-husky",
3347
- "futures",
3348
- "reqwest",
3349
- "serde",
3350
- "serde_json",
3351
- "tokio",
3352
- "tokio-util",
3997
+ "proc-macro2",
3998
+ "quote",
3999
+ "syn 2.0.104",
3353
4000
  ]
3354
4001
 
3355
4002
  [[package]]
@@ -3400,20 +4047,19 @@ dependencies = [
3400
4047
 
3401
4048
  [[package]]
3402
4049
  name = "rust-ini"
3403
- version = "0.21.1"
4050
+ version = "0.21.2"
3404
4051
  source = "registry+https://github.com/rust-lang/crates.io-index"
3405
- checksum = "4e310ef0e1b6eeb79169a1171daf9abcb87a2e17c03bee2c4bb100b55c75409f"
4052
+ checksum = "e7295b7ce3bf4806b419dc3420745998b447178b7005e2011947b38fc5aa6791"
3406
4053
  dependencies = [
3407
4054
  "cfg-if",
3408
4055
  "ordered-multimap",
3409
- "trim-in-place",
3410
4056
  ]
3411
4057
 
3412
4058
  [[package]]
3413
4059
  name = "rustc-demangle"
3414
- version = "0.1.24"
4060
+ version = "0.1.26"
3415
4061
  source = "registry+https://github.com/rust-lang/crates.io-index"
3416
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
4062
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3417
4063
 
3418
4064
  [[package]]
3419
4065
  name = "rustc-hash"
@@ -3428,28 +4074,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
4074
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3429
4075
 
3430
4076
  [[package]]
3431
- name = "rustix"
3432
- version = "0.38.44"
4077
+ name = "rustc_version"
4078
+ version = "0.4.1"
3433
4079
  source = "registry+https://github.com/rust-lang/crates.io-index"
3434
- checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
4080
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3435
4081
  dependencies = [
3436
- "bitflags",
3437
- "errno",
3438
- "libc",
3439
- "linux-raw-sys 0.4.15",
3440
- "windows-sys 0.59.0",
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",
3441
4092
  ]
3442
4093
 
3443
4094
  [[package]]
3444
4095
  name = "rustix"
3445
- version = "1.0.7"
4096
+ version = "0.38.44"
3446
4097
  source = "registry+https://github.com/rust-lang/crates.io-index"
3447
- checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
4098
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3448
4099
  dependencies = [
3449
4100
  "bitflags",
3450
4101
  "errno",
3451
4102
  "libc",
3452
- "linux-raw-sys 0.9.4",
4103
+ "linux-raw-sys",
3453
4104
  "windows-sys 0.59.0",
3454
4105
  ]
3455
4106
 
@@ -3467,16 +4118,16 @@ dependencies = [
3467
4118
 
3468
4119
  [[package]]
3469
4120
  name = "rustls"
3470
- version = "0.23.27"
4121
+ version = "0.23.31"
3471
4122
  source = "registry+https://github.com/rust-lang/crates.io-index"
3472
- checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
4123
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
3473
4124
  dependencies = [
3474
4125
  "aws-lc-rs",
3475
4126
  "log",
3476
4127
  "once_cell",
3477
4128
  "ring",
3478
4129
  "rustls-pki-types",
3479
- "rustls-webpki 0.103.3",
4130
+ "rustls-webpki 0.103.4",
3480
4131
  "subtle",
3481
4132
  "zeroize",
3482
4133
  ]
@@ -3533,9 +4184,9 @@ dependencies = [
3533
4184
 
3534
4185
  [[package]]
3535
4186
  name = "rustls-webpki"
3536
- version = "0.103.3"
4187
+ version = "0.103.4"
3537
4188
  source = "registry+https://github.com/rust-lang/crates.io-index"
3538
- checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
4189
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
3539
4190
  dependencies = [
3540
4191
  "aws-lc-rs",
3541
4192
  "ring",
@@ -3545,9 +4196,9 @@ dependencies = [
3545
4196
 
3546
4197
  [[package]]
3547
4198
  name = "rustversion"
3548
- version = "1.0.20"
4199
+ version = "1.0.21"
3549
4200
  source = "registry+https://github.com/rust-lang/crates.io-index"
3550
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
4201
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
3551
4202
 
3552
4203
  [[package]]
3553
4204
  name = "ryu"
@@ -3573,6 +4224,30 @@ dependencies = [
3573
4224
  "windows-sys 0.59.0",
3574
4225
  ]
3575
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
+
3576
4251
  [[package]]
3577
4252
  name = "scopeguard"
3578
4253
  version = "1.2.0"
@@ -3622,6 +4297,18 @@ dependencies = [
3622
4297
  "libc",
3623
4298
  ]
3624
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
+
3625
4312
  [[package]]
3626
4313
  name = "serde"
3627
4314
  version = "1.0.219"
@@ -3661,14 +4348,14 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3661
4348
  dependencies = [
3662
4349
  "proc-macro2",
3663
4350
  "quote",
3664
- "syn",
4351
+ "syn 2.0.104",
3665
4352
  ]
3666
4353
 
3667
4354
  [[package]]
3668
4355
  name = "serde_json"
3669
- version = "1.0.140"
4356
+ version = "1.0.142"
3670
4357
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
4358
+ checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
3672
4359
  dependencies = [
3673
4360
  "itoa",
3674
4361
  "memchr",
@@ -3691,9 +4378,9 @@ dependencies = [
3691
4378
 
3692
4379
  [[package]]
3693
4380
  name = "serde_spanned"
3694
- version = "0.6.8"
4381
+ version = "1.0.0"
3695
4382
  source = "registry+https://github.com/rust-lang/crates.io-index"
3696
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
4383
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
3697
4384
  dependencies = [
3698
4385
  "serde",
3699
4386
  ]
@@ -3712,15 +4399,17 @@ dependencies = [
3712
4399
 
3713
4400
  [[package]]
3714
4401
  name = "serde_with"
3715
- version = "3.12.0"
4402
+ version = "3.14.0"
3716
4403
  source = "registry+https://github.com/rust-lang/crates.io-index"
3717
- checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
4404
+ checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
3718
4405
  dependencies = [
3719
4406
  "base64 0.22.1",
3720
4407
  "chrono",
3721
4408
  "hex",
3722
4409
  "indexmap 1.9.3",
3723
- "indexmap 2.9.0",
4410
+ "indexmap 2.10.0",
4411
+ "schemars 0.9.0",
4412
+ "schemars 1.0.4",
3724
4413
  "serde",
3725
4414
  "serde_derive",
3726
4415
  "serde_json",
@@ -3730,14 +4419,14 @@ dependencies = [
3730
4419
 
3731
4420
  [[package]]
3732
4421
  name = "serde_with_macros"
3733
- version = "3.12.0"
4422
+ version = "3.14.0"
3734
4423
  source = "registry+https://github.com/rust-lang/crates.io-index"
3735
- checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
4424
+ checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
3736
4425
  dependencies = [
3737
4426
  "darling",
3738
4427
  "proc-macro2",
3739
4428
  "quote",
3740
- "syn",
4429
+ "syn 2.0.104",
3741
4430
  ]
3742
4431
 
3743
4432
  [[package]]
@@ -3746,7 +4435,7 @@ version = "0.9.34+deprecated"
3746
4435
  source = "registry+https://github.com/rust-lang/crates.io-index"
3747
4436
  checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3748
4437
  dependencies = [
3749
- "indexmap 2.9.0",
4438
+ "indexmap 2.10.0",
3750
4439
  "itoa",
3751
4440
  "ryu",
3752
4441
  "serde",
@@ -3798,9 +4487,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3798
4487
 
3799
4488
  [[package]]
3800
4489
  name = "signal-hook-registry"
3801
- version = "1.4.5"
4490
+ version = "1.4.6"
3802
4491
  source = "registry+https://github.com/rust-lang/crates.io-index"
3803
- checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
4492
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3804
4493
  dependencies = [
3805
4494
  "libc",
3806
4495
  ]
@@ -3815,34 +4504,71 @@ dependencies = [
3815
4504
  "rand_core 0.6.4",
3816
4505
  ]
3817
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
+
3818
4513
  [[package]]
3819
4514
  name = "slab"
3820
- 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"
3821
4522
  source = "registry+https://github.com/rust-lang/crates.io-index"
3822
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4523
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3823
4524
  dependencies = [
3824
- "autocfg",
4525
+ "serde",
3825
4526
  ]
3826
4527
 
3827
4528
  [[package]]
3828
- name = "smallvec"
3829
- version = "1.15.0"
4529
+ name = "smartstring"
4530
+ version = "1.0.1"
3830
4531
  source = "registry+https://github.com/rust-lang/crates.io-index"
3831
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
4532
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
3832
4533
  dependencies = [
4534
+ "autocfg",
3833
4535
  "serde",
4536
+ "static_assertions",
4537
+ "version_check",
3834
4538
  ]
3835
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
+
3836
4546
  [[package]]
3837
4547
  name = "socket2"
3838
- version = "0.5.9"
4548
+ version = "0.5.10"
3839
4549
  source = "registry+https://github.com/rust-lang/crates.io-index"
3840
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
4550
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3841
4551
  dependencies = [
3842
4552
  "libc",
3843
4553
  "windows-sys 0.52.0",
3844
4554
  ]
3845
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
+
3846
4572
  [[package]]
3847
4573
  name = "spin"
3848
4574
  version = "0.9.8"
@@ -3864,9 +4590,9 @@ dependencies = [
3864
4590
 
3865
4591
  [[package]]
3866
4592
  name = "sqlx"
3867
- version = "0.8.5"
4593
+ version = "0.8.6"
3868
4594
  source = "registry+https://github.com/rust-lang/crates.io-index"
3869
- checksum = "f3c3a85280daca669cfd3bcb68a337882a8bc57ec882f72c5d13a430613a738e"
4595
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
3870
4596
  dependencies = [
3871
4597
  "sqlx-core",
3872
4598
  "sqlx-macros",
@@ -3877,9 +4603,9 @@ dependencies = [
3877
4603
 
3878
4604
  [[package]]
3879
4605
  name = "sqlx-core"
3880
- version = "0.8.5"
4606
+ version = "0.8.6"
3881
4607
  source = "registry+https://github.com/rust-lang/crates.io-index"
3882
- checksum = "f743f2a3cea30a58cd479013f75550e879009e3a02f616f18ca699335aa248c3"
4608
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
3883
4609
  dependencies = [
3884
4610
  "base64 0.22.1",
3885
4611
  "bytes",
@@ -3892,14 +4618,14 @@ dependencies = [
3892
4618
  "futures-intrusive",
3893
4619
  "futures-io",
3894
4620
  "futures-util",
3895
- "hashbrown 0.15.3",
3896
- "hashlink",
3897
- "indexmap 2.9.0",
4621
+ "hashbrown 0.15.4",
4622
+ "hashlink 0.10.0",
4623
+ "indexmap 2.10.0",
3898
4624
  "log",
3899
4625
  "memchr",
3900
4626
  "once_cell",
3901
4627
  "percent-encoding",
3902
- "rustls 0.23.27",
4628
+ "rustls 0.23.31",
3903
4629
  "serde",
3904
4630
  "serde_json",
3905
4631
  "sha2",
@@ -3915,22 +4641,22 @@ dependencies = [
3915
4641
 
3916
4642
  [[package]]
3917
4643
  name = "sqlx-macros"
3918
- version = "0.8.5"
4644
+ version = "0.8.6"
3919
4645
  source = "registry+https://github.com/rust-lang/crates.io-index"
3920
- checksum = "7f4200e0fde19834956d4252347c12a083bdcb237d7a1a1446bffd8768417dce"
4646
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
3921
4647
  dependencies = [
3922
4648
  "proc-macro2",
3923
4649
  "quote",
3924
4650
  "sqlx-core",
3925
4651
  "sqlx-macros-core",
3926
- "syn",
4652
+ "syn 2.0.104",
3927
4653
  ]
3928
4654
 
3929
4655
  [[package]]
3930
4656
  name = "sqlx-macros-core"
3931
- version = "0.8.5"
4657
+ version = "0.8.6"
3932
4658
  source = "registry+https://github.com/rust-lang/crates.io-index"
3933
- checksum = "882ceaa29cade31beca7129b6beeb05737f44f82dbe2a9806ecea5a7093d00b7"
4659
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
3934
4660
  dependencies = [
3935
4661
  "dotenvy",
3936
4662
  "either",
@@ -3946,17 +4672,16 @@ dependencies = [
3946
4672
  "sqlx-mysql",
3947
4673
  "sqlx-postgres",
3948
4674
  "sqlx-sqlite",
3949
- "syn",
3950
- "tempfile",
4675
+ "syn 2.0.104",
3951
4676
  "tokio",
3952
4677
  "url",
3953
4678
  ]
3954
4679
 
3955
4680
  [[package]]
3956
4681
  name = "sqlx-mysql"
3957
- version = "0.8.5"
4682
+ version = "0.8.6"
3958
4683
  source = "registry+https://github.com/rust-lang/crates.io-index"
3959
- checksum = "0afdd3aa7a629683c2d750c2df343025545087081ab5942593a5288855b1b7a7"
4684
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
3960
4685
  dependencies = [
3961
4686
  "atoi",
3962
4687
  "base64 0.22.1",
@@ -3998,9 +4723,9 @@ dependencies = [
3998
4723
 
3999
4724
  [[package]]
4000
4725
  name = "sqlx-postgres"
4001
- version = "0.8.5"
4726
+ version = "0.8.6"
4002
4727
  source = "registry+https://github.com/rust-lang/crates.io-index"
4003
- checksum = "a0bedbe1bbb5e2615ef347a5e9d8cd7680fb63e77d9dafc0f29be15e53f1ebe6"
4728
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
4004
4729
  dependencies = [
4005
4730
  "atoi",
4006
4731
  "base64 0.22.1",
@@ -4037,9 +4762,9 @@ dependencies = [
4037
4762
 
4038
4763
  [[package]]
4039
4764
  name = "sqlx-sqlite"
4040
- version = "0.8.5"
4765
+ version = "0.8.6"
4041
4766
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
- checksum = "c26083e9a520e8eb87a06b12347679b142dc2ea29e6e409f805644a7a979a5bc"
4767
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
4043
4768
  dependencies = [
4044
4769
  "atoi",
4045
4770
  "chrono",
@@ -4067,6 +4792,12 @@ version = "1.2.0"
4067
4792
  source = "registry+https://github.com/rust-lang/crates.io-index"
4068
4793
  checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
4069
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
+
4070
4801
  [[package]]
4071
4802
  name = "stringprep"
4072
4803
  version = "0.1.5"
@@ -4092,9 +4823,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
4092
4823
 
4093
4824
  [[package]]
4094
4825
  name = "syn"
4095
- 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"
4096
4838
  source = "registry+https://github.com/rust-lang/crates.io-index"
4097
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
4839
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
4098
4840
  dependencies = [
4099
4841
  "proc-macro2",
4100
4842
  "quote",
@@ -4110,6 +4852,18 @@ dependencies = [
4110
4852
  "futures-core",
4111
4853
  ]
4112
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
+
4113
4867
  [[package]]
4114
4868
  name = "synstructure"
4115
4869
  version = "0.13.2"
@@ -4118,7 +4872,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
4118
4872
  dependencies = [
4119
4873
  "proc-macro2",
4120
4874
  "quote",
4121
- "syn",
4875
+ "syn 2.0.104",
4122
4876
  ]
4123
4877
 
4124
4878
  [[package]]
@@ -4128,16 +4882,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
4882
  checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
4129
4883
 
4130
4884
  [[package]]
4131
- name = "tempfile"
4132
- version = "3.20.0"
4885
+ name = "thin-vec"
4886
+ version = "0.2.14"
4133
4887
  source = "registry+https://github.com/rust-lang/crates.io-index"
4134
- checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
4888
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
4135
4889
  dependencies = [
4136
- "fastrand",
4137
- "getrandom 0.3.3",
4138
- "once_cell",
4139
- "rustix 1.0.7",
4140
- "windows-sys 0.59.0",
4890
+ "serde",
4141
4891
  ]
4142
4892
 
4143
4893
  [[package]]
@@ -4166,7 +4916,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
4166
4916
  dependencies = [
4167
4917
  "proc-macro2",
4168
4918
  "quote",
4169
- "syn",
4919
+ "syn 2.0.104",
4170
4920
  ]
4171
4921
 
4172
4922
  [[package]]
@@ -4177,17 +4927,27 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4177
4927
  dependencies = [
4178
4928
  "proc-macro2",
4179
4929
  "quote",
4180
- "syn",
4930
+ "syn 2.0.104",
4181
4931
  ]
4182
4932
 
4183
4933
  [[package]]
4184
4934
  name = "thread_local"
4185
- version = "1.1.8"
4935
+ version = "1.1.9"
4186
4936
  source = "registry+https://github.com/rust-lang/crates.io-index"
4187
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
4937
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
4188
4938
  dependencies = [
4189
4939
  "cfg-if",
4190
- "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",
4191
4951
  ]
4192
4952
 
4193
4953
  [[package]]
@@ -4267,27 +5027,44 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4267
5027
 
4268
5028
  [[package]]
4269
5029
  name = "tokio"
4270
- version = "1.45.0"
5030
+ version = "1.47.1"
4271
5031
  source = "registry+https://github.com/rust-lang/crates.io-index"
4272
- checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
5032
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
4273
5033
  dependencies = [
4274
5034
  "backtrace",
4275
5035
  "bytes",
5036
+ "io-uring",
4276
5037
  "libc",
4277
5038
  "mio",
4278
5039
  "parking_lot",
4279
5040
  "pin-project-lite",
4280
5041
  "signal-hook-registry",
4281
- "socket2",
5042
+ "slab",
5043
+ "socket2 0.6.0",
4282
5044
  "tokio-macros",
4283
- "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",
4284
5061
  ]
4285
5062
 
4286
5063
  [[package]]
4287
5064
  name = "tokio-io-timeout"
4288
- version = "1.2.0"
5065
+ version = "1.2.1"
4289
5066
  source = "registry+https://github.com/rust-lang/crates.io-index"
4290
- checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
5067
+ checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
4291
5068
  dependencies = [
4292
5069
  "pin-project-lite",
4293
5070
  "tokio",
@@ -4301,7 +5078,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4301
5078
  dependencies = [
4302
5079
  "proc-macro2",
4303
5080
  "quote",
4304
- "syn",
5081
+ "syn 2.0.104",
4305
5082
  ]
4306
5083
 
4307
5084
  [[package]]
@@ -4320,7 +5097,7 @@ version = "0.26.2"
4320
5097
  source = "registry+https://github.com/rust-lang/crates.io-index"
4321
5098
  checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
4322
5099
  dependencies = [
4323
- "rustls 0.23.27",
5100
+ "rustls 0.23.31",
4324
5101
  "tokio",
4325
5102
  ]
4326
5103
 
@@ -4337,9 +5114,9 @@ dependencies = [
4337
5114
 
4338
5115
  [[package]]
4339
5116
  name = "tokio-util"
4340
- version = "0.7.15"
5117
+ version = "0.7.16"
4341
5118
  source = "registry+https://github.com/rust-lang/crates.io-index"
4342
- checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
5119
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
4343
5120
  dependencies = [
4344
5121
  "bytes",
4345
5122
  "futures-core",
@@ -4350,35 +5127,32 @@ dependencies = [
4350
5127
 
4351
5128
  [[package]]
4352
5129
  name = "toml"
4353
- version = "0.8.22"
5130
+ version = "0.9.5"
4354
5131
  source = "registry+https://github.com/rust-lang/crates.io-index"
4355
- checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
5132
+ checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
4356
5133
  dependencies = [
4357
5134
  "serde",
4358
5135
  "serde_spanned",
4359
5136
  "toml_datetime",
4360
- "toml_edit",
5137
+ "toml_parser",
5138
+ "winnow",
4361
5139
  ]
4362
5140
 
4363
5141
  [[package]]
4364
5142
  name = "toml_datetime"
4365
- version = "0.6.9"
5143
+ version = "0.7.0"
4366
5144
  source = "registry+https://github.com/rust-lang/crates.io-index"
4367
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
5145
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
4368
5146
  dependencies = [
4369
5147
  "serde",
4370
5148
  ]
4371
5149
 
4372
5150
  [[package]]
4373
- name = "toml_edit"
4374
- version = "0.22.26"
5151
+ name = "toml_parser"
5152
+ version = "1.0.2"
4375
5153
  source = "registry+https://github.com/rust-lang/crates.io-index"
4376
- checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
5154
+ checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10"
4377
5155
  dependencies = [
4378
- "indexmap 2.9.0",
4379
- "serde",
4380
- "serde_spanned",
4381
- "toml_datetime",
4382
5156
  "winnow",
4383
5157
  ]
4384
5158
 
@@ -4435,6 +5209,24 @@ dependencies = [
4435
5209
  "tracing",
4436
5210
  ]
4437
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
+
4438
5230
  [[package]]
4439
5231
  name = "tower-layer"
4440
5232
  version = "0.3.3"
@@ -4461,9 +5253,9 @@ dependencies = [
4461
5253
 
4462
5254
  [[package]]
4463
5255
  name = "tracing-actix-web"
4464
- version = "0.7.18"
5256
+ version = "0.7.19"
4465
5257
  source = "registry+https://github.com/rust-lang/crates.io-index"
4466
- checksum = "2340b7722695166c7fc9b3e3cd1166e7c74fedb9075b8f0c74d3822d2e41caf5"
5258
+ checksum = "5360edd490ec8dee9fedfc6a9fd83ac2f01b3e1996e3261b9ad18a61971fe064"
4467
5259
  dependencies = [
4468
5260
  "actix-web",
4469
5261
  "mutually_exclusive_features",
@@ -4474,13 +5266,13 @@ dependencies = [
4474
5266
 
4475
5267
  [[package]]
4476
5268
  name = "tracing-attributes"
4477
- version = "0.1.28"
5269
+ version = "0.1.30"
4478
5270
  source = "registry+https://github.com/rust-lang/crates.io-index"
4479
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
5271
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4480
5272
  dependencies = [
4481
5273
  "proc-macro2",
4482
5274
  "quote",
4483
- "syn",
5275
+ "syn 2.0.104",
4484
5276
  ]
4485
5277
 
4486
5278
  [[package]]
@@ -4503,9 +5295,9 @@ dependencies = [
4503
5295
 
4504
5296
  [[package]]
4505
5297
  name = "tracing-core"
4506
- version = "0.1.33"
5298
+ version = "0.1.34"
4507
5299
  source = "registry+https://github.com/rust-lang/crates.io-index"
4508
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
5300
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4509
5301
  dependencies = [
4510
5302
  "once_cell",
4511
5303
  "valuable",
@@ -4561,18 +5353,18 @@ dependencies = [
4561
5353
  "tracing-log 0.2.0",
4562
5354
  ]
4563
5355
 
4564
- [[package]]
4565
- name = "trim-in-place"
4566
- version = "0.1.7"
4567
- source = "registry+https://github.com/rust-lang/crates.io-index"
4568
- checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc"
4569
-
4570
5356
  [[package]]
4571
5357
  name = "try-lock"
4572
5358
  version = "0.2.5"
4573
5359
  source = "registry+https://github.com/rust-lang/crates.io-index"
4574
5360
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4575
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
+
4576
5368
  [[package]]
4577
5369
  name = "typenum"
4578
5370
  version = "1.18.0"
@@ -4668,11 +5460,13 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4668
5460
 
4669
5461
  [[package]]
4670
5462
  name = "uuid"
4671
- version = "1.16.0"
5463
+ version = "1.17.0"
4672
5464
  source = "registry+https://github.com/rust-lang/crates.io-index"
4673
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
5465
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
4674
5466
  dependencies = [
4675
5467
  "getrandom 0.3.3",
5468
+ "js-sys",
5469
+ "wasm-bindgen",
4676
5470
  ]
4677
5471
 
4678
5472
  [[package]]
@@ -4714,9 +5508,9 @@ dependencies = [
4714
5508
 
4715
5509
  [[package]]
4716
5510
  name = "wasi"
4717
- version = "0.11.0+wasi-snapshot-preview1"
5511
+ version = "0.11.1+wasi-snapshot-preview1"
4718
5512
  source = "registry+https://github.com/rust-lang/crates.io-index"
4719
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
5513
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4720
5514
 
4721
5515
  [[package]]
4722
5516
  name = "wasi"
@@ -4755,7 +5549,7 @@ dependencies = [
4755
5549
  "log",
4756
5550
  "proc-macro2",
4757
5551
  "quote",
4758
- "syn",
5552
+ "syn 2.0.104",
4759
5553
  "wasm-bindgen-shared",
4760
5554
  ]
4761
5555
 
@@ -4790,7 +5584,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4790
5584
  dependencies = [
4791
5585
  "proc-macro2",
4792
5586
  "quote",
4793
- "syn",
5587
+ "syn 2.0.104",
4794
5588
  "wasm-bindgen-backend",
4795
5589
  "wasm-bindgen-shared",
4796
5590
  ]
@@ -4804,6 +5598,30 @@ dependencies = [
4804
5598
  "unicode-ident",
4805
5599
  ]
4806
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
+
4807
5625
  [[package]]
4808
5626
  name = "wasm-streams"
4809
5627
  version = "0.4.2"
@@ -4843,14 +5661,14 @@ version = "0.26.11"
4843
5661
  source = "registry+https://github.com/rust-lang/crates.io-index"
4844
5662
  checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
4845
5663
  dependencies = [
4846
- "webpki-roots 1.0.0",
5664
+ "webpki-roots 1.0.2",
4847
5665
  ]
4848
5666
 
4849
5667
  [[package]]
4850
5668
  name = "webpki-roots"
4851
- version = "1.0.0"
5669
+ version = "1.0.2"
4852
5670
  source = "registry+https://github.com/rust-lang/crates.io-index"
4853
- checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
5671
+ checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
4854
5672
  dependencies = [
4855
5673
  "rustls-pki-types",
4856
5674
  ]
@@ -4864,7 +5682,7 @@ dependencies = [
4864
5682
  "either",
4865
5683
  "home",
4866
5684
  "once_cell",
4867
- "rustix 0.38.44",
5685
+ "rustix",
4868
5686
  ]
4869
5687
 
4870
5688
  [[package]]
@@ -4910,15 +5728,15 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4910
5728
 
4911
5729
  [[package]]
4912
5730
  name = "windows-core"
4913
- version = "0.61.0"
5731
+ version = "0.61.2"
4914
5732
  source = "registry+https://github.com/rust-lang/crates.io-index"
4915
- checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
5733
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
4916
5734
  dependencies = [
4917
5735
  "windows-implement",
4918
5736
  "windows-interface",
4919
5737
  "windows-link",
4920
5738
  "windows-result",
4921
- "windows-strings 0.4.0",
5739
+ "windows-strings",
4922
5740
  ]
4923
5741
 
4924
5742
  [[package]]
@@ -4929,7 +5747,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4929
5747
  dependencies = [
4930
5748
  "proc-macro2",
4931
5749
  "quote",
4932
- "syn",
5750
+ "syn 2.0.104",
4933
5751
  ]
4934
5752
 
4935
5753
  [[package]]
@@ -4940,49 +5758,29 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4940
5758
  dependencies = [
4941
5759
  "proc-macro2",
4942
5760
  "quote",
4943
- "syn",
5761
+ "syn 2.0.104",
4944
5762
  ]
4945
5763
 
4946
5764
  [[package]]
4947
5765
  name = "windows-link"
4948
- version = "0.1.1"
4949
- source = "registry+https://github.com/rust-lang/crates.io-index"
4950
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4951
-
4952
- [[package]]
4953
- name = "windows-registry"
4954
- version = "0.4.0"
5766
+ version = "0.1.3"
4955
5767
  source = "registry+https://github.com/rust-lang/crates.io-index"
4956
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4957
- dependencies = [
4958
- "windows-result",
4959
- "windows-strings 0.3.1",
4960
- "windows-targets 0.53.0",
4961
- ]
5768
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4962
5769
 
4963
5770
  [[package]]
4964
5771
  name = "windows-result"
4965
- version = "0.3.2"
4966
- source = "registry+https://github.com/rust-lang/crates.io-index"
4967
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
4968
- dependencies = [
4969
- "windows-link",
4970
- ]
4971
-
4972
- [[package]]
4973
- name = "windows-strings"
4974
- version = "0.3.1"
5772
+ version = "0.3.4"
4975
5773
  source = "registry+https://github.com/rust-lang/crates.io-index"
4976
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
5774
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4977
5775
  dependencies = [
4978
5776
  "windows-link",
4979
5777
  ]
4980
5778
 
4981
5779
  [[package]]
4982
5780
  name = "windows-strings"
4983
- version = "0.4.0"
5781
+ version = "0.4.2"
4984
5782
  source = "registry+https://github.com/rust-lang/crates.io-index"
4985
- checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
5783
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
4986
5784
  dependencies = [
4987
5785
  "windows-link",
4988
5786
  ]
@@ -5014,6 +5812,15 @@ dependencies = [
5014
5812
  "windows-targets 0.52.6",
5015
5813
  ]
5016
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
+
5017
5824
  [[package]]
5018
5825
  name = "windows-targets"
5019
5826
  version = "0.48.5"
@@ -5047,10 +5854,11 @@ dependencies = [
5047
5854
 
5048
5855
  [[package]]
5049
5856
  name = "windows-targets"
5050
- version = "0.53.0"
5857
+ version = "0.53.3"
5051
5858
  source = "registry+https://github.com/rust-lang/crates.io-index"
5052
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
5859
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
5053
5860
  dependencies = [
5861
+ "windows-link",
5054
5862
  "windows_aarch64_gnullvm 0.53.0",
5055
5863
  "windows_aarch64_msvc 0.53.0",
5056
5864
  "windows_i686_gnu 0.53.0",
@@ -5201,18 +6009,18 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
5201
6009
 
5202
6010
  [[package]]
5203
6011
  name = "winnow"
5204
- version = "0.7.10"
6012
+ version = "0.7.12"
5205
6013
  source = "registry+https://github.com/rust-lang/crates.io-index"
5206
- checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
6014
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
5207
6015
  dependencies = [
5208
6016
  "memchr",
5209
6017
  ]
5210
6018
 
5211
6019
  [[package]]
5212
6020
  name = "wiremock"
5213
- version = "0.6.3"
6021
+ version = "0.6.4"
5214
6022
  source = "registry+https://github.com/rust-lang/crates.io-index"
5215
- checksum = "101681b74cd87b5899e87bcf5a64e83334dd313fcd3053ea72e6dba18928e301"
6023
+ checksum = "a2b8b99d4cdbf36b239a9532e31fe4fb8acc38d1897c1761e161550a7dc78e6a"
5216
6024
  dependencies = [
5217
6025
  "assert-json-diff",
5218
6026
  "async-trait",
@@ -5247,15 +6055,32 @@ version = "0.6.1"
5247
6055
  source = "registry+https://github.com/rust-lang/crates.io-index"
5248
6056
  checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
5249
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
+
5250
6075
  [[package]]
5251
6076
  name = "yaml-rust2"
5252
- version = "0.10.1"
6077
+ version = "0.10.3"
5253
6078
  source = "registry+https://github.com/rust-lang/crates.io-index"
5254
- checksum = "818913695e83ece1f8d2a1c52d54484b7b46d0f9c06beeb2649b9da50d9b512d"
6079
+ checksum = "4ce2a4ff45552406d02501cea6c18d8a7e50228e7736a872951fe2fe75c91be7"
5255
6080
  dependencies = [
5256
6081
  "arraydeque",
5257
6082
  "encoding_rs",
5258
- "hashlink",
6083
+ "hashlink 0.10.0",
5259
6084
  ]
5260
6085
 
5261
6086
  [[package]]
@@ -5278,28 +6103,28 @@ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
5278
6103
  dependencies = [
5279
6104
  "proc-macro2",
5280
6105
  "quote",
5281
- "syn",
5282
- "synstructure",
6106
+ "syn 2.0.104",
6107
+ "synstructure 0.13.2",
5283
6108
  ]
5284
6109
 
5285
6110
  [[package]]
5286
6111
  name = "zerocopy"
5287
- version = "0.8.25"
6112
+ version = "0.8.26"
5288
6113
  source = "registry+https://github.com/rust-lang/crates.io-index"
5289
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
6114
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
5290
6115
  dependencies = [
5291
6116
  "zerocopy-derive",
5292
6117
  ]
5293
6118
 
5294
6119
  [[package]]
5295
6120
  name = "zerocopy-derive"
5296
- version = "0.8.25"
6121
+ version = "0.8.26"
5297
6122
  source = "registry+https://github.com/rust-lang/crates.io-index"
5298
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
6123
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
5299
6124
  dependencies = [
5300
6125
  "proc-macro2",
5301
6126
  "quote",
5302
- "syn",
6127
+ "syn 2.0.104",
5303
6128
  ]
5304
6129
 
5305
6130
  [[package]]
@@ -5319,8 +6144,8 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5319
6144
  dependencies = [
5320
6145
  "proc-macro2",
5321
6146
  "quote",
5322
- "syn",
5323
- "synstructure",
6147
+ "syn 2.0.104",
6148
+ "synstructure 0.13.2",
5324
6149
  ]
5325
6150
 
5326
6151
  [[package]]
@@ -5342,9 +6167,9 @@ dependencies = [
5342
6167
 
5343
6168
  [[package]]
5344
6169
  name = "zerovec"
5345
- version = "0.11.2"
6170
+ version = "0.11.4"
5346
6171
  source = "registry+https://github.com/rust-lang/crates.io-index"
5347
- checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
6172
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
5348
6173
  dependencies = [
5349
6174
  "yoke",
5350
6175
  "zerofrom",
@@ -5359,9 +6184,15 @@ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
5359
6184
  dependencies = [
5360
6185
  "proc-macro2",
5361
6186
  "quote",
5362
- "syn",
6187
+ "syn 2.0.104",
5363
6188
  ]
5364
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
+
5365
6196
  [[package]]
5366
6197
  name = "zstd"
5367
6198
  version = "0.13.3"