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
32 changes: 11 additions & 21 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
]

[workspace.package]
version = "0.8.6"
version = "0.8.7"
edition = "2024"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion apps/blitz-preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ blitz-traits = { path = "../../../blitz-rust/packages/blitz-traits" }
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"] }
tauri-runtime-blitz = { git = "https://github.com/pathscale/tauri-runtime-blitz.git", rev = "070ab3a2fd460d7c9b2f3f341e7d6c50af669682" }
tauri-runtime-blitz = { git = "https://github.com/pathscale/tauri-runtime-blitz.git", branch = "master" }
url = "=2.5.8"

[build-dependencies]
Expand Down
7 changes: 5 additions & 2 deletions apps/gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,13 @@ wt-migrate = { path = "../../crates/wt-migrate" }
agent-abstraction = "0.4.15"
agency-proxy-client = "=0.1.6"
agency-proxy-protocol = "=0.1.6"
agent-experimental = { git = "https://gitlab.com/anonymous-28282828282/agent-experimental.git", rev = "afe3a70e02ef844a092385859ab8f5f3ab8a039e", default-features = false, optional = true }
agent-experimental = { git = "https://gitlab.com/anonymous-28282828282/agent-experimental.git", branch = "master", default-features = false, optional = true }
promptsyntax = "0.1.0"
shlex = "1.3"
az-core.workspace = true
# Pinned rather than tracking master, unlike the engine deps above. Master has
# moved on to an `arctic-wt` that cargo cannot select alongside this workspace,
# so `branch = "master"` fails to resolve rather than building something newer.
worktable = { git = "https://github.com/pathscale/WorkTable.git", rev = "7ab68d17c31e7dd3e56a364ffbb559dd0819b317" }
# The `worktable!` macro emits code that names these by bare path rather than
# through a re-export, so a consumer of the macro has to declare them too.
Expand All @@ -72,7 +75,7 @@ chrono = { version = "0.4", default-features = false, features = ["clock", "serd
tokio = { version = "1", features = ["process", "rt-multi-thread", "time"] }
# Default features are off; see `webview-runtime` for why.
tauri = { version = "2", default-features = false, features = ["compression"] }
tauri-runtime-blitz = { git = "https://github.com/pathscale/tauri-runtime-blitz.git", rev = "71d7bd897fc936b54fc4731e56600b9497e402ad", optional = true }
tauri-runtime-blitz = { git = "https://github.com/pathscale/tauri-runtime-blitz.git", branch = "master", optional = true }
blitz-dom = { package = "ps-blitz-dom", git = "https://github.com/pathscale/ps-blitz.git", branch = "master", features = ["system-fonts", "parallel-construct"], optional = true }
blitz-script = { package = "ps-blitz-script", git = "https://github.com/pathscale/ps-blitz.git", branch = "master", features = ["system-fonts"], optional = true }
brotli = { version = "8.0.4", default-features = false, features = ["std"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/blitz-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish.workspace = true
# `tauri-runtime-blitz` for the same types would build a browser engine to send
# a wheel event. `cargo tree -p blitz-bench` is the check.
[dependencies]
blitz-control-protocol = { git = "https://github.com/pathscale/tauri-runtime-blitz.git", rev = "9edbec23ce4ca9bcb052a364577fd9a736fd81a3" }
blitz-control-protocol = { git = "https://github.com/pathscale/tauri-runtime-blitz.git", branch = "master" }
# The same framing the server uses, from the same crate, for the same reason as
# the protocol types: a hand-rolled length-prefix reader is how the Python
# client hung on its first malformed frame.
Expand Down
Loading