Skip to content

Commit 1e9da4c

Browse files
author
yngrtc
committed
bump rtp/rtcp to v0.12.0
1 parent 26f5360 commit 1e9da4c

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

interceptor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/interceptor"
1111

1212
[dependencies]
1313
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14-
rtp = { version = "0.11.0", path = "../rtp" }
15-
rtcp = { version = "0.11.0", path = "../rtcp" }
14+
rtp = { version = "0.12.0", path = "../rtp" }
15+
rtcp = { version = "0.12.0", path = "../rtcp" }
1616
srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" }
1717

1818
tokio = { version = "1.32.0", features = ["sync", "time"] }

media/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/media"
1111

1212
[dependencies]
13-
rtp = { version = "0.11.0", path = "../rtp" }
13+
rtp = { version = "0.12.0", path = "../rtp" }
1414

1515
byteorder = "1"
1616
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.11.0"
3+
version = "0.12.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
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.11.0"
3+
version = "0.12.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
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
@@ -19,8 +19,8 @@ util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-
1919
"buffer",
2020
"marshal",
2121
] }
22-
rtp = { version = "0.11.0", path = "../rtp" }
23-
rtcp = { version = "0.11.0", path = "../rtcp" }
22+
rtp = { version = "0.12.0", path = "../rtp" }
23+
rtcp = { version = "0.12.0", path = "../rtcp" }
2424

2525
byteorder = "1"
2626
bytes = "1"

webrtc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ ice = { version = "0.12.0", path = "../ice", package = "webrtc-ice" }
1717
interceptor = { version = "0.12.0", path = "../interceptor" }
1818
mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" }
1919
media = { version = "0.8.0", path = "../media", package = "webrtc-media" }
20-
rtcp = { version = "0.11.0", path = "../rtcp" }
21-
rtp = { version = "0.11.0", path = "../rtp" }
20+
rtcp = { version = "0.12.0", path = "../rtcp" }
21+
rtp = { version = "0.12.0", path = "../rtp" }
2222
sctp = { version = "0.10.0", path = "../sctp", package = "webrtc-sctp" }
2323
sdp = { version = "0.7.0", path = "../sdp" }
2424
srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" }

0 commit comments

Comments
 (0)