Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ path = "./crates/quarto-yaml-validation"
path = "./crates/quarto-error-reporting"

[workspace.dependencies.quarto-source-map]
path = "./crates/quarto-source-map"
version = "0.1.0"

[workspace.dependencies.quarto-xml]
path = "./crates/quarto-xml"
Expand Down
426 changes: 426 additions & 0 deletions claude-notes/designs/cross-package-error-codes.md

Large diffs are not rendered by default.

319 changes: 319 additions & 0 deletions claude-notes/plans/2026-06-26-extract-error-reporting-foundation.md

Large diffs are not rendered by default.

496 changes: 496 additions & 0 deletions claude-notes/plans/2026-06-26-extract-quarto-yaml-validation-design.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/pampa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tree-sitter-qmd = { workspace = true }
comrak = { version = "0.52.0", default-features = false }
comrak-to-pandoc = { path = "../comrak-to-pandoc" }
quarto-error-reporting = { path = "../quarto-error-reporting" }
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
quarto-yaml = { path = "../quarto-yaml" }
quarto-config = { path = "../quarto-config" }
quarto-parse-errors = { path = "../quarto-parse-errors" }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-ast-reconcile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = "Three-phase AST reconciliation for preserving source locations"

[dependencies]
quarto-pandoc-types = { path = "../quarto-pandoc-types" }
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
hashlink = { version = "0.11.0", features = ["serde_impl"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-citeproc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Citation processing engine using CSL styles"
quarto-csl = { path = "../quarto-csl" }
quarto-error-reporting = { path = "../quarto-error-reporting" }
quarto-pandoc-types = { path = "../quarto-pandoc-types" }
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
quarto-xml = { path = "../quarto-xml" }
hashlink = "0.11.0"
rust-embed = { version = "8", features = ["include-exclude"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
description = "Configuration merging with source tracking for Quarto"

[dependencies]
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
quarto-yaml = { path = "../quarto-yaml" }
quarto-pandoc-types = { path = "../quarto-pandoc-types" }
quarto-error-reporting = { path = "../quarto-error-reporting" }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-csl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "CSL (Citation Style Language) parsing with source tracking for Qu

[dependencies]
quarto-error-reporting = { path = "../quarto-error-reporting" }
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
quarto-xml = { path = "../quarto-xml" }
thiserror = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-doctemplate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ quarto-treesitter-ast = { workspace = true }
# Error reporting infrastructure
quarto-parse-errors = { path = "../quarto-parse-errors" }
quarto-error-reporting = { path = "../quarto-error-reporting" }
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }

# Serialization (for TemplateValue conversion from JSON)
serde = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-error-reporting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Error reporting and diagnostic messages for Quarto"

[dependencies]
# Source location tracking
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }

# Error reporting
ariadne = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-pandoc-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true
description = "Pandoc AST type definitions for Quarto"

[dependencies]
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
hashlink = { version = "0.11.0", features = ["serde_impl"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/quarto-parse-errors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository.workspace = true

[dependencies]
quarto-error-reporting = { path = "../quarto-error-reporting" }
quarto-source-map = { path = "../quarto-source-map" }
quarto-source-map = { workspace = true }
tree-sitter = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0"
Expand Down
18 changes: 0 additions & 18 deletions crates/quarto-source-map/Cargo.toml

This file was deleted.

Loading
Loading