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
60 changes: 56 additions & 4 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/rustynes-mobile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ zip = { version = "8", default-features = false, features = ["deflate"] }
# STUN responder, exactly like `rustynes-netplay`'s `tests/nat_loopback.rs`. The
# blocking `tungstenite` server side mirrors the client the bridge uses; same
# version + pure-rustls features (no OpenSSL) so the dev build stays consistent.
tungstenite = { version = "0.29", default-features = false, features = ["handshake", "rustls-tls-webpki-roots"] }
tungstenite = { version = "0.30", default-features = false, features = ["handshake", "rustls-tls-webpki-roots"] }

[[bin]]
# The binding generator the platform builds invoke:
Expand Down
2 changes: 1 addition & 1 deletion crates/rustynes-netplay/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ serde_json = { version = "1.0", optional = true }
# worker. `rustls-tls-webpki-roots` keeps it pure-Rust TLS (no system OpenSSL),
# which is what lets it cross-compile cleanly to aarch64-linux-android. No async
# runtime: this is the blocking `tungstenite::connect` + `read`/`send` API.
tungstenite = { version = "0.29", default-features = false, features = ["handshake", "rustls-tls-webpki-roots"], optional = true }
tungstenite = { version = "0.30", default-features = false, features = ["handshake", "rustls-tls-webpki-roots"], optional = true }

# v2.5.0 Phase C — WebRTC transport scaffold for the browser (wasm32 only).
# The native build (UDP/std::net) needs none of these; on wasm they back the
Expand Down