Skip to content

Commit

Permalink
[RTP/RTCP] bump rtp version to v0.7.0 and rtcp version to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed May 27, 2023
1 parent bc5c52e commit 7bf1438
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions interceptor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ 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.6.7", path = "../rtp" }
rtcp = { version = "0.7.2", path = "../rtcp" }
rtp = { version = "0.7.0", path = "../rtp" }
rtcp = { version = "0.8.0", path = "../rtcp" }
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }

tokio = { version = "1.19", features = ["sync", "time"] }
Expand Down
2 changes: 1 addition & 1 deletion media/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.7", path = "../rtp" }
rtp = { version = "0.7.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.7.2"
version = "0.8.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.6.8"
version = "0.7.0"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of RTP"
Expand Down
4 changes: 2 additions & 2 deletions srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-f
"buffer",
"marshal",
] }
rtp = { version = "0.6.7", path = "../rtp" }
rtcp = { version = "0.7.0", path = "../rtcp" }
rtp = { version = "0.7.0", path = "../rtp" }
rtcp = { version = "0.8.0", path = "../rtcp" }

byteorder = "1"
bytes = "1"
Expand Down
4 changes: 2 additions & 2 deletions webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ ice = { version = "0.9.0", path = "../ice", package = "webrtc-ice" }
interceptor = { version = "0.8.2", 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.7.0", path = "../rtcp" }
rtp = { version = "0.6.7", path = "../rtp" }
rtcp = { version = "0.8.0", path = "../rtcp" }
rtp = { version = "0.7.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" }
Expand Down

0 comments on commit 7bf1438

Please sign in to comment.