diff --git a/Cargo.lock b/Cargo.lock index 233f1a772..cfba53069 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2914,7 +2914,7 @@ dependencies = [ [[package]] name = "webrtc-mdns" -version = "0.7.0" +version = "0.8.0" dependencies = [ "chrono", "clap 3.2.25", diff --git a/ice/Cargo.toml b/ice/Cargo.toml index b6182f26b..7d3bcb342 100644 --- a/ice/Cargo.toml +++ b/ice/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/ice" 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" } +mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" } arc-swap = "1" async-trait = "0.1" diff --git a/mdns/Cargo.toml b/mdns/Cargo.toml index 217917ea2..5d5569ea4 100644 --- a/mdns/Cargo.toml +++ b/mdns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-mdns" -version = "0.7.0" +version = "0.8.0" authors = ["Rain Liu "] edition = "2021" description = "A pure Rust implementation of mDNS" diff --git a/webrtc/Cargo.toml b/webrtc/Cargo.toml index 385d5ee56..e1ee426c9 100644 --- a/webrtc/Cargo.toml +++ b/webrtc/Cargo.toml @@ -15,7 +15,7 @@ data = { version = "0.9.0", path = "../data", package = "webrtc-data" } dtls = { version = "0.10.0", path = "../dtls", package = "webrtc-dtls" } ice = { version = "0.11.0", path = "../ice", package = "webrtc-ice" } interceptor = { version = "0.12.0", path = "../interceptor" } -mdns = { version = "0.7.0", path = "../mdns", package = "webrtc-mdns" } +mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" } media = { version = "0.8.0", path = "../media", package = "webrtc-media" } rtcp = { version = "0.11.0", path = "../rtcp" } rtp = { version = "0.11.0", path = "../rtp" }