Skip to content

Commit

Permalink
bump rtp to v0.8.0 and rtcp to v0.9.0, srtp to v0.10.0, interceptor t…
Browse files Browse the repository at this point in the history
…o v0.9.0
  • Loading branch information
yngrtc committed Jun 19, 2023
1 parent 742973b commit 3e59974
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions interceptor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ rust-version = "1.63.0"

[dependencies]
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
rtp = { version = "0.7.0", path = "../rtp" }
rtcp = { version = "0.8.0", path = "../rtcp" }
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
rtp = { version = "0.8.0", path = "../rtp" }
rtcp = { version = "0.9.0", path = "../rtcp" }
srtp = { version = "0.10.0", path = "../srtp", package = "webrtc-srtp" }

tokio = { version = "1.19", features = ["sync", "time"] }
async-trait = "0.1.56"
Expand Down
4 changes: 2 additions & 2 deletions media/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-media"
version = "0.6.0"
version = "0.6.1"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of WebRTC Media API"
Expand All @@ -13,7 +13,7 @@ rust-version = "1.63.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rtp = { version = "0.7.0", path = "../rtp" }
rtp = { version = "0.8.0", path = "../rtp" }

byteorder = "1"
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion rtcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtcp"
version = "0.8.0"
version = "0.9.0"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of RTCP"
Expand Down
2 changes: 1 addition & 1 deletion rtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtp"
version = "0.7.0"
version = "0.8.0"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of RTP"
Expand Down
6 changes: 3 additions & 3 deletions srtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-srtp"
version = "0.9.1"
version = "0.10.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of SRTP"
Expand All @@ -16,8 +16,8 @@ util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-f
"buffer",
"marshal",
] }
rtp = { version = "0.7.0", path = "../rtp" }
rtcp = { version = "0.8.0", path = "../rtcp" }
rtp = { version = "0.8.0", path = "../rtp" }
rtcp = { version = "0.9.0", path = "../rtcp" }

byteorder = "1"
bytes = "1"
Expand Down
8 changes: 4 additions & 4 deletions webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ dtls = { version = "0.7.1", path = "../dtls", package = "webrtc-dtls" }
ice = { version = "0.9.0", path = "../ice", package = "webrtc-ice" }
interceptor = { version = "0.9.0", path = "../interceptor" }
mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }
media = { version = "0.6.0", path = "../media", package = "webrtc-media" }
rtcp = { version = "0.8.0", path = "../rtcp" }
rtp = { version = "0.7.0", path = "../rtp" }
media = { version = "0.6.1", path = "../media", package = "webrtc-media" }
rtcp = { version = "0.9.0", path = "../rtcp" }
rtp = { version = "0.8.0", path = "../rtp" }
sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
sdp = { version = "0.5.2", path = "../sdp" }
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
srtp = { version = "0.10.0", path = "../srtp", package = "webrtc-srtp" }
stun = { version = "0.4.3", path = "../stun" }
turn = { version = "0.6.0", path = "../turn" }
util = { version = "0.7.0", path = "../util", package = "webrtc-util" }
Expand Down

0 comments on commit 3e59974

Please sign in to comment.