Skip to content

Commit

Permalink
upgrade stun to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Mar 11, 2024
1 parent f9b4006 commit 05764ac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion reserved/rtc-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/rtc"

[dependencies]
shared = { version = "0.2.0", path = "../../rtc-shared", package = "rtc-shared", default-features = false, features = [] }
stun = { version = "0.1.1", path = "../../rtc-stun", package = "rtc-stun" }
stun = { version = "0.2.0", path = "../../rtc-stun", package = "rtc-stun" }

bytes = "1.4.0"
log = "0.4.16"
Expand Down
2 changes: 1 addition & 1 deletion rtc-ice/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/rtc"

[dependencies]
shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] }
stun = { version = "0.1.1", path = "../rtc-stun", package = "rtc-stun" }
stun = { version = "0.2.0", path = "../rtc-stun", package = "rtc-stun" }

crc = "3.0.1"
log = "0.4.21"
Expand Down
26 changes: 13 additions & 13 deletions rtc-stun/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtc-stun"
version = "0.1.1"
version = "0.2.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "RTC STUN in Rust"
Expand All @@ -16,20 +16,20 @@ bench = []
[dependencies]
shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] }

bytes = "1.4"
lazy_static = "1.4"
url = "2.2"
rand = "0.8"
base64 = "0.22"
subtle = "2.4"
crc = "3.0"
ring = "0.17"
md-5 = "0.10"
thiserror = "1.0"
bytes = "1.5.0"
lazy_static = "1.4.0"
url = "2.5.0"
rand = "0.8.5"
base64 = "0.22.0"
subtle = "2.5.0"
crc = "3.0.1"
ring = "0.17.8"
md-5 = "0.10.6"
thiserror = "1.0.57"

[dev-dependencies]
clap = "4.5"
criterion = "0.5"
clap = "4.5.2"
criterion = "0.5.1"

[[bench]]
name = "bench"
Expand Down

0 comments on commit 05764ac

Please sign in to comment.