Ignore the new Debug message (#6627)

Ignore the new Debug message
This commit is contained in:
Paul Tagliamonte
2025-05-01 11:55:52 -04:00
committed by GitHub
parent 390cedf79f
commit 00148d84d8
3 changed files with 4 additions and 3 deletions

4
rust/Cargo.lock generated
View File

@ -2074,9 +2074,9 @@ dependencies = [
[[package]] [[package]]
name = "kittycad-modeling-cmds" name = "kittycad-modeling-cmds"
version = "0.2.114" version = "0.2.115"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "681ce29b9da92aa6f8bfc003ccb79a9f1a84368e064d68684327b3181dfe16ec" checksum = "e95dfcade93787f8a7529ad7b9b81f038823e273e7684297085ef720962b7497"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

View File

@ -36,7 +36,7 @@ dashmap = { version = "6.1.0" }
http = "1" http = "1"
indexmap = "2.9.0" indexmap = "2.9.0"
kittycad = { version = "0.3.36", default-features = false, features = ["js", "requests"] } kittycad = { version = "0.3.36", default-features = false, features = ["js", "requests"] }
kittycad-modeling-cmds = { version = "0.2.114", features = ["ts-rs", "websocket"] } kittycad-modeling-cmds = { version = "0.2.115", features = ["ts-rs", "websocket"] }
lazy_static = "1.5.0" lazy_static = "1.5.0"
miette = "7.5.0" miette = "7.5.0"
pyo3 = { version = "0.24.1" } pyo3 = { version = "0.24.1" }

View File

@ -780,6 +780,7 @@ fn flatten_modeling_command_responses(
| OkWebSocketResponseData::Export { .. } | OkWebSocketResponseData::Export { .. }
| OkWebSocketResponseData::MetricsRequest { .. } | OkWebSocketResponseData::MetricsRequest { .. }
| OkWebSocketResponseData::ModelingSessionData { .. } | OkWebSocketResponseData::ModelingSessionData { .. }
| OkWebSocketResponseData::Debug { .. }
| OkWebSocketResponseData::Pong { .. } => {} | OkWebSocketResponseData::Pong { .. } => {}
} }
} }