floe-python 0.4.6__tar.gz → 0.5.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 (241) hide show
  1. {floe_python-0.4.6 → floe_python-0.5.0}/Cargo.lock +362 -68
  2. {floe_python-0.4.6 → floe_python-0.5.0}/PKG-INFO +1 -1
  3. floe_python-0.5.0/crates/floe-core/Cargo.toml +77 -0
  4. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/parse.rs +54 -3
  5. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/types.rs +31 -0
  6. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/validate.rs +238 -28
  7. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/format.rs +4 -1
  8. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/csv.rs +64 -2
  9. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/orc.rs +10 -2
  10. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/parquet.rs +10 -2
  11. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/object_store.rs +9 -0
  12. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/unique_seed/mod.rs +7 -3
  13. floe_python-0.5.0/crates/floe-core/src/io/write/arrow_convert.rs +199 -0
  14. floe_python-0.5.0/crates/floe-core/src/io/write/delta/record_batch.rs +16 -0
  15. floe_python-0.5.0/crates/floe-core/src/io/write/duckdb/conn.rs +574 -0
  16. floe_python-0.5.0/crates/floe-core/src/io/write/duckdb/merge.rs +356 -0
  17. floe_python-0.5.0/crates/floe-core/src/io/write/duckdb.rs +351 -0
  18. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/mod.rs +7 -0
  19. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/sink_format.rs +49 -9
  20. floe_python-0.5.0/crates/floe-core/src/io/write/strategy/merge/keys.rs +197 -0
  21. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/merge/mod.rs +15 -0
  22. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/merge/scd2.rs +5 -6
  23. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/merge/shared.rs +10 -161
  24. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/lib.rs +9 -0
  25. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/manifest/builder.rs +69 -8
  26. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/manifest/model.rs +2 -0
  27. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/manifest/reconstruct.rs +23 -1
  28. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/accepted_buffer.rs +1 -1
  29. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/accepted_write.rs +1 -1
  30. floe_python-0.5.0/crates/floe-core/src/run/entity/resolve.rs +192 -0
  31. floe_python-0.5.0/crates/floe-core/tests/integration/duckdb_run.rs +442 -0
  32. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/mod.rs +7 -0
  33. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/adls_validation.rs +1 -0
  34. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/catalogs.rs +2 -0
  35. floe_python-0.5.0/crates/floe-core/tests/unit/config/duckdb_validation.rs +247 -0
  36. floe_python-0.5.0/crates/floe-core/tests/unit/config/mod.rs +19 -0
  37. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/orc_input.rs +75 -0
  38. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/parquet_input.rs +69 -0
  39. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/inputs.rs +1 -0
  40. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/delta_write.rs +1 -0
  41. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/iceberg_write.rs +1 -0
  42. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/mod.rs +4 -0
  43. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/object_store.rs +8 -0
  44. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/parquet_write.rs +1 -0
  45. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/rejected_csv.rs +2 -0
  46. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/manifest/mod.rs +345 -2
  47. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/lineage.rs +2 -0
  48. floe_python-0.5.0/crates/floe-python/Cargo.toml +32 -0
  49. {floe_python-0.4.6 → floe_python-0.5.0}/pyproject.toml +1 -1
  50. floe_python-0.4.6/crates/floe-core/Cargo.toml +0 -58
  51. floe_python-0.4.6/crates/floe-core/src/io/write/arrow_convert.rs +0 -93
  52. floe_python-0.4.6/crates/floe-core/src/io/write/delta/record_batch.rs +0 -103
  53. floe_python-0.4.6/crates/floe-core/src/run/entity/resolve.rs +0 -49
  54. floe_python-0.4.6/crates/floe-core/tests/unit/config/mod.rs +0 -14
  55. floe_python-0.4.6/crates/floe-python/Cargo.toml +0 -22
  56. {floe_python-0.4.6 → floe_python-0.5.0}/Cargo.toml +0 -0
  57. {floe_python-0.4.6 → floe_python-0.5.0}/README.md +0 -0
  58. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/README.md +0 -0
  59. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/add_entity.rs +0 -0
  60. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/checks/cast.rs +0 -0
  61. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/checks/mismatch.rs +0 -0
  62. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/checks/mod.rs +0 -0
  63. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/checks/normalize.rs +0 -0
  64. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/checks/not_null.rs +0 -0
  65. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/checks/unique.rs +0 -0
  66. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/catalog.rs +0 -0
  67. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/location.rs +0 -0
  68. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/mod.rs +0 -0
  69. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/storage.rs +0 -0
  70. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/template.rs +0 -0
  71. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/config/yaml_decode.rs +0 -0
  72. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/errors.rs +0 -0
  73. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/mod.rs +0 -0
  74. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/avro.rs +0 -0
  75. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/fixed_width.rs +0 -0
  76. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/json.rs +0 -0
  77. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/json_selector.rs +0 -0
  78. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/mod.rs +0 -0
  79. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/xlsx.rs +0 -0
  80. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/xml.rs +0 -0
  81. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/read/xml_selector.rs +0 -0
  82. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/extensions.rs +0 -0
  83. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/mod.rs +0 -0
  84. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/paths.rs +0 -0
  85. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/placement.rs +0 -0
  86. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/planner.rs +0 -0
  87. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/uri.rs +0 -0
  88. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/core/validation.rs +0 -0
  89. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/mod.rs +0 -0
  90. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/ops/archive.rs +0 -0
  91. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/ops/inputs.rs +0 -0
  92. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/ops/mod.rs +0 -0
  93. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/ops/output.rs +0 -0
  94. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/providers/adls.rs +0 -0
  95. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/providers/gcs.rs +0 -0
  96. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/providers/local.rs +0 -0
  97. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/providers/mod.rs +0 -0
  98. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/providers/s3.rs +0 -0
  99. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/storage/target.rs +0 -0
  100. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/accepted.rs +0 -0
  101. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/csv.rs +0 -0
  102. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/delta/commit_metrics.rs +0 -0
  103. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/delta/options.rs +0 -0
  104. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/delta/unity.rs +0 -0
  105. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/delta/unity_tests.rs +0 -0
  106. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/delta.rs +0 -0
  107. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg/context.rs +0 -0
  108. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg/data_files.rs +0 -0
  109. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg/glue.rs +0 -0
  110. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg/metadata.rs +0 -0
  111. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg/rest.rs +0 -0
  112. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg/schema.rs +0 -0
  113. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/iceberg.rs +0 -0
  114. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/metrics.rs +0 -0
  115. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/parquet.rs +0 -0
  116. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/parts.rs +0 -0
  117. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/append.rs +0 -0
  118. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/merge/scd1.rs +0 -0
  119. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/mod.rs +0 -0
  120. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/io/write/strategy/overwrite.rs +0 -0
  121. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/lineage/mod.rs +0 -0
  122. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/log.rs +0 -0
  123. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/manifest/mod.rs +0 -0
  124. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/profile/mod.rs +0 -0
  125. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/profile/parse.rs +0 -0
  126. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/profile/types.rs +0 -0
  127. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/profile/validate.rs +0 -0
  128. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/report/build.rs +0 -0
  129. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/report/entity.rs +0 -0
  130. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/report/mod.rs +0 -0
  131. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/report/output.rs +0 -0
  132. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/context.rs +0 -0
  133. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/incremental.rs +0 -0
  134. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/mod.rs +0 -0
  135. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/pii.rs +0 -0
  136. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/precheck.rs +0 -0
  137. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/process.rs +0 -0
  138. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/entity/validate_split.rs +0 -0
  139. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/events.rs +0 -0
  140. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/file.rs +0 -0
  141. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/mod.rs +0 -0
  142. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/output.rs +0 -0
  143. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/run/perf.rs +0 -0
  144. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/runner/mod.rs +0 -0
  145. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/runner/outcome.rs +0 -0
  146. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/runtime.rs +0 -0
  147. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/state/mod.rs +0 -0
  148. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/vars/mod.rs +0 -0
  149. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/vars/resolve.rs +0 -0
  150. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/src/warnings.rs +0 -0
  151. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/archive_run.rs +0 -0
  152. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/composite_unique.rs +0 -0
  153. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/delta_run.rs +0 -0
  154. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/dry_run.rs +0 -0
  155. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/fixed_width.rs +0 -0
  156. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/iceberg_gcs_run.rs +0 -0
  157. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/iceberg_glue_run.rs +0 -0
  158. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/iceberg_run.rs +0 -0
  159. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/iceberg_s3_run.rs +0 -0
  160. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/json_selectors.rs +0 -0
  161. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/local_run.rs +0 -0
  162. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/path_normalization.rs +0 -0
  163. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration/run_entities_filter.rs +0 -0
  164. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/integration.rs +0 -0
  165. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/common.rs +0 -0
  166. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/add_entity.rs +0 -0
  167. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/adls_storage.rs +0 -0
  168. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/config_validation.rs +0 -0
  169. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/gcs_storage.rs +0 -0
  170. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/gcs_validation.rs +0 -0
  171. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/lineage_validation.rs +0 -0
  172. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/local_storage.rs +0 -0
  173. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/parse.rs +0 -0
  174. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/pii_validation.rs +0 -0
  175. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/remote_base.rs +0 -0
  176. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/storage_resolver_uri.rs +0 -0
  177. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/config/templating.rs +0 -0
  178. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/format.rs +0 -0
  179. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/mod.rs +0 -0
  180. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/avro_input.rs +0 -0
  181. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/csv_nulls.rs +0 -0
  182. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/json_array.rs +0 -0
  183. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/json_ndjson.rs +0 -0
  184. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/json_selector.rs +0 -0
  185. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/mod.rs +0 -0
  186. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/tsv.rs +0 -0
  187. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/xlsx_input.rs +0 -0
  188. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/xml.rs +0 -0
  189. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/read/xml_selector.rs +0 -0
  190. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/adls.rs +0 -0
  191. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/adls_integration.rs +0 -0
  192. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/gcs.rs +0 -0
  193. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/local.rs +0 -0
  194. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/mod.rs +0 -0
  195. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/paths.rs +0 -0
  196. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/planner.rs +0 -0
  197. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/s3.rs +0 -0
  198. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/storage/target.rs +0 -0
  199. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/delta_merge.rs +0 -0
  200. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/metrics.rs +0 -0
  201. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/io/write/parts.rs +0 -0
  202. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/mod.rs +0 -0
  203. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/profile/mod.rs +0 -0
  204. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/profile/parse.rs +0 -0
  205. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/profile/validate.rs +0 -0
  206. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/report/accepted_output.rs +0 -0
  207. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/report/mod.rs +0 -0
  208. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/report/storage.rs +0 -0
  209. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/check_order.rs +0 -0
  210. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/checks.rs +0 -0
  211. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/entity/accepted_output.rs +0 -0
  212. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/entity/incremental.rs +0 -0
  213. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/entity/mod.rs +0 -0
  214. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/mod.rs +0 -0
  215. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/normalize.rs +0 -0
  216. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/pii.rs +0 -0
  217. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/report.rs +0 -0
  218. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/run/schema_mismatch.rs +0 -0
  219. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/runner/adapter.rs +0 -0
  220. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/runner/mod.rs +0 -0
  221. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/state/mod.rs +0 -0
  222. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/vars/mod.rs +0 -0
  223. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit/vars/resolve.rs +0 -0
  224. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-core/tests/unit.rs +0 -0
  225. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/.gitignore +0 -0
  226. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/README.md +0 -0
  227. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/functions.rs +0 -0
  228. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/lib.rs +0 -0
  229. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/observer.rs +0 -0
  230. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/types/config.rs +0 -0
  231. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/types/errors.rs +0 -0
  232. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/types/mod.rs +0 -0
  233. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/src/types/outcome.rs +0 -0
  234. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/tests/fixtures/config.yml +0 -0
  235. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/tests/fixtures/in/customer/customers_valid.csv +0 -0
  236. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/tests/fixtures/invalid_config.yml +0 -0
  237. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/tests/fixtures/profile.yml +0 -0
  238. {floe_python-0.4.6 → floe_python-0.5.0}/crates/floe-python/tests/test_floe.py +0 -0
  239. {floe_python-0.4.6 → floe_python-0.5.0}/python/floe/__init__.py +0 -0
  240. {floe_python-0.4.6 → floe_python-0.5.0}/python/floe/_floe.pyi +0 -0
  241. {floe_python-0.4.6 → floe_python-0.5.0}/python/floe/py.typed +0 -0
@@ -31,6 +31,17 @@ dependencies = [
31
31
  "cpufeatures",
32
32
  ]
33
33
 
34
+ [[package]]
35
+ name = "ahash"
36
+ version = "0.7.8"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
39
+ dependencies = [
40
+ "getrandom 0.2.17",
41
+ "once_cell",
42
+ "version_check",
43
+ ]
44
+
34
45
  [[package]]
35
46
  name = "ahash"
36
47
  version = "0.8.12"
@@ -286,7 +297,7 @@ version = "57.2.0"
286
297
  source = "registry+https://github.com/rust-lang/crates.io-index"
287
298
  checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c"
288
299
  dependencies = [
289
- "ahash",
300
+ "ahash 0.8.12",
290
301
  "arrow-buffer",
291
302
  "arrow-data",
292
303
  "arrow-schema",
@@ -445,7 +456,7 @@ version = "57.2.0"
445
456
  source = "registry+https://github.com/rust-lang/crates.io-index"
446
457
  checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b"
447
458
  dependencies = [
448
- "ahash",
459
+ "ahash 0.8.12",
449
460
  "arrow-array",
450
461
  "arrow-buffer",
451
462
  "arrow-data",
@@ -625,7 +636,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
625
636
  dependencies = [
626
637
  "proc-macro2",
627
638
  "quote",
628
- "syn",
639
+ "syn 2.0.111",
629
640
  ]
630
641
 
631
642
  [[package]]
@@ -642,7 +653,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
642
653
  dependencies = [
643
654
  "proc-macro2",
644
655
  "quote",
645
- "syn",
656
+ "syn 2.0.111",
646
657
  ]
647
658
 
648
659
  [[package]]
@@ -1357,6 +1368,18 @@ dependencies = [
1357
1368
  "serde_core",
1358
1369
  ]
1359
1370
 
1371
+ [[package]]
1372
+ name = "bitvec"
1373
+ version = "1.0.1"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
1376
+ dependencies = [
1377
+ "funty",
1378
+ "radium",
1379
+ "tap",
1380
+ "wyz",
1381
+ ]
1382
+
1360
1383
  [[package]]
1361
1384
  name = "blake2"
1362
1385
  version = "0.10.6"
@@ -1443,7 +1466,31 @@ dependencies = [
1443
1466
  "proc-macro2",
1444
1467
  "quote",
1445
1468
  "rustversion",
1446
- "syn",
1469
+ "syn 2.0.111",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "borsh"
1474
+ version = "1.6.1"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
1477
+ dependencies = [
1478
+ "borsh-derive",
1479
+ "bytes",
1480
+ "cfg_aliases",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "borsh-derive"
1485
+ version = "1.6.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
1488
+ dependencies = [
1489
+ "once_cell",
1490
+ "proc-macro-crate",
1491
+ "proc-macro2",
1492
+ "quote",
1493
+ "syn 2.0.111",
1447
1494
  ]
1448
1495
 
1449
1496
  [[package]]
@@ -1490,6 +1537,28 @@ version = "3.19.1"
1490
1537
  source = "registry+https://github.com/rust-lang/crates.io-index"
1491
1538
  checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
1492
1539
 
1540
+ [[package]]
1541
+ name = "bytecheck"
1542
+ version = "0.6.12"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
1545
+ dependencies = [
1546
+ "bytecheck_derive",
1547
+ "ptr_meta",
1548
+ "simdutf8",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "bytecheck_derive"
1553
+ version = "0.6.12"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
1556
+ dependencies = [
1557
+ "proc-macro2",
1558
+ "quote",
1559
+ "syn 1.0.109",
1560
+ ]
1561
+
1493
1562
  [[package]]
1494
1563
  name = "bytemuck"
1495
1564
  version = "1.24.0"
@@ -1507,7 +1576,7 @@ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
1507
1576
  dependencies = [
1508
1577
  "proc-macro2",
1509
1578
  "quote",
1510
- "syn",
1579
+ "syn 2.0.111",
1511
1580
  ]
1512
1581
 
1513
1582
  [[package]]
@@ -1578,6 +1647,12 @@ dependencies = [
1578
1647
  "zip 0.6.6",
1579
1648
  ]
1580
1649
 
1650
+ [[package]]
1651
+ name = "cast"
1652
+ version = "0.3.0"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
1655
+
1581
1656
  [[package]]
1582
1657
  name = "castaway"
1583
1658
  version = "0.2.4"
@@ -1685,7 +1760,7 @@ dependencies = [
1685
1760
  "heck 0.5.0",
1686
1761
  "proc-macro2",
1687
1762
  "quote",
1688
- "syn",
1763
+ "syn 2.0.111",
1689
1764
  ]
1690
1765
 
1691
1766
  [[package]]
@@ -2070,7 +2145,7 @@ dependencies = [
2070
2145
  "proc-macro2",
2071
2146
  "quote",
2072
2147
  "strsim",
2073
- "syn",
2148
+ "syn 2.0.111",
2074
2149
  ]
2075
2150
 
2076
2151
  [[package]]
@@ -2084,7 +2159,7 @@ dependencies = [
2084
2159
  "proc-macro2",
2085
2160
  "quote",
2086
2161
  "strsim",
2087
- "syn",
2162
+ "syn 2.0.111",
2088
2163
  ]
2089
2164
 
2090
2165
  [[package]]
@@ -2095,7 +2170,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
2095
2170
  dependencies = [
2096
2171
  "darling_core 0.20.11",
2097
2172
  "quote",
2098
- "syn",
2173
+ "syn 2.0.111",
2099
2174
  ]
2100
2175
 
2101
2176
  [[package]]
@@ -2106,7 +2181,7 @@ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
2106
2181
  dependencies = [
2107
2182
  "darling_core 0.21.3",
2108
2183
  "quote",
2109
- "syn",
2184
+ "syn 2.0.111",
2110
2185
  ]
2111
2186
 
2112
2187
  [[package]]
@@ -2240,7 +2315,7 @@ version = "51.0.0"
2240
2315
  source = "registry+https://github.com/rust-lang/crates.io-index"
2241
2316
  checksum = "7c10f7659e96127d25e8366be7c8be4109595d6a2c3eac70421f380a7006a1b0"
2242
2317
  dependencies = [
2243
- "ahash",
2318
+ "ahash 0.8.12",
2244
2319
  "arrow",
2245
2320
  "arrow-ipc",
2246
2321
  "chrono",
@@ -2501,7 +2576,7 @@ version = "51.0.0"
2501
2576
  source = "registry+https://github.com/rust-lang/crates.io-index"
2502
2577
  checksum = "1c25210520a9dcf9c2b2cbbce31ebd4131ef5af7fc60ee92b266dc7d159cb305"
2503
2578
  dependencies = [
2504
- "ahash",
2579
+ "ahash 0.8.12",
2505
2580
  "arrow",
2506
2581
  "datafusion-common",
2507
2582
  "datafusion-doc",
@@ -2522,7 +2597,7 @@ version = "51.0.0"
2522
2597
  source = "registry+https://github.com/rust-lang/crates.io-index"
2523
2598
  checksum = "62f4a66f3b87300bb70f4124b55434d2ae3fe80455f3574701d0348da040b55d"
2524
2599
  dependencies = [
2525
- "ahash",
2600
+ "ahash 0.8.12",
2526
2601
  "arrow",
2527
2602
  "datafusion-common",
2528
2603
  "datafusion-expr-common",
@@ -2604,7 +2679,7 @@ checksum = "1063ad4c9e094b3f798acee16d9a47bd7372d9699be2de21b05c3bd3f34ab848"
2604
2679
  dependencies = [
2605
2680
  "datafusion-doc",
2606
2681
  "quote",
2607
- "syn",
2682
+ "syn 2.0.111",
2608
2683
  ]
2609
2684
 
2610
2685
  [[package]]
@@ -2633,7 +2708,7 @@ version = "51.0.0"
2633
2708
  source = "registry+https://github.com/rust-lang/crates.io-index"
2634
2709
  checksum = "c30cc8012e9eedcb48bbe112c6eff4ae5ed19cf3003cb0f505662e88b7014c5d"
2635
2710
  dependencies = [
2636
- "ahash",
2711
+ "ahash 0.8.12",
2637
2712
  "arrow",
2638
2713
  "datafusion-common",
2639
2714
  "datafusion-expr",
@@ -2670,7 +2745,7 @@ version = "51.0.0"
2670
2745
  source = "registry+https://github.com/rust-lang/crates.io-index"
2671
2746
  checksum = "90da43e1ec550b172f34c87ec68161986ced70fd05c8d2a2add66eef9c276f03"
2672
2747
  dependencies = [
2673
- "ahash",
2748
+ "ahash 0.8.12",
2674
2749
  "arrow",
2675
2750
  "datafusion-common",
2676
2751
  "datafusion-expr-common",
@@ -2703,7 +2778,7 @@ version = "51.0.0"
2703
2778
  source = "registry+https://github.com/rust-lang/crates.io-index"
2704
2779
  checksum = "0acf0ad6b6924c6b1aa7d213b181e012e2d3ec0a64ff5b10ee6282ab0f8532ac"
2705
2780
  dependencies = [
2706
- "ahash",
2781
+ "ahash 0.8.12",
2707
2782
  "arrow",
2708
2783
  "arrow-ord",
2709
2784
  "arrow-schema",
@@ -2860,7 +2935,7 @@ checksum = "32a311416f16d4793d2aa35f2c76d36ab9b14c808eba00ef24759b47b666255e"
2860
2935
  dependencies = [
2861
2936
  "proc-macro2",
2862
2937
  "quote",
2863
- "syn",
2938
+ "syn 2.0.111",
2864
2939
  ]
2865
2940
 
2866
2941
  [[package]]
@@ -2982,7 +3057,7 @@ dependencies = [
2982
3057
  "itertools 0.14.0",
2983
3058
  "proc-macro2",
2984
3059
  "quote",
2985
- "syn",
3060
+ "syn 2.0.111",
2986
3061
  ]
2987
3062
 
2988
3063
  [[package]]
@@ -3041,7 +3116,7 @@ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
3041
3116
  dependencies = [
3042
3117
  "proc-macro2",
3043
3118
  "quote",
3044
- "syn",
3119
+ "syn 2.0.111",
3045
3120
  ]
3046
3121
 
3047
3122
  [[package]]
@@ -3062,7 +3137,7 @@ dependencies = [
3062
3137
  "darling 0.20.11",
3063
3138
  "proc-macro2",
3064
3139
  "quote",
3065
- "syn",
3140
+ "syn 2.0.111",
3066
3141
  ]
3067
3142
 
3068
3143
  [[package]]
@@ -3072,7 +3147,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
3147
  checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
3073
3148
  dependencies = [
3074
3149
  "derive_builder_core",
3075
- "syn",
3150
+ "syn 2.0.111",
3076
3151
  ]
3077
3152
 
3078
3153
  [[package]]
@@ -3135,7 +3210,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
3135
3210
  dependencies = [
3136
3211
  "proc-macro2",
3137
3212
  "quote",
3138
- "syn",
3213
+ "syn 2.0.111",
3139
3214
  ]
3140
3215
 
3141
3216
  [[package]]
@@ -3177,6 +3252,24 @@ version = "0.0.6"
3177
3252
  source = "registry+https://github.com/rust-lang/crates.io-index"
3178
3253
  checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
3179
3254
 
3255
+ [[package]]
3256
+ name = "duckdb"
3257
+ version = "1.10500.0"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "6a2048e4963a37ec458d9e93444192e0e949ac0a188d201ea53472f2c42db822"
3260
+ dependencies = [
3261
+ "arrow",
3262
+ "cast",
3263
+ "fallible-iterator",
3264
+ "fallible-streaming-iterator",
3265
+ "hashlink 0.10.0",
3266
+ "libduckdb-sys",
3267
+ "num",
3268
+ "num-integer",
3269
+ "rust_decimal",
3270
+ "strum 0.27.2",
3271
+ ]
3272
+
3180
3273
  [[package]]
3181
3274
  name = "dunce"
3182
3275
  version = "1.0.5"
@@ -3306,6 +3399,12 @@ dependencies = [
3306
3399
  "once_cell",
3307
3400
  ]
3308
3401
 
3402
+ [[package]]
3403
+ name = "fallible-iterator"
3404
+ version = "0.3.0"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
3407
+
3309
3408
  [[package]]
3310
3409
  name = "fallible-streaming-iterator"
3311
3410
  version = "0.1.9"
@@ -3355,6 +3454,16 @@ dependencies = [
3355
3454
  "subtle",
3356
3455
  ]
3357
3456
 
3457
+ [[package]]
3458
+ name = "filetime"
3459
+ version = "0.2.29"
3460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3461
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
3462
+ dependencies = [
3463
+ "cfg-if",
3464
+ "libc",
3465
+ ]
3466
+
3358
3467
  [[package]]
3359
3468
  name = "find-msvc-tools"
3360
3469
  version = "0.1.8"
@@ -3399,7 +3508,7 @@ dependencies = [
3399
3508
 
3400
3509
  [[package]]
3401
3510
  name = "floe-cli"
3402
- version = "0.4.6"
3511
+ version = "0.5.0"
3403
3512
  dependencies = [
3404
3513
  "assert_cmd",
3405
3514
  "clap",
@@ -3412,7 +3521,7 @@ dependencies = [
3412
3521
 
3413
3522
  [[package]]
3414
3523
  name = "floe-core"
3415
- version = "0.4.6"
3524
+ version = "0.5.0"
3416
3525
  dependencies = [
3417
3526
  "apache-avro 0.16.0",
3418
3527
  "arrow",
@@ -3426,6 +3535,7 @@ dependencies = [
3426
3535
  "calamine",
3427
3536
  "deltalake",
3428
3537
  "df-interchange",
3538
+ "duckdb",
3429
3539
  "futures",
3430
3540
  "gcloud-storage",
3431
3541
  "glob",
@@ -3455,7 +3565,7 @@ dependencies = [
3455
3565
 
3456
3566
  [[package]]
3457
3567
  name = "floe-python"
3458
- version = "0.4.6"
3568
+ version = "0.5.0"
3459
3569
  dependencies = [
3460
3570
  "floe-core",
3461
3571
  "pyo3",
@@ -3520,6 +3630,12 @@ version = "1.3.0"
3520
3630
  source = "registry+https://github.com/rust-lang/crates.io-index"
3521
3631
  checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
3522
3632
 
3633
+ [[package]]
3634
+ name = "funty"
3635
+ version = "2.0.0"
3636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3637
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
3638
+
3523
3639
  [[package]]
3524
3640
  name = "futures"
3525
3641
  version = "0.3.31"
@@ -3604,7 +3720,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
3604
3720
  dependencies = [
3605
3721
  "proc-macro2",
3606
3722
  "quote",
3607
- "syn",
3723
+ "syn 2.0.111",
3608
3724
  ]
3609
3725
 
3610
3726
  [[package]]
@@ -3849,6 +3965,9 @@ name = "hashbrown"
3849
3965
  version = "0.12.3"
3850
3966
  source = "registry+https://github.com/rust-lang/crates.io-index"
3851
3967
  checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
3968
+ dependencies = [
3969
+ "ahash 0.7.8",
3970
+ ]
3852
3971
 
3853
3972
  [[package]]
3854
3973
  name = "hashbrown"
@@ -3856,7 +3975,7 @@ version = "0.14.5"
3856
3975
  source = "registry+https://github.com/rust-lang/crates.io-index"
3857
3976
  checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
3858
3977
  dependencies = [
3859
- "ahash",
3978
+ "ahash 0.8.12",
3860
3979
  "allocator-api2",
3861
3980
  ]
3862
3981
 
@@ -3885,6 +4004,15 @@ dependencies = [
3885
4004
  "serde_core",
3886
4005
  ]
3887
4006
 
4007
+ [[package]]
4008
+ name = "hashlink"
4009
+ version = "0.10.0"
4010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4011
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
4012
+ dependencies = [
4013
+ "hashbrown 0.15.5",
4014
+ ]
4015
+
3888
4016
  [[package]]
3889
4017
  name = "hashlink"
3890
4018
  version = "0.11.0"
@@ -4518,7 +4646,7 @@ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
4518
4646
  dependencies = [
4519
4647
  "proc-macro2",
4520
4648
  "quote",
4521
- "syn",
4649
+ "syn 2.0.111",
4522
4650
  ]
4523
4651
 
4524
4652
  [[package]]
@@ -4666,6 +4794,23 @@ version = "0.2.180"
4666
4794
  source = "registry+https://github.com/rust-lang/crates.io-index"
4667
4795
  checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
4668
4796
 
4797
+ [[package]]
4798
+ name = "libduckdb-sys"
4799
+ version = "1.10500.0"
4800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4801
+ checksum = "6df9db064ff17120305ec6b7aee048f766cdf2a3ce9ffbb6953aaa3634605030"
4802
+ dependencies = [
4803
+ "cc",
4804
+ "flate2",
4805
+ "pkg-config",
4806
+ "reqwest",
4807
+ "serde",
4808
+ "serde_json",
4809
+ "tar",
4810
+ "vcpkg",
4811
+ "zip 6.0.0",
4812
+ ]
4813
+
4669
4814
  [[package]]
4670
4815
  name = "libflate"
4671
4816
  version = "2.2.1"
@@ -5212,7 +5357,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
5212
5357
  dependencies = [
5213
5358
  "proc-macro2",
5214
5359
  "quote",
5215
- "syn",
5360
+ "syn 2.0.111",
5216
5361
  ]
5217
5362
 
5218
5363
  [[package]]
@@ -5361,7 +5506,7 @@ version = "57.2.0"
5361
5506
  source = "registry+https://github.com/rust-lang/crates.io-index"
5362
5507
  checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854"
5363
5508
  dependencies = [
5364
- "ahash",
5509
+ "ahash 0.8.12",
5365
5510
  "arrow-array",
5366
5511
  "arrow-buffer",
5367
5512
  "arrow-cast",
@@ -5486,7 +5631,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
5486
5631
  dependencies = [
5487
5632
  "proc-macro2",
5488
5633
  "quote",
5489
- "syn",
5634
+ "syn 2.0.111",
5490
5635
  ]
5491
5636
 
5492
5637
  [[package]]
@@ -6208,7 +6353,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6208
6353
  checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
6209
6354
  dependencies = [
6210
6355
  "proc-macro2",
6211
- "syn",
6356
+ "syn 2.0.111",
6212
6357
  ]
6213
6358
 
6214
6359
  [[package]]
@@ -6239,7 +6384,7 @@ dependencies = [
6239
6384
  "proc-macro-error-attr2",
6240
6385
  "proc-macro2",
6241
6386
  "quote",
6242
- "syn",
6387
+ "syn 2.0.111",
6243
6388
  ]
6244
6389
 
6245
6390
  [[package]]
@@ -6281,7 +6426,7 @@ dependencies = [
6281
6426
  "itertools 0.14.0",
6282
6427
  "proc-macro2",
6283
6428
  "quote",
6284
- "syn",
6429
+ "syn 2.0.111",
6285
6430
  ]
6286
6431
 
6287
6432
  [[package]]
@@ -6294,7 +6439,7 @@ dependencies = [
6294
6439
  "itertools 0.14.0",
6295
6440
  "proc-macro2",
6296
6441
  "quote",
6297
- "syn",
6442
+ "syn 2.0.111",
6298
6443
  ]
6299
6444
 
6300
6445
  [[package]]
@@ -6307,6 +6452,26 @@ dependencies = [
6307
6452
  "cc",
6308
6453
  ]
6309
6454
 
6455
+ [[package]]
6456
+ name = "ptr_meta"
6457
+ version = "0.1.4"
6458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6459
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
6460
+ dependencies = [
6461
+ "ptr_meta_derive",
6462
+ ]
6463
+
6464
+ [[package]]
6465
+ name = "ptr_meta_derive"
6466
+ version = "0.1.4"
6467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6468
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
6469
+ dependencies = [
6470
+ "proc-macro2",
6471
+ "quote",
6472
+ "syn 1.0.109",
6473
+ ]
6474
+
6310
6475
  [[package]]
6311
6476
  name = "pyo3"
6312
6477
  version = "0.22.6"
@@ -6354,7 +6519,7 @@ dependencies = [
6354
6519
  "proc-macro2",
6355
6520
  "pyo3-macros-backend",
6356
6521
  "quote",
6357
- "syn",
6522
+ "syn 2.0.111",
6358
6523
  ]
6359
6524
 
6360
6525
  [[package]]
@@ -6367,7 +6532,7 @@ dependencies = [
6367
6532
  "proc-macro2",
6368
6533
  "pyo3-build-config",
6369
6534
  "quote",
6370
- "syn",
6535
+ "syn 2.0.111",
6371
6536
  ]
6372
6537
 
6373
6538
  [[package]]
@@ -6477,6 +6642,12 @@ version = "5.3.0"
6477
6642
  source = "registry+https://github.com/rust-lang/crates.io-index"
6478
6643
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
6479
6644
 
6645
+ [[package]]
6646
+ name = "radium"
6647
+ version = "0.7.0"
6648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6649
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
6650
+
6480
6651
  [[package]]
6481
6652
  name = "rand"
6482
6653
  version = "0.7.3"
@@ -6633,7 +6804,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6633
6804
  checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
6634
6805
  dependencies = [
6635
6806
  "quote",
6636
- "syn",
6807
+ "syn 2.0.111",
6637
6808
  ]
6638
6809
 
6639
6810
  [[package]]
@@ -6673,7 +6844,7 @@ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
6673
6844
  dependencies = [
6674
6845
  "proc-macro2",
6675
6846
  "quote",
6676
- "syn",
6847
+ "syn 2.0.111",
6677
6848
  ]
6678
6849
 
6679
6850
  [[package]]
@@ -6717,6 +6888,15 @@ version = "1.9.3"
6717
6888
  source = "registry+https://github.com/rust-lang/crates.io-index"
6718
6889
  checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
6719
6890
 
6891
+ [[package]]
6892
+ name = "rend"
6893
+ version = "0.4.2"
6894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6895
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
6896
+ dependencies = [
6897
+ "bytecheck",
6898
+ ]
6899
+
6720
6900
  [[package]]
6721
6901
  name = "reqsign"
6722
6902
  version = "0.16.5"
@@ -6838,6 +7018,35 @@ dependencies = [
6838
7018
  "windows-sys 0.52.0",
6839
7019
  ]
6840
7020
 
7021
+ [[package]]
7022
+ name = "rkyv"
7023
+ version = "0.7.46"
7024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7025
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
7026
+ dependencies = [
7027
+ "bitvec",
7028
+ "bytecheck",
7029
+ "bytes",
7030
+ "hashbrown 0.12.3",
7031
+ "ptr_meta",
7032
+ "rend",
7033
+ "rkyv_derive",
7034
+ "seahash",
7035
+ "tinyvec",
7036
+ "uuid",
7037
+ ]
7038
+
7039
+ [[package]]
7040
+ name = "rkyv_derive"
7041
+ version = "0.7.46"
7042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7043
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
7044
+ dependencies = [
7045
+ "proc-macro2",
7046
+ "quote",
7047
+ "syn 1.0.109",
7048
+ ]
7049
+
6841
7050
  [[package]]
6842
7051
  name = "rle-decode-fast"
6843
7052
  version = "1.0.3"
@@ -6925,7 +7134,7 @@ dependencies = [
6925
7134
  "regex",
6926
7135
  "relative-path",
6927
7136
  "rustc_version",
6928
- "syn",
7137
+ "syn 2.0.111",
6929
7138
  "unicode-ident",
6930
7139
  ]
6931
7140
 
@@ -6939,6 +7148,23 @@ dependencies = [
6939
7148
  "ordered-multimap",
6940
7149
  ]
6941
7150
 
7151
+ [[package]]
7152
+ name = "rust_decimal"
7153
+ version = "1.42.0"
7154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7155
+ checksum = "0c5108e3d4d903e21aac27f12ba5377b6b34f9f44b325e4894c7924169d06995"
7156
+ dependencies = [
7157
+ "arrayvec",
7158
+ "borsh",
7159
+ "bytes",
7160
+ "num-traits",
7161
+ "rand 0.8.5",
7162
+ "rkyv",
7163
+ "serde",
7164
+ "serde_json",
7165
+ "wasm-bindgen",
7166
+ ]
7167
+
6942
7168
  [[package]]
6943
7169
  name = "rust_xlsxwriter"
6944
7170
  version = "0.67.0"
@@ -7147,6 +7373,12 @@ dependencies = [
7147
7373
  "untrusted 0.9.0",
7148
7374
  ]
7149
7375
 
7376
+ [[package]]
7377
+ name = "seahash"
7378
+ version = "4.1.0"
7379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7380
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
7381
+
7150
7382
  [[package]]
7151
7383
  name = "sec1"
7152
7384
  version = "0.3.0"
@@ -7255,7 +7487,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
7255
7487
  dependencies = [
7256
7488
  "proc-macro2",
7257
7489
  "quote",
7258
- "syn",
7490
+ "syn 2.0.111",
7259
7491
  ]
7260
7492
 
7261
7493
  [[package]]
@@ -7301,7 +7533,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
7301
7533
  dependencies = [
7302
7534
  "proc-macro2",
7303
7535
  "quote",
7304
- "syn",
7536
+ "syn 2.0.111",
7305
7537
  ]
7306
7538
 
7307
7539
  [[package]]
@@ -7355,7 +7587,7 @@ dependencies = [
7355
7587
  "darling 0.21.3",
7356
7588
  "proc-macro2",
7357
7589
  "quote",
7358
- "syn",
7590
+ "syn 2.0.111",
7359
7591
  ]
7360
7592
 
7361
7593
  [[package]]
@@ -7451,7 +7683,7 @@ version = "0.17.0"
7451
7683
  source = "registry+https://github.com/rust-lang/crates.io-index"
7452
7684
  checksum = "4255126f310d2ba20048db6321c81ab376f6a6735608bf11f0785c41f01f64e3"
7453
7685
  dependencies = [
7454
- "ahash",
7686
+ "ahash 0.8.12",
7455
7687
  "halfbrown",
7456
7688
  "once_cell",
7457
7689
  "ref-cast",
@@ -7530,7 +7762,7 @@ dependencies = [
7530
7762
  "heck 0.5.0",
7531
7763
  "proc-macro2",
7532
7764
  "quote",
7533
- "syn",
7765
+ "syn 2.0.111",
7534
7766
  ]
7535
7767
 
7536
7768
  [[package]]
@@ -7619,7 +7851,7 @@ checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
7619
7851
  dependencies = [
7620
7852
  "proc-macro2",
7621
7853
  "quote",
7622
- "syn",
7854
+ "syn 2.0.111",
7623
7855
  ]
7624
7856
 
7625
7857
  [[package]]
@@ -7699,7 +7931,7 @@ dependencies = [
7699
7931
  "proc-macro2",
7700
7932
  "quote",
7701
7933
  "rustversion",
7702
- "syn",
7934
+ "syn 2.0.111",
7703
7935
  ]
7704
7936
 
7705
7937
  [[package]]
@@ -7711,7 +7943,7 @@ dependencies = [
7711
7943
  "heck 0.5.0",
7712
7944
  "proc-macro2",
7713
7945
  "quote",
7714
- "syn",
7946
+ "syn 2.0.111",
7715
7947
  ]
7716
7948
 
7717
7949
  [[package]]
@@ -7720,6 +7952,17 @@ version = "2.6.1"
7720
7952
  source = "registry+https://github.com/rust-lang/crates.io-index"
7721
7953
  checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
7722
7954
 
7955
+ [[package]]
7956
+ name = "syn"
7957
+ version = "1.0.109"
7958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7959
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
7960
+ dependencies = [
7961
+ "proc-macro2",
7962
+ "quote",
7963
+ "unicode-ident",
7964
+ ]
7965
+
7723
7966
  [[package]]
7724
7967
  name = "syn"
7725
7968
  version = "2.0.111"
@@ -7748,7 +7991,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
7748
7991
  dependencies = [
7749
7992
  "proc-macro2",
7750
7993
  "quote",
7751
- "syn",
7994
+ "syn 2.0.111",
7752
7995
  ]
7753
7996
 
7754
7997
  [[package]]
@@ -7778,6 +8021,23 @@ version = "0.2.0"
7778
8021
  source = "registry+https://github.com/rust-lang/crates.io-index"
7779
8022
  checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
7780
8023
 
8024
+ [[package]]
8025
+ name = "tap"
8026
+ version = "1.0.1"
8027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
8028
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
8029
+
8030
+ [[package]]
8031
+ name = "tar"
8032
+ version = "0.4.46"
8033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
8034
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
8035
+ dependencies = [
8036
+ "filetime",
8037
+ "libc",
8038
+ "xattr",
8039
+ ]
8040
+
7781
8041
  [[package]]
7782
8042
  name = "target-lexicon"
7783
8043
  version = "0.12.16"
@@ -7829,7 +8089,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
7829
8089
  dependencies = [
7830
8090
  "proc-macro2",
7831
8091
  "quote",
7832
- "syn",
8092
+ "syn 2.0.111",
7833
8093
  ]
7834
8094
 
7835
8095
  [[package]]
@@ -7840,7 +8100,7 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
7840
8100
  dependencies = [
7841
8101
  "proc-macro2",
7842
8102
  "quote",
7843
- "syn",
8103
+ "syn 2.0.111",
7844
8104
  ]
7845
8105
 
7846
8106
  [[package]]
@@ -7956,7 +8216,7 @@ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
7956
8216
  dependencies = [
7957
8217
  "proc-macro2",
7958
8218
  "quote",
7959
- "syn",
8219
+ "syn 2.0.111",
7960
8220
  ]
7961
8221
 
7962
8222
  [[package]]
@@ -8097,7 +8357,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
8097
8357
  dependencies = [
8098
8358
  "proc-macro2",
8099
8359
  "quote",
8100
- "syn",
8360
+ "syn 2.0.111",
8101
8361
  ]
8102
8362
 
8103
8363
  [[package]]
@@ -8156,7 +8416,7 @@ checksum = "f03ca4cb38206e2bef0700092660bb74d696f808514dae47fa1467cbfe26e96e"
8156
8416
  dependencies = [
8157
8417
  "proc-macro2",
8158
8418
  "quote",
8159
- "syn",
8419
+ "syn 2.0.111",
8160
8420
  ]
8161
8421
 
8162
8422
  [[package]]
@@ -8167,7 +8427,7 @@ checksum = "3c36781cc0e46a83726d9879608e4cf6c2505237e263a8eb8c24502989cfdb28"
8167
8427
  dependencies = [
8168
8428
  "proc-macro2",
8169
8429
  "quote",
8170
- "syn",
8430
+ "syn 2.0.111",
8171
8431
  ]
8172
8432
 
8173
8433
  [[package]]
@@ -8178,7 +8438,7 @@ checksum = "016c26257f448222014296978b2c8456e2cad4de308c35bdb1e383acd569ef5b"
8178
8438
  dependencies = [
8179
8439
  "proc-macro2",
8180
8440
  "quote",
8181
- "syn",
8441
+ "syn 2.0.111",
8182
8442
  ]
8183
8443
 
8184
8444
  [[package]]
@@ -8214,7 +8474,7 @@ checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
8214
8474
  dependencies = [
8215
8475
  "proc-macro2",
8216
8476
  "quote",
8217
- "syn",
8477
+ "syn 2.0.111",
8218
8478
  ]
8219
8479
 
8220
8480
  [[package]]
@@ -8369,7 +8629,7 @@ dependencies = [
8369
8629
  "proc-macro-error2",
8370
8630
  "proc-macro2",
8371
8631
  "quote",
8372
- "syn",
8632
+ "syn 2.0.111",
8373
8633
  ]
8374
8634
 
8375
8635
  [[package]]
@@ -8472,6 +8732,7 @@ dependencies = [
8472
8732
  "cfg-if",
8473
8733
  "once_cell",
8474
8734
  "rustversion",
8735
+ "serde",
8475
8736
  "wasm-bindgen-macro",
8476
8737
  "wasm-bindgen-shared",
8477
8738
  ]
@@ -8509,7 +8770,7 @@ dependencies = [
8509
8770
  "bumpalo",
8510
8771
  "proc-macro2",
8511
8772
  "quote",
8512
- "syn",
8773
+ "syn 2.0.111",
8513
8774
  "wasm-bindgen-shared",
8514
8775
  ]
8515
8776
 
@@ -8616,7 +8877,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
8616
8877
  dependencies = [
8617
8878
  "proc-macro2",
8618
8879
  "quote",
8619
- "syn",
8880
+ "syn 2.0.111",
8620
8881
  ]
8621
8882
 
8622
8883
  [[package]]
@@ -8627,7 +8888,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
8627
8888
  dependencies = [
8628
8889
  "proc-macro2",
8629
8890
  "quote",
8630
- "syn",
8891
+ "syn 2.0.111",
8631
8892
  ]
8632
8893
 
8633
8894
  [[package]]
@@ -8851,6 +9112,25 @@ version = "0.6.2"
8851
9112
  source = "registry+https://github.com/rust-lang/crates.io-index"
8852
9113
  checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
8853
9114
 
9115
+ [[package]]
9116
+ name = "wyz"
9117
+ version = "0.5.1"
9118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9119
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
9120
+ dependencies = [
9121
+ "tap",
9122
+ ]
9123
+
9124
+ [[package]]
9125
+ name = "xattr"
9126
+ version = "1.6.1"
9127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9128
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
9129
+ dependencies = [
9130
+ "libc",
9131
+ "rustix",
9132
+ ]
9133
+
8854
9134
  [[package]]
8855
9135
  name = "xmlparser"
8856
9136
  version = "0.13.6"
@@ -8880,7 +9160,7 @@ checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e"
8880
9160
  dependencies = [
8881
9161
  "arraydeque",
8882
9162
  "encoding_rs",
8883
- "hashlink",
9163
+ "hashlink 0.11.0",
8884
9164
  ]
8885
9165
 
8886
9166
  [[package]]
@@ -8902,7 +9182,7 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
8902
9182
  dependencies = [
8903
9183
  "proc-macro2",
8904
9184
  "quote",
8905
- "syn",
9185
+ "syn 2.0.111",
8906
9186
  "synstructure",
8907
9187
  ]
8908
9188
 
@@ -8929,7 +9209,7 @@ checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
8929
9209
  dependencies = [
8930
9210
  "proc-macro2",
8931
9211
  "quote",
8932
- "syn",
9212
+ "syn 2.0.111",
8933
9213
  ]
8934
9214
 
8935
9215
  [[package]]
@@ -8949,7 +9229,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
8949
9229
  dependencies = [
8950
9230
  "proc-macro2",
8951
9231
  "quote",
8952
- "syn",
9232
+ "syn 2.0.111",
8953
9233
  "synstructure",
8954
9234
  ]
8955
9235
 
@@ -8989,7 +9269,7 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
8989
9269
  dependencies = [
8990
9270
  "proc-macro2",
8991
9271
  "quote",
8992
- "syn",
9272
+ "syn 2.0.111",
8993
9273
  ]
8994
9274
 
8995
9275
  [[package]]
@@ -9021,6 +9301,20 @@ dependencies = [
9021
9301
  "zopfli",
9022
9302
  ]
9023
9303
 
9304
+ [[package]]
9305
+ name = "zip"
9306
+ version = "6.0.0"
9307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9308
+ checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
9309
+ dependencies = [
9310
+ "arbitrary",
9311
+ "crc32fast",
9312
+ "flate2",
9313
+ "indexmap 2.13.0",
9314
+ "memchr",
9315
+ "zopfli",
9316
+ ]
9317
+
9024
9318
  [[package]]
9025
9319
  name = "zlib-rs"
9026
9320
  version = "0.5.5"