Skip to content

Commit

Permalink
social tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robtfm committed Oct 15, 2024
1 parent 1793d3f commit 337dcab
Show file tree
Hide file tree
Showing 4 changed files with 233 additions and 66 deletions.
100 changes: 46 additions & 54 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ bevy_simple_text_input = { git = "https://github.com/robtfm/bevy_simple_text_inp
directories = "5"
uuid = { version = "1.7", features = ["v4"] }
build-time = "0.1.3"
async-tungstenite = { version = "0.22.0", features = ["async-std-runtime", "async-tls"] }
async-tungstenite = { version = "0.28.0", features = ["async-std-runtime", "async-tls"] }
dcl-rpc = { version = "2.3.5", default-features = false, features=["client", "websockets", "codegen", "server", "tungstenite"] }
async-trait = "0.1.68"
fastrand = "2"
Expand Down Expand Up @@ -163,6 +163,7 @@ bevy_simple_text_input = { workspace = true }
prost-build = "0.11.8"

[patch.crates-io]
dcl-rpc = { git = "https://github.com/decentraland/rpc-rust", branch = "chore/bump-tokio-tungstenite" }
bevy = { git = "https://github.com/robtfm/bevy", branch = "release-0.14-dcl-cosmic-noimage" }
# bevy = { path="../bevy" }
ffmpeg-next = { git = "https://github.com/robtfm/rust-ffmpeg", branch = "audio-linesize-0-6.1" }
Expand Down
7 changes: 3 additions & 4 deletions crates/comms/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@

use std::{collections::HashMap, sync::Arc};

use async_tungstenite::tungstenite::{
client::IntoClientRequest,
http::{HeaderValue, Uri},
};
use async_tungstenite::tungstenite::{client::IntoClientRequest, http::HeaderValue};
#[cfg(feature = "livekit")]
use livekit::{
options::TrackPublishOptions,
Expand All @@ -26,6 +23,8 @@ fn test_tls() {
#[cfg(feature = "livekit")]
#[test]
fn test_livekit() {
use isahc::http::Uri;

let mut wallet = Wallet::default();
wallet.finalize_as_guest();

Expand Down
Loading

0 comments on commit 337dcab

Please sign in to comment.