Skip to content

Commit f54eb9a

Browse files
author
yngrtc
committed
bump mdns to v0.6.0 and stun to v0.5.0
1 parent 46891b8 commit f54eb9a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

ice/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ repository = "https://github.com/webrtc-rs/ice"
1212
[dependencies]
1313
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
1414
turn = { version = "0.6", path = "../turn" }
15-
stun = { version = "0.4", path = "../stun" }
16-
mdns = { version = "0.5", path = "../mdns", package = "webrtc-mdns" }
15+
stun = { version = "0.5", path = "../stun" }
16+
mdns = { version = "0.6", path = "../mdns", package = "webrtc-mdns" }
1717

1818
arc-swap = "1"
1919
async-trait = "0.1"

mdns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-mdns"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of mDNS"

stun/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stun"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of STUN"

turn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/turn"
1111

1212
[dependencies]
1313
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] }
14-
stun = { version = "0.4", path = "../stun" }
14+
stun = { version = "0.5", path = "../stun" }
1515

1616
tokio = { version = "1.32.0", features = ["full"] }
1717
futures = "0.3"

webrtc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ data = { version = "0.7", path = "../data", package = "webrtc-data" }
1515
dtls = { version = "0.7", path = "../dtls", package = "webrtc-dtls" }
1616
ice = { version = "0.9", path = "../ice", package = "webrtc-ice" }
1717
interceptor = { version = "0.9", path = "../interceptor" }
18-
mdns = { version = "0.5", path = "../mdns", package = "webrtc-mdns" }
18+
mdns = { version = "0.6", path = "../mdns", package = "webrtc-mdns" }
1919
media = { version = "0.6", path = "../media", package = "webrtc-media" }
2020
rtcp = { version = "0.9", path = "../rtcp" }
2121
rtp = { version = "0.8", path = "../rtp" }
2222
sctp = { version = "0.8", path = "../sctp", package = "webrtc-sctp" }
2323
sdp = { version = "0.6", path = "../sdp" }
2424
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }
25-
stun = { version = "0.4", path = "../stun" }
25+
stun = { version = "0.5", path = "../stun" }
2626
turn = { version = "0.6", path = "../turn" }
2727
util = { version = "0.8", path = "../util", package = "webrtc-util" }
2828

0 commit comments

Comments
 (0)