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
75 changes: 68 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ reqwest-websocket = "0.6"
# TLS / 握手全自管(TLS 走 tokio-rustls,见 ws_passthrough.rs),不用 tokio-tungstenite 自带 TLS,
# 故无需 TLS feature。remote-control 仍用 reqwest-websocket。[followup MOC-239] 该 relay 默认禁用
# (上游 ALB WS 实证不可达),保留待验证。
tokio-tungstenite = "0.29"
tokio-tungstenite = "0.30"
# [MOC-234] 经 VPN 代理建上游 WS 隧道走 SOCKS5(proxy 端解析域名,绕开客户端 fake-ip)。
tokio-socks = "0.5"
# [MOC-234] rustls 0.23 进程级 CryptoProvider:依赖树有多个 backend 候选时无法自动选,做 TLS
Expand All @@ -57,7 +57,7 @@ base64 = "0.22"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
indexmap = "2"
tokio-tungstenite = "0.29"
tokio-tungstenite = "0.30"
tempfile = "3"
# [MOC-195] 集成测试 main 前隔离 home(tests/common/mod.rs),版本跟 lock 内既有传递依赖一致
ctor = "1.0"
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ flate2 = "1.0"
# fs2-0.4.3/src/unix.rs)/ Windows 走 LockFileEx,OS 级独占。
fs2 = "0.4"
# CDP WebSocket 连接(Codex Plugins 解锁器)
tokio-tungstenite = { version = "0.29", features = ["rustls-tls-webpki-roots"] }
tokio-tungstenite = { version = "0.30", features = ["rustls-tls-webpki-roots"] }
# futures 用于 WebSocket Stream/Sink 的 split 操作
futures = "0.3"
# 诊断流量查看器(MOC-169)SSE:把 trace_store 的 broadcast::Receiver 适配成 axum Sse Stream
Expand Down
Loading