From 42a0e0b9fae0c45a4b8a3fed849fc3431d7aeb82 Mon Sep 17 00:00:00 2001 From: yngrtc Date: Sat, 7 Dec 2024 08:38:43 -0800 Subject: [PATCH] bump stun to v0.7.0 --- Cargo.lock | 2 +- ice/Cargo.toml | 2 +- stun/Cargo.toml | 2 +- turn/Cargo.toml | 2 +- webrtc/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cfba53069..27f7f5e7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2329,7 +2329,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "stun" -version = "0.6.0" +version = "0.7.0" dependencies = [ "base64", "clap 3.2.25", diff --git a/ice/Cargo.toml b/ice/Cargo.toml index 7d3bcb342..73f6ab4a6 100644 --- a/ice/Cargo.toml +++ b/ice/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/ice" [dependencies] util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] } turn = { version = "0.8.0", path = "../turn" } -stun = { version = "0.6.0", path = "../stun" } +stun = { version = "0.7.0", path = "../stun" } mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" } arc-swap = "1" diff --git a/stun/Cargo.toml b/stun/Cargo.toml index eb81b57ee..c9c18e5cb 100644 --- a/stun/Cargo.toml +++ b/stun/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stun" -version = "0.6.0" +version = "0.7.0" authors = ["Rain Liu "] edition = "2021" description = "A pure Rust implementation of STUN" diff --git a/turn/Cargo.toml b/turn/Cargo.toml index cf48e45f7..06bbead6e 100644 --- a/turn/Cargo.toml +++ b/turn/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/turn" [dependencies] util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] } -stun = { version = "0.6.0", path = "../stun" } +stun = { version = "0.7.0", path = "../stun" } tokio = { version = "1.32.0", features = [ "fs", diff --git a/webrtc/Cargo.toml b/webrtc/Cargo.toml index e1ee426c9..0dd77b98b 100644 --- a/webrtc/Cargo.toml +++ b/webrtc/Cargo.toml @@ -22,7 +22,7 @@ rtp = { version = "0.11.0", path = "../rtp" } sctp = { version = "0.10.0", path = "../sctp", package = "webrtc-sctp" } sdp = { version = "0.7.0", path = "../sdp" } srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" } -stun = { version = "0.6.0", path = "../stun" } +stun = { version = "0.7.0", path = "../stun" } turn = { version = "0.8.0", path = "../turn" } util = { version = "0.10.0", path = "../util", package = "webrtc-util" }