Skip to content

Commit

Permalink
bump stun to v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Dec 7, 2024
1 parent cf84d54 commit 42a0e0b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion stun/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stun"
version = "0.6.0"
version = "0.7.0"
authors = ["Rain Liu <yuliu@webrtc.rs>"]
edition = "2021"
description = "A pure Rust implementation of STUN"
Expand Down
2 changes: 1 addition & 1 deletion turn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down

0 comments on commit 42a0e0b

Please sign in to comment.