Skip to content

Commit

Permalink
Update libdatachannel to 0.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lerouxrgd committed Dec 8, 2023
1 parent 1593f8f commit 143b6fd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datachannel"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
description = "Rust wrappers for libdatachannel."
repository = "https://github.com/lerouxrgd/datachannel-rs"
Expand All @@ -10,7 +10,7 @@ license = "MPL-2.0"
readme = "README.md"

[dependencies]
datachannel-sys = { path = "datachannel-sys", version = "0.19.1" }
datachannel-sys = { path = "datachannel-sys", version = "0.19.4" }
derivative = "2"
log = { version = "0.4", optional = true }
parking_lot = "0.12"
Expand All @@ -19,10 +19,10 @@ tracing = { version = "0.1", optional = true }
webrtc-sdp = "0.3"

[dev-dependencies]
async-channel = "1"
async-channel = "2"
# async-std = { version = "1", features = ["attributes"] }
# async-tungstenite = { version = "0.23", features = ["async-std-runtime"] }
async-tungstenite = { version = "0.23", features = ["tokio-runtime"] }
# async-tungstenite = { version = "0.24", features = ["async-std-runtime"] }
async-tungstenite = { version = "0.24", features = ["tokio-runtime"] }
crossbeam-channel = "0.5"
env_logger = "0.10"
futures-util = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion datachannel-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datachannel-sys"
version = "0.19.1"
version = "0.19.4"
authors = ["Romain Leroux <[email protected]>"]
edition = "2021"
links = "datachannel"
Expand Down
3 changes: 2 additions & 1 deletion tests/websocket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ async fn run_client(peer_id: Uuid, input: chan::Receiver<Uuid>, output: chan::Se
let pc = RtcPeerConnection::new(&conf, conn).unwrap();
conns.lock().unwrap().insert(dest_id, pc);

let (tx_ready, mut rx_ready) = chan::bounded(1);
let (tx_ready, rx_ready) = chan::bounded(1);
pin_mut!(rx_ready);
let pipe = DataPipe::new_sender(output.clone(), tx_ready);

let opts = DataChannelInit::default()
Expand Down

0 comments on commit 143b6fd

Please sign in to comment.