From bbed040fb38eb9620b8def42f066bfc4f26f77f6 Mon Sep 17 00:00:00 2001 From: yngrtc Date: Sat, 7 Dec 2024 08:33:44 -0800 Subject: [PATCH] bump util to v0.10.0 --- Cargo.lock | 2 +- data/Cargo.toml | 2 +- dtls/Cargo.toml | 2 +- ice/Cargo.toml | 2 +- interceptor/Cargo.toml | 2 +- mdns/Cargo.toml | 2 +- rtcp/Cargo.toml | 2 +- rtp/Cargo.toml | 2 +- sctp/Cargo.toml | 2 +- srtp/Cargo.toml | 2 +- stun/Cargo.toml | 2 +- turn/Cargo.toml | 2 +- util/Cargo.toml | 2 +- webrtc/Cargo.toml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 308e44864..233f1a772 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2987,7 +2987,7 @@ dependencies = [ [[package]] name = "webrtc-util" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-global-executor", "async-trait", diff --git a/data/Cargo.toml b/data/Cargo.toml index 73209a232..689813300 100644 --- a/data/Cargo.toml +++ b/data/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/data" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] } +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" } tokio = { version = "1.32.0", features = [ diff --git a/dtls/Cargo.toml b/dtls/Cargo.toml index 4fe9120fe..0b177e641 100644 --- a/dtls/Cargo.toml +++ b/dtls/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/dtls" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } byteorder = "1" rand_core = "0.6" diff --git a/ice/Cargo.toml b/ice/Cargo.toml index e3cbd15be..b6182f26b 100644 --- a/ice/Cargo.toml +++ b/ice/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/ice" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] } +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" } mdns = { version = "0.7.0", path = "../mdns", package = "webrtc-mdns" } diff --git a/interceptor/Cargo.toml b/interceptor/Cargo.toml index 3edbcd3d0..d155cfe9f 100644 --- a/interceptor/Cargo.toml +++ b/interceptor/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/interceptor" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] } rtp = { version = "0.11.0", path = "../rtp" } rtcp = { version = "0.11.0", path = "../rtcp" } srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" } diff --git a/mdns/Cargo.toml b/mdns/Cargo.toml index 82264ef4b..217917ea2 100644 --- a/mdns/Cargo.toml +++ b/mdns/Cargo.toml @@ -14,7 +14,7 @@ default = [ "reuse_port" ] reuse_port = [] [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] } tokio = { version = "1.32.0", features = [ "fs", diff --git a/rtcp/Cargo.toml b/rtcp/Cargo.toml index e5ed6febc..30271a96d 100644 --- a/rtcp/Cargo.toml +++ b/rtcp/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/rtcp" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] } bytes = "1" thiserror = "1" diff --git a/rtp/Cargo.toml b/rtp/Cargo.toml index 6c54464aa..4e616962b 100644 --- a/rtp/Cargo.toml +++ b/rtp/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/rtp" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] } bytes = "1" rand = "0.8" diff --git a/sctp/Cargo.toml b/sctp/Cargo.toml index 7fa514434..62880f959 100644 --- a/sctp/Cargo.toml +++ b/sctp/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/sctp" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } arc-swap = "1" tokio = { version = "1.32.0", features = [ diff --git a/srtp/Cargo.toml b/srtp/Cargo.toml index 097b89db1..5c13bcf82 100644 --- a/srtp/Cargo.toml +++ b/srtp/Cargo.toml @@ -14,7 +14,7 @@ openssl = ["dep:openssl"] vendored-openssl = ["openssl/vendored"] [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = [ +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = [ "conn", "buffer", "marshal", diff --git a/stun/Cargo.toml b/stun/Cargo.toml index 4fa04d60c..eb81b57ee 100644 --- a/stun/Cargo.toml +++ b/stun/Cargo.toml @@ -14,7 +14,7 @@ default = [] bench = [] [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } tokio = { version = "1.32.0", features = [ "fs", diff --git a/turn/Cargo.toml b/turn/Cargo.toml index 7f196782b..cf48e45f7 100644 --- a/turn/Cargo.toml +++ b/turn/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs" repository = "https://github.com/webrtc-rs/webrtc/tree/master/turn" [dependencies] -util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] } +util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] } stun = { version = "0.6.0", path = "../stun" } tokio = { version = "1.32.0", features = [ diff --git a/util/Cargo.toml b/util/Cargo.toml index bf0f68b45..4ecfe3e5c 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-util" -version = "0.9.0" +version = "0.10.0" authors = ["Rain Liu "] edition = "2021" description = "Utilities for WebRTC.rs stack" diff --git a/webrtc/Cargo.toml b/webrtc/Cargo.toml index ec82abd3d..385d5ee56 100644 --- a/webrtc/Cargo.toml +++ b/webrtc/Cargo.toml @@ -24,7 +24,7 @@ sdp = { version = "0.7.0", path = "../sdp" } srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" } stun = { version = "0.6.0", path = "../stun" } turn = { version = "0.8.0", path = "../turn" } -util = { version = "0.9.0", path = "../util", package = "webrtc-util" } +util = { version = "0.10.0", path = "../util", package = "webrtc-util" } arc-swap = "1" tokio = { version = "1.32.0", features = [