Skip to content

Commit 7bf1438

Browse files
author
yngrtc
committed
[RTP/RTCP] bump rtp version to v0.7.0 and rtcp version to v0.8.0
1 parent bc5c52e commit 7bf1438

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

interceptor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ rust-version = "1.63.0"
1212

1313
[dependencies]
1414
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
15-
rtp = { version = "0.6.7", path = "../rtp" }
16-
rtcp = { version = "0.7.2", path = "../rtcp" }
15+
rtp = { version = "0.7.0", path = "../rtp" }
16+
rtcp = { version = "0.8.0", path = "../rtcp" }
1717
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
1818

1919
tokio = { version = "1.19", features = ["sync", "time"] }

media/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.63.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
rtp = { version = "0.6.7", path = "../rtp" }
16+
rtp = { version = "0.7.0", path = "../rtp" }
1717

1818
byteorder = "1"
1919
bytes = "1"

rtcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtcp"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>", "Michael Uti <utimichael9@gmail.com>"]
55
edition = "2021"
66
description = "A pure Rust implementation of RTCP"

rtp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtp"
3-
version = "0.6.8"
3+
version = "0.7.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>", "Michael Uti <utimichael9@gmail.com>"]
55
edition = "2021"
66
description = "A pure Rust implementation of RTP"

srtp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-f
1616
"buffer",
1717
"marshal",
1818
] }
19-
rtp = { version = "0.6.7", path = "../rtp" }
20-
rtcp = { version = "0.7.0", path = "../rtcp" }
19+
rtp = { version = "0.7.0", path = "../rtp" }
20+
rtcp = { version = "0.8.0", path = "../rtcp" }
2121

2222
byteorder = "1"
2323
bytes = "1"

webrtc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ ice = { version = "0.9.0", path = "../ice", package = "webrtc-ice" }
2020
interceptor = { version = "0.8.2", path = "../interceptor" }
2121
mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }
2222
media = { version = "0.6.0", path = "../media", package = "webrtc-media" }
23-
rtcp = { version = "0.7.0", path = "../rtcp" }
24-
rtp = { version = "0.6.7", path = "../rtp" }
23+
rtcp = { version = "0.8.0", path = "../rtcp" }
24+
rtp = { version = "0.7.0", path = "../rtp" }
2525
sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
2626
sdp = { version = "0.5.2", path = "../sdp" }
2727
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }

0 commit comments

Comments
 (0)