dlin-cli 0.2.0b2__tar.gz → 0.2.1__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 (118) hide show
  1. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/Cargo.lock +56 -314
  2. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/Cargo.toml +5 -5
  3. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/PKG-INFO +60 -30
  4. {dlin_cli-0.2.0b2/crates/dlin → dlin_cli-0.2.1}/README.md +59 -29
  5. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin/Cargo.toml +1 -0
  6. {dlin_cli-0.2.0b2/crates/dlin-core → dlin_cli-0.2.1/crates/dlin}/README.md +59 -29
  7. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin/src/cli.rs +42 -1
  8. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin/src/main.rs +241 -40
  9. dlin_cli-0.2.1/crates/dlin/src/mcp.rs +1289 -0
  10. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin/tests/integration_test.rs +562 -0
  11. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1/crates/dlin-core}/README.md +59 -29
  12. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/cache.rs +50 -7
  13. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/cross_model.rs +26 -4
  14. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/impact.rs +44 -9
  15. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/mod.rs +37 -5
  16. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/schema.rs +9 -5
  17. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/single_model.rs +14 -1
  18. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/tests/cache.rs +129 -16
  19. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/tests/core.rs +3 -0
  20. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/tests/impact.rs +238 -5
  21. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/tests/mod.rs +6 -0
  22. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/types.rs +7 -6
  23. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/manifest.rs +32 -18
  24. dlin_cli-0.2.1/crates/dlin-core/src/parser/manifest_cache.rs +207 -0
  25. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/mod.rs +3 -3
  26. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/project.rs +18 -0
  27. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/column_graph.rs +4 -4
  28. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/json.rs +2 -1
  29. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/LICENSE +0 -0
  30. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/Cargo.toml +0 -0
  31. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/error.rs +0 -0
  32. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/builder.rs +0 -0
  33. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/column_lineage/types.rs +0 -0
  34. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/filter.rs +0 -0
  35. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/impact.rs +0 -0
  36. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/mod.rs +0 -0
  37. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot.snap +0 -0
  38. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot_bfs_pseudoendpoint.snap +0 -0
  39. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot_endpoints_fan_out.snap +0 -0
  40. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot_endpoints_leaf_model.snap +0 -0
  41. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot_multiple_focus_models.snap +0 -0
  42. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot_no_source_exposure.snap +0 -0
  43. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__collapse_snapshot_preserve_focus.snap +0 -0
  44. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__snapshot_transitive_node_type_filter.snap +0 -0
  45. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__snapshot_transitive_select_filter.snap +0 -0
  46. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/graph/snapshots/dlin_core__graph__filter__tests__snapshot_transitive_select_with_node_type.snap +0 -0
  47. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/input.rs +0 -0
  48. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/lib.rs +0 -0
  49. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/cache.rs +0 -0
  50. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/columns.rs +0 -0
  51. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/discovery.rs +0 -0
  52. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/jinja.rs +0 -0
  53. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/sql.rs +0 -0
  54. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/parser/yaml_schema.rs +0 -0
  55. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/ascii.rs +0 -0
  56. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/dot.rs +0 -0
  57. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/html.rs +0 -0
  58. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/impact.rs +0 -0
  59. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/layout.rs +0 -0
  60. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/list.rs +0 -0
  61. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/mermaid.rs +0 -0
  62. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/mod.rs +0 -0
  63. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/plain.rs +0 -0
  64. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_all_transformation_types.snap +0 -0
  65. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_escapes_special_chars.snap +0 -0
  66. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_id_collision_avoided.snap +0 -0
  67. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_impact_indirect.snap +0 -0
  68. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_impact_single.snap +0 -0
  69. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_single_model.snap +0 -0
  70. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__dot_via_path.snap +0 -0
  71. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__impact_mermaid.snap +0 -0
  72. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__impact_mermaid_indirect_edge_label.snap +0 -0
  73. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__impact_plain.snap +0 -0
  74. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__impact_plain_multi_hop.snap +0 -0
  75. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__impact_plain_non_direct_intermediate.snap +0 -0
  76. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__mermaid_dotted_table_name.snap +0 -0
  77. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__mermaid_id_collision_avoided.snap +0 -0
  78. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__mermaid_label_escaping.snap +0 -0
  79. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__mermaid_single_model.snap +0 -0
  80. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__plain_model_path_non_direct_annotation.snap +0 -0
  81. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__plain_no_sources.snap +0 -0
  82. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__column_graph__tests__plain_single_model.snap +0 -0
  83. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__group_by_node_type.snap +0 -0
  84. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__snapshot_all_edge_types.snap +0 -0
  85. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__snapshot_direction_tb.snap +0 -0
  86. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__snapshot_direction_tb_grouped.snap +0 -0
  87. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__snapshot_group_by_directory.snap +0 -0
  88. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__snapshot_lineage.snap +0 -0
  89. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__dot__tests__snapshot_transitive_edges.snap +0 -0
  90. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__html__tests__snapshot_html_json.snap +0 -0
  91. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__impact__tests__snapshot_impact_json.snap +0 -0
  92. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__impact__tests__snapshot_impact_json_with_sql.snap +0 -0
  93. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__impact__tests__snapshot_impact_text.snap +0 -0
  94. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__impact__tests__snapshot_impact_text_with_sql.snap +0 -0
  95. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__json__tests__snapshot_json_with_sql.snap +0 -0
  96. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__json__tests__snapshot_lineage.snap +0 -0
  97. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__json__tests__snapshot_node_metadata.snap +0 -0
  98. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__list__tests__snapshot_list_json.snap +0 -0
  99. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__list__tests__snapshot_list_plain.snap +0 -0
  100. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__group_by_node_type.snap +0 -0
  101. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__mixed_direct_and_transitive_edges.snap +0 -0
  102. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__show_columns_escapes_quotes.snap +0 -0
  103. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__show_columns_lineage.snap +0 -0
  104. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__show_columns_single_model.snap +0 -0
  105. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__show_columns_with_collapse.snap +0 -0
  106. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__show_columns_with_grouping.snap +0 -0
  107. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__snapshot_direction_tb.snap +0 -0
  108. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__snapshot_direction_tb_grouped.snap +0 -0
  109. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__snapshot_group_by_directory.snap +0 -0
  110. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__snapshot_lineage.snap +0 -0
  111. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__mermaid__tests__transitive_edge_rendering.snap +0 -0
  112. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__plain__tests__snapshot_plain.snap +0 -0
  113. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__summary__tests__snapshot_summary_json.snap +0 -0
  114. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/snapshots/dlin_core__render__summary__tests__snapshot_summary_text.snap +0 -0
  115. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/summary.rs +0 -0
  116. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/src/render/svg.rs +0 -0
  117. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/crates/dlin-core/tests/column_lineage_test.rs +0 -0
  118. {dlin_cli-0.2.0b2 → dlin_cli-0.2.1}/pyproject.toml +0 -0
@@ -9,7 +9,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
10
  dependencies = [
11
11
  "cfg-if",
12
- "getrandom 0.3.4",
12
+ "getrandom",
13
13
  "once_cell",
14
14
  "version_check",
15
15
  "zerocopy",
@@ -71,7 +71,7 @@ version = "1.1.5"
71
71
  source = "registry+https://github.com/rust-lang/crates.io-index"
72
72
  checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
73
73
  dependencies = [
74
- "windows-sys 0.61.2",
74
+ "windows-sys",
75
75
  ]
76
76
 
77
77
  [[package]]
@@ -82,7 +82,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
82
82
  dependencies = [
83
83
  "anstyle",
84
84
  "once_cell_polyfill",
85
- "windows-sys 0.61.2",
85
+ "windows-sys",
86
86
  ]
87
87
 
88
88
  [[package]]
@@ -139,9 +139,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
139
139
 
140
140
  [[package]]
141
141
  name = "clap"
142
- version = "4.6.0"
142
+ version = "4.6.1"
143
143
  source = "registry+https://github.com/rust-lang/crates.io-index"
144
- checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
144
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
145
145
  dependencies = [
146
146
  "clap_builder",
147
147
  "clap_derive",
@@ -161,9 +161,9 @@ dependencies = [
161
161
 
162
162
  [[package]]
163
163
  name = "clap_derive"
164
- version = "4.6.0"
164
+ version = "4.6.1"
165
165
  source = "registry+https://github.com/rust-lang/crates.io-index"
166
- checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
166
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
167
167
  dependencies = [
168
168
  "heck",
169
169
  "proc-macro2",
@@ -185,12 +185,11 @@ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
185
185
 
186
186
  [[package]]
187
187
  name = "colored"
188
- version = "2.2.0"
188
+ version = "3.1.1"
189
189
  source = "registry+https://github.com/rust-lang/crates.io-index"
190
- checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
190
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
191
191
  dependencies = [
192
- "lazy_static",
193
- "windows-sys 0.59.0",
192
+ "windows-sys",
194
193
  ]
195
194
 
196
195
  [[package]]
@@ -201,7 +200,7 @@ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
201
200
  dependencies = [
202
201
  "encode_unicode",
203
202
  "libc",
204
- "windows-sys 0.61.2",
203
+ "windows-sys",
205
204
  ]
206
205
 
207
206
  [[package]]
@@ -231,7 +230,7 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
231
230
 
232
231
  [[package]]
233
232
  name = "dlin"
234
- version = "0.2.0-beta.2"
233
+ version = "0.2.1"
235
234
  dependencies = [
236
235
  "anyhow",
237
236
  "clap",
@@ -240,6 +239,7 @@ dependencies = [
240
239
  "path-slash",
241
240
  "polyglot-sql",
242
241
  "regex",
242
+ "serde",
243
243
  "serde-saphyr",
244
244
  "serde_json",
245
245
  "tempfile",
@@ -247,7 +247,7 @@ dependencies = [
247
247
 
248
248
  [[package]]
249
249
  name = "dlin-core"
250
- version = "0.2.0-beta.2"
250
+ version = "0.2.1"
251
251
  dependencies = [
252
252
  "anyhow",
253
253
  "clap",
@@ -313,7 +313,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
313
313
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
314
314
  dependencies = [
315
315
  "libc",
316
- "windows-sys 0.61.2",
316
+ "windows-sys",
317
317
  ]
318
318
 
319
319
  [[package]]
@@ -324,9 +324,9 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
324
324
 
325
325
  [[package]]
326
326
  name = "fixedbitset"
327
- version = "0.4.2"
327
+ version = "0.5.7"
328
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
329
- checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
329
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
330
330
 
331
331
  [[package]]
332
332
  name = "foldhash"
@@ -378,24 +378,11 @@ dependencies = [
378
378
  "cfg-if",
379
379
  "js-sys",
380
380
  "libc",
381
- "r-efi 5.3.0",
381
+ "r-efi",
382
382
  "wasip2",
383
383
  "wasm-bindgen",
384
384
  ]
385
385
 
386
- [[package]]
387
- name = "getrandom"
388
- version = "0.4.2"
389
- source = "registry+https://github.com/rust-lang/crates.io-index"
390
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
391
- dependencies = [
392
- "cfg-if",
393
- "libc",
394
- "r-efi 6.0.0",
395
- "wasip2",
396
- "wasip3",
397
- ]
398
-
399
386
  [[package]]
400
387
  name = "globset"
401
388
  version = "0.4.18"
@@ -409,6 +396,16 @@ dependencies = [
409
396
  "regex-syntax",
410
397
  ]
411
398
 
399
+ [[package]]
400
+ name = "granit-parser"
401
+ version = "0.0.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "b7e736dfe3881c53a7dce0685eb18202d0d9fe6911782f9870946eb9ee89d778"
404
+ dependencies = [
405
+ "arraydeque",
406
+ "smallvec",
407
+ ]
408
+
412
409
  [[package]]
413
410
  name = "hashbrown"
414
411
  version = "0.15.5"
@@ -420,9 +417,9 @@ dependencies = [
420
417
 
421
418
  [[package]]
422
419
  name = "hashbrown"
423
- version = "0.16.1"
420
+ version = "0.17.1"
424
421
  source = "registry+https://github.com/rust-lang/crates.io-index"
425
- checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
422
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
426
423
 
427
424
  [[package]]
428
425
  name = "heck"
@@ -430,29 +427,21 @@ version = "0.5.0"
430
427
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
428
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
432
429
 
433
- [[package]]
434
- name = "id-arena"
435
- version = "2.3.0"
436
- source = "registry+https://github.com/rust-lang/crates.io-index"
437
- checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
438
-
439
430
  [[package]]
440
431
  name = "indexmap"
441
- version = "2.13.0"
432
+ version = "2.14.0"
442
433
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
434
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
444
435
  dependencies = [
445
436
  "equivalent",
446
- "hashbrown 0.16.1",
447
- "serde",
448
- "serde_core",
437
+ "hashbrown 0.17.1",
449
438
  ]
450
439
 
451
440
  [[package]]
452
441
  name = "insta"
453
- version = "1.47.0"
442
+ version = "1.47.2"
454
443
  source = "registry+https://github.com/rust-lang/crates.io-index"
455
- checksum = "6f40e41efb5f592d3a0764f818e2f08e5e21c4f368126f74f37c81bd4af7a0c6"
444
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
456
445
  dependencies = [
457
446
  "console",
458
447
  "once_cell",
@@ -482,23 +471,11 @@ dependencies = [
482
471
  "wasm-bindgen",
483
472
  ]
484
473
 
485
- [[package]]
486
- name = "lazy_static"
487
- version = "1.5.0"
488
- source = "registry+https://github.com/rust-lang/crates.io-index"
489
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
490
-
491
- [[package]]
492
- name = "leb128fmt"
493
- version = "0.1.0"
494
- source = "registry+https://github.com/rust-lang/crates.io-index"
495
- checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
496
-
497
474
  [[package]]
498
475
  name = "libc"
499
- version = "0.2.183"
476
+ version = "0.2.186"
500
477
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
478
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
502
479
 
503
480
  [[package]]
504
481
  name = "linux-raw-sys"
@@ -535,9 +512,9 @@ checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
535
512
 
536
513
  [[package]]
537
514
  name = "minijinja"
538
- version = "2.18.0"
515
+ version = "2.20.0"
539
516
  source = "registry+https://github.com/rust-lang/crates.io-index"
540
- checksum = "328251e58ad8e415be6198888fc207502727dc77945806421ab34f35bf012e7d"
517
+ checksum = "2929e494b2280e1e18959bb2e121da03347ae896896fdfaceaab43c88a02803f"
541
518
  dependencies = [
542
519
  "memo-map",
543
520
  "serde",
@@ -601,12 +578,15 @@ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
601
578
 
602
579
  [[package]]
603
580
  name = "petgraph"
604
- version = "0.6.5"
581
+ version = "0.8.3"
605
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
606
- checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
583
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
607
584
  dependencies = [
608
585
  "fixedbitset",
586
+ "hashbrown 0.15.5",
609
587
  "indexmap",
588
+ "serde",
589
+ "serde_derive",
610
590
  ]
611
591
 
612
592
  [[package]]
@@ -627,16 +607,6 @@ dependencies = [
627
607
  "unicode-segmentation",
628
608
  ]
629
609
 
630
- [[package]]
631
- name = "prettyplease"
632
- version = "0.2.37"
633
- source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
635
- dependencies = [
636
- "proc-macro2",
637
- "syn",
638
- ]
639
-
640
610
  [[package]]
641
611
  name = "proc-macro2"
642
612
  version = "1.0.106"
@@ -661,17 +631,11 @@ version = "5.3.0"
661
631
  source = "registry+https://github.com/rust-lang/crates.io-index"
662
632
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
663
633
 
664
- [[package]]
665
- name = "r-efi"
666
- version = "6.0.0"
667
- source = "registry+https://github.com/rust-lang/crates.io-index"
668
- checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
669
-
670
634
  [[package]]
671
635
  name = "rayon"
672
- version = "1.11.0"
636
+ version = "1.12.0"
673
637
  source = "registry+https://github.com/rust-lang/crates.io-index"
674
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
638
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
675
639
  dependencies = [
676
640
  "either",
677
641
  "rayon-core",
@@ -735,7 +699,7 @@ dependencies = [
735
699
  "errno",
736
700
  "libc",
737
701
  "linux-raw-sys",
738
- "windows-sys 0.61.2",
702
+ "windows-sys",
739
703
  ]
740
704
 
741
705
  [[package]]
@@ -753,17 +717,6 @@ dependencies = [
753
717
  "winapi-util",
754
718
  ]
755
719
 
756
- [[package]]
757
- name = "saphyr-parser-bw"
758
- version = "0.0.608"
759
- source = "registry+https://github.com/rust-lang/crates.io-index"
760
- checksum = "d55ae5ea09894b6d5382621db78f586df37ef18ab581bf32c754e75076b124b1"
761
- dependencies = [
762
- "arraydeque",
763
- "smallvec",
764
- "thiserror 2.0.18",
765
- ]
766
-
767
720
  [[package]]
768
721
  name = "scc"
769
722
  version = "2.4.0"
@@ -785,12 +738,6 @@ version = "3.0.10"
785
738
  source = "registry+https://github.com/rust-lang/crates.io-index"
786
739
  checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
787
740
 
788
- [[package]]
789
- name = "semver"
790
- version = "1.0.27"
791
- source = "registry+https://github.com/rust-lang/crates.io-index"
792
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
793
-
794
741
  [[package]]
795
742
  name = "serde"
796
743
  version = "1.0.228"
@@ -803,19 +750,18 @@ dependencies = [
803
750
 
804
751
  [[package]]
805
752
  name = "serde-saphyr"
806
- version = "0.0.21"
753
+ version = "0.0.26"
807
754
  source = "registry+https://github.com/rust-lang/crates.io-index"
808
- checksum = "4a6fc4aa0da972ba0f51cf5c1bb16e9dba35334adc6831b09b3ffb0ec20bb264"
755
+ checksum = "dcc7fe48e34d02a97bc8e6253b8b91e5a47fe2c47eaacb5149cefbb69922eaf0"
809
756
  dependencies = [
810
757
  "ahash",
811
758
  "annotate-snippets",
812
759
  "base64",
813
760
  "encoding_rs_io",
814
- "getrandom 0.3.4",
761
+ "getrandom",
762
+ "granit-parser",
815
763
  "nohash-hasher",
816
764
  "num-traits",
817
- "regex",
818
- "saphyr-parser-bw",
819
765
  "serde",
820
766
  "smallvec",
821
767
  "zmij",
@@ -843,9 +789,9 @@ dependencies = [
843
789
 
844
790
  [[package]]
845
791
  name = "serde_json"
846
- version = "1.0.149"
792
+ version = "1.0.150"
847
793
  source = "registry+https://github.com/rust-lang/crates.io-index"
848
- checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
794
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
849
795
  dependencies = [
850
796
  "itoa",
851
797
  "memchr",
@@ -922,10 +868,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
922
868
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
923
869
  dependencies = [
924
870
  "fastrand",
925
- "getrandom 0.4.2",
871
+ "getrandom",
926
872
  "once_cell",
927
873
  "rustix",
928
- "windows-sys 0.61.2",
874
+ "windows-sys",
929
875
  ]
930
876
 
931
877
  [[package]]
@@ -986,12 +932,6 @@ version = "0.2.2"
986
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
987
933
  checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
988
934
 
989
- [[package]]
990
- name = "unicode-xid"
991
- version = "0.2.6"
992
- source = "registry+https://github.com/rust-lang/crates.io-index"
993
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
994
-
995
935
  [[package]]
996
936
  name = "utf8parse"
997
937
  version = "0.2.2"
@@ -1023,15 +963,6 @@ dependencies = [
1023
963
  "wit-bindgen",
1024
964
  ]
1025
965
 
1026
- [[package]]
1027
- name = "wasip3"
1028
- version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1029
- source = "registry+https://github.com/rust-lang/crates.io-index"
1030
- checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1031
- dependencies = [
1032
- "wit-bindgen",
1033
- ]
1034
-
1035
966
  [[package]]
1036
967
  name = "wasm-bindgen"
1037
968
  version = "0.2.115"
@@ -1077,47 +1008,13 @@ dependencies = [
1077
1008
  "unicode-ident",
1078
1009
  ]
1079
1010
 
1080
- [[package]]
1081
- name = "wasm-encoder"
1082
- version = "0.244.0"
1083
- source = "registry+https://github.com/rust-lang/crates.io-index"
1084
- checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1085
- dependencies = [
1086
- "leb128fmt",
1087
- "wasmparser",
1088
- ]
1089
-
1090
- [[package]]
1091
- name = "wasm-metadata"
1092
- version = "0.244.0"
1093
- source = "registry+https://github.com/rust-lang/crates.io-index"
1094
- checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1095
- dependencies = [
1096
- "anyhow",
1097
- "indexmap",
1098
- "wasm-encoder",
1099
- "wasmparser",
1100
- ]
1101
-
1102
- [[package]]
1103
- name = "wasmparser"
1104
- version = "0.244.0"
1105
- source = "registry+https://github.com/rust-lang/crates.io-index"
1106
- checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1107
- dependencies = [
1108
- "bitflags",
1109
- "hashbrown 0.15.5",
1110
- "indexmap",
1111
- "semver",
1112
- ]
1113
-
1114
1011
  [[package]]
1115
1012
  name = "winapi-util"
1116
1013
  version = "0.1.11"
1117
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
1118
1015
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1119
1016
  dependencies = [
1120
- "windows-sys 0.61.2",
1017
+ "windows-sys",
1121
1018
  ]
1122
1019
 
1123
1020
  [[package]]
@@ -1126,15 +1023,6 @@ version = "0.2.1"
1126
1023
  source = "registry+https://github.com/rust-lang/crates.io-index"
1127
1024
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1128
1025
 
1129
- [[package]]
1130
- name = "windows-sys"
1131
- version = "0.59.0"
1132
- source = "registry+https://github.com/rust-lang/crates.io-index"
1133
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1134
- dependencies = [
1135
- "windows-targets",
1136
- ]
1137
-
1138
1026
  [[package]]
1139
1027
  name = "windows-sys"
1140
1028
  version = "0.61.2"
@@ -1144,157 +1032,11 @@ dependencies = [
1144
1032
  "windows-link",
1145
1033
  ]
1146
1034
 
1147
- [[package]]
1148
- name = "windows-targets"
1149
- version = "0.52.6"
1150
- source = "registry+https://github.com/rust-lang/crates.io-index"
1151
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1152
- dependencies = [
1153
- "windows_aarch64_gnullvm",
1154
- "windows_aarch64_msvc",
1155
- "windows_i686_gnu",
1156
- "windows_i686_gnullvm",
1157
- "windows_i686_msvc",
1158
- "windows_x86_64_gnu",
1159
- "windows_x86_64_gnullvm",
1160
- "windows_x86_64_msvc",
1161
- ]
1162
-
1163
- [[package]]
1164
- name = "windows_aarch64_gnullvm"
1165
- version = "0.52.6"
1166
- source = "registry+https://github.com/rust-lang/crates.io-index"
1167
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1168
-
1169
- [[package]]
1170
- name = "windows_aarch64_msvc"
1171
- version = "0.52.6"
1172
- source = "registry+https://github.com/rust-lang/crates.io-index"
1173
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1174
-
1175
- [[package]]
1176
- name = "windows_i686_gnu"
1177
- version = "0.52.6"
1178
- source = "registry+https://github.com/rust-lang/crates.io-index"
1179
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1180
-
1181
- [[package]]
1182
- name = "windows_i686_gnullvm"
1183
- version = "0.52.6"
1184
- source = "registry+https://github.com/rust-lang/crates.io-index"
1185
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1186
-
1187
- [[package]]
1188
- name = "windows_i686_msvc"
1189
- version = "0.52.6"
1190
- source = "registry+https://github.com/rust-lang/crates.io-index"
1191
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1192
-
1193
- [[package]]
1194
- name = "windows_x86_64_gnu"
1195
- version = "0.52.6"
1196
- source = "registry+https://github.com/rust-lang/crates.io-index"
1197
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1198
-
1199
- [[package]]
1200
- name = "windows_x86_64_gnullvm"
1201
- version = "0.52.6"
1202
- source = "registry+https://github.com/rust-lang/crates.io-index"
1203
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1204
-
1205
- [[package]]
1206
- name = "windows_x86_64_msvc"
1207
- version = "0.52.6"
1208
- source = "registry+https://github.com/rust-lang/crates.io-index"
1209
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1210
-
1211
1035
  [[package]]
1212
1036
  name = "wit-bindgen"
1213
1037
  version = "0.51.0"
1214
1038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1215
1039
  checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1216
- dependencies = [
1217
- "wit-bindgen-rust-macro",
1218
- ]
1219
-
1220
- [[package]]
1221
- name = "wit-bindgen-core"
1222
- version = "0.51.0"
1223
- source = "registry+https://github.com/rust-lang/crates.io-index"
1224
- checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1225
- dependencies = [
1226
- "anyhow",
1227
- "heck",
1228
- "wit-parser",
1229
- ]
1230
-
1231
- [[package]]
1232
- name = "wit-bindgen-rust"
1233
- version = "0.51.0"
1234
- source = "registry+https://github.com/rust-lang/crates.io-index"
1235
- checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1236
- dependencies = [
1237
- "anyhow",
1238
- "heck",
1239
- "indexmap",
1240
- "prettyplease",
1241
- "syn",
1242
- "wasm-metadata",
1243
- "wit-bindgen-core",
1244
- "wit-component",
1245
- ]
1246
-
1247
- [[package]]
1248
- name = "wit-bindgen-rust-macro"
1249
- version = "0.51.0"
1250
- source = "registry+https://github.com/rust-lang/crates.io-index"
1251
- checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1252
- dependencies = [
1253
- "anyhow",
1254
- "prettyplease",
1255
- "proc-macro2",
1256
- "quote",
1257
- "syn",
1258
- "wit-bindgen-core",
1259
- "wit-bindgen-rust",
1260
- ]
1261
-
1262
- [[package]]
1263
- name = "wit-component"
1264
- version = "0.244.0"
1265
- source = "registry+https://github.com/rust-lang/crates.io-index"
1266
- checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1267
- dependencies = [
1268
- "anyhow",
1269
- "bitflags",
1270
- "indexmap",
1271
- "log",
1272
- "serde",
1273
- "serde_derive",
1274
- "serde_json",
1275
- "wasm-encoder",
1276
- "wasm-metadata",
1277
- "wasmparser",
1278
- "wit-parser",
1279
- ]
1280
-
1281
- [[package]]
1282
- name = "wit-parser"
1283
- version = "0.244.0"
1284
- source = "registry+https://github.com/rust-lang/crates.io-index"
1285
- checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1286
- dependencies = [
1287
- "anyhow",
1288
- "id-arena",
1289
- "indexmap",
1290
- "log",
1291
- "semver",
1292
- "serde",
1293
- "serde_derive",
1294
- "serde_json",
1295
- "unicode-xid",
1296
- "wasmparser",
1297
- ]
1298
1040
 
1299
1041
  [[package]]
1300
1042
  name = "zerocopy"
@@ -3,20 +3,20 @@ members = ["crates/*"]
3
3
  resolver = "3"
4
4
 
5
5
  [workspace.package]
6
- version = "0.2.0-beta.2"
6
+ version = "0.2.1"
7
7
  edition = "2024"
8
8
  license = "MIT"
9
9
  repository = "https://github.com/eitsupi/dlin"
10
10
  homepage = "https://github.com/eitsupi/dlin"
11
11
 
12
12
  [workspace.dependencies]
13
- petgraph = "0.6"
13
+ petgraph = { version = "0.8", features = ["serde-1"] }
14
14
  serde = { version = "1", features = ["derive"] }
15
15
  serde_json = "1"
16
- serde-saphyr = "0.0.21"
16
+ serde-saphyr = "0.0.26"
17
17
  regex = "1"
18
18
  walkdir = "2"
19
- colored = "2"
19
+ colored = "3"
20
20
  anyhow = "1"
21
21
  thiserror = "2"
22
22
  indexmap = "2"
@@ -34,7 +34,7 @@ insta = "1"
34
34
  serial_test = "3.4.0"
35
35
 
36
36
  # internal
37
- dlin-core = { version = "0.2.0-beta.2", path = "crates/dlin-core" }
37
+ dlin-core = { version = "0.2.1", path = "crates/dlin-core" }
38
38
 
39
39
  [workspace.lints.rust]
40
40
  unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }