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
327 changes: 327 additions & 0 deletions claude-notes/plans/2026-07-23-preview-engine-supporting-files.md

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion crates/quarto-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ include_dir = "0.7"
# or other non-CLI consumers. The `quarto` crate enables this via
# `quarto-core/clap`; no other consumer needs it.
clap = { workspace = true, optional = true, features = ["derive"] }
# Capture-doc wire format (engine/capture_files.rs::gzip_captures).
# Needed on wasm32 too — the module compiles on both targets, and
# flate2 (miniz_oxide backend) builds cleanly for wasm.
flate2.workspace = true

[features]
clap = ["dep:clap"]
Expand Down Expand Up @@ -115,7 +119,6 @@ tokio = { version = "1", features = ["sync", "time", "rt-multi-thread", "process
uuid.workspace = true

[dev-dependencies]
flate2.workspace = true
insta.workspace = true
quarto-error-catalog = { workspace = true }
tempfile = "3"
Expand Down
Loading
Loading