Skip to content
Open
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
16 changes: 8 additions & 8 deletions 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 crates/plumb-cdp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ url = { workspace = true }
# Pure: no I/O, no script execution, no resource fetching. The
# `deterministic` feature pins internal hash-map iteration so byte-stable
# output holds across runs.
scraper = { version = "0.26", default-features = false, features = ["errors", "deterministic"] }
scraper = { version = "0.27", default-features = false, features = ["errors", "deterministic"] }
# Tree storage backing `scraper::Html::tree`. Used by `snapshot_from_html`
# to walk parent/child links via `NodeRef`.
ego-tree = "0.11"
Expand Down
2 changes: 1 addition & 1 deletion crates/plumb-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ indexmap = { workspace = true }
# CSS selector matcher for `--selector` (PRD §15.4). `errors` exposes the
# selector parser's error types; `deterministic` keeps internal hash maps
# deterministic so filter output is byte-stable across runs.
scraper = { version = "0.26", default-features = false, features = ["errors", "deterministic"] }
scraper = { version = "0.27", default-features = false, features = ["errors", "deterministic"] }
# Filesystem watcher for `plumb watch` (#83). The debouncer collapses
# bursts (editor save → temp file dance → atomic rename) into a single
# cycle so the lint inner call runs at most once per debounce window.
Expand Down
Loading