From fe7f5b17e9b04457f2c57e9412fce0061cb2ab38 Mon Sep 17 00:00:00 2001 From: yngrtc Date: Sat, 7 Dec 2024 08:49:33 -0800 Subject: [PATCH] bump sctp to v0.11.0 --- Cargo.lock | 2 +- data/Cargo.toml | 2 +- sctp/Cargo.toml | 2 +- webrtc/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 29f4db279..205338640 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "webrtc-sctp" -version = "0.10.0" +version = "0.11.0" dependencies = [ "arc-swap", "async-trait", diff --git a/data/Cargo.toml b/data/Cargo.toml index 689813300..e3dd98006 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/data" [dependencies] util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] } -sctp = { version = "0.10.0", path = "../sctp", package = "webrtc-sctp" } +sctp = { version = "0.11.0", path = "../sctp", package = "webrtc-sctp" } tokio = { version = "1.32.0", features = [ "fs", diff --git a/sctp/Cargo.toml b/sctp/Cargo.toml index 62880f959..8d06ec820 100644 --- a/sctp/Cargo.toml +++ b/sctp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sctp" -version = "0.10.0" +version = "0.11.0" authors = ["Rain Liu "] edition = "2021" description = "A pure Rust implementation of SCTP" diff --git a/webrtc/Cargo.toml b/webrtc/Cargo.toml index 7941358a0..ba77abfaa 100644 --- a/webrtc/Cargo.toml +++ b/webrtc/Cargo.toml @@ -19,7 +19,7 @@ mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" } media = { version = "0.8.0", path = "../media", package = "webrtc-media" } rtcp = { version = "0.12.0", path = "../rtcp" } rtp = { version = "0.12.0", path = "../rtp" } -sctp = { version = "0.10.0", path = "../sctp", package = "webrtc-sctp" } +sctp = { version = "0.11.0", path = "../sctp", package = "webrtc-sctp" } sdp = { version = "0.7.0", path = "../sdp" } srtp = { version = "0.14.0", path = "../srtp", package = "webrtc-srtp" } stun = { version = "0.7.0", path = "../stun" }