Skip to content

Commit

Permalink
bump rtp/rtcp to v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Dec 7, 2024
1 parent 26f5360 commit 1e9da4c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions interceptor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/interceptor"

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

tokio = { version = "1.32.0", 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 @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/webrtc/tree/master/media"

[dependencies]
rtp = { version = "0.11.0", path = "../rtp" }
rtp = { version = "0.12.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.11.0"
version = "0.12.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.11.0"
version = "0.12.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 @@ -19,8 +19,8 @@ util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-
"buffer",
"marshal",
] }
rtp = { version = "0.11.0", path = "../rtp" }
rtcp = { version = "0.11.0", path = "../rtcp" }
rtp = { version = "0.12.0", path = "../rtp" }
rtcp = { version = "0.12.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 @@ -17,8 +17,8 @@ ice = { version = "0.12.0", path = "../ice", package = "webrtc-ice" }
interceptor = { version = "0.12.0", path = "../interceptor" }
mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" }
media = { version = "0.8.0", path = "../media", package = "webrtc-media" }
rtcp = { version = "0.11.0", path = "../rtcp" }
rtp = { version = "0.11.0", path = "../rtp" }
rtcp = { version = "0.12.0", path = "../rtcp" }
rtp = { version = "0.12.0", path = "../rtp" }
sctp = { version = "0.10.0", path = "../sctp", package = "webrtc-sctp" }
sdp = { version = "0.7.0", path = "../sdp" }
srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" }
Expand Down

0 comments on commit 1e9da4c

Please sign in to comment.