Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ members = [
]

[workspace.package]
version = "0.8.50"
version = "0.8.51"
edition = "2024"
publish = false

Expand Down
8 changes: 4 additions & 4 deletions apps/blitz-preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ build = "build.rs"
# with it the only genuinely headless path, from building at all.
anyrender = { package = "ps-anyrender", version = "^0.13.0" }
anyrender_vello_cpu = { package = "ps-anyrender-vello-cpu", version = "^0.16.0", optional = true }
blitz-dom = { package = "ps-blitz-dom", version = "^0.3", features = ["system-fonts"] }
blitz-paint = { package = "ps-blitz-paint", version = "^0.3", features = ["scrollbars"] }
blitz-script = { package = "ps-blitz-script", version = "^0.3", features = ["system-fonts"] }
blitz-traits = { package = "ps-blitz-traits", version = "^0.3" }
blitz-dom = { package = "ps-blitz-dom", version = "^0.4", features = ["system-fonts"] }
blitz-paint = { package = "ps-blitz-paint", version = "^0.4", features = ["scrollbars"] }
blitz-script = { package = "ps-blitz-script", version = "^0.4", features = ["system-fonts"] }
blitz-traits = { package = "ps-blitz-traits", version = "^0.4" }
brotli = { version = "^8.0.4", default-features = false, features = ["std"] }
png = { version = "^0.18.1", optional = true }
tauri = { version = "^2.11.5", default-features = false, features = ["compression"] }
Expand Down
5 changes: 1 addition & 4 deletions apps/blitz-preview/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// `Document` provides `inner_mut` and `poll`, which both the capture path
// and the inspection host call. Unconditional: it is used in every
// configuration now.
use blitz_dom::Document;
use blitz_dom::DocumentConfig;
use blitz_script::{DefaultScriptFetcher, FetchError, ScriptDocument, ScriptFetcher};
#[cfg(all(not(test), feature = "capture"))]
Expand Down Expand Up @@ -530,6 +526,7 @@ fn main() {
#[cfg(test)]
mod tests {
use super::*;
use blitz_dom::Document;

#[test]
fn embedded_assets_are_compressed_and_round_trip() {
Expand Down
17 changes: 8 additions & 9 deletions apps/gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,14 @@ tauri-runtime-blitz = { version = "^0.3", optional = true, features = ["macos-pr
# resolved anyrender from crates.io at 0.12.0, and the build stopped at
# "failed to select a version".
#
# A caret is what was meant. `cargo update` moves it, `Cargo.lock` records what
# was resolved, and anything else asking for the same range gets the same crate
# rather than a second copy of the engine - which is the failure that reads as
# `expected ScriptDocument, found ScriptDocument` with both types naming one
# file. Working against a local checkout stays possible through the `[patch]`
# entries in `.cargo/config.toml`, so the default exercises what a release
# actually resolves.
blitz-dom = { package = "ps-blitz-dom", version = "^0.3", features = ["system-fonts", "parallel-construct"], optional = true }
blitz-script = { package = "ps-blitz-script", version = "^0.3", features = ["system-fonts"], optional = true }
# A caret is what was meant. Every lockless build resolves the compatible family
# afresh, and anything else asking for the same range gets the same crate rather
# than a second copy of the engine. Two incompatible families produce the failure
# that reads as `expected ScriptDocument, found ScriptDocument` with both types
# naming one file. Local renderer work uses `.cargo/local-renderer.toml` through
# `scripts/local-renderer.sh`, so the default exercises the published graph.
blitz-dom = { package = "ps-blitz-dom", version = "^0.4", features = ["system-fonts", "parallel-construct"], optional = true }
blitz-script = { package = "ps-blitz-script", version = "^0.4", features = ["system-fonts"], optional = true }
brotli = { version = "8.0.4", default-features = false, features = ["std"], optional = true }
url = { version = "2.5.8", optional = true }
tauri-plugin-updater = "2"
Expand Down
Loading