Skip to content

Commit

Permalink
bump rtp v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Feb 23, 2024
1 parent 5b05bb0 commit 6a2e2e5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion interceptor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/interceptor"

[dependencies]
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
rtp = { version = "0.9", path = "../rtp" }
rtp = { version = "0.10", path = "../rtp" }
rtcp = { version = "0.10", path = "../rtcp" }
srtp = { version = "0.11", path = "../srtp", package = "webrtc-srtp" }

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/media"

[dependencies]
rtp = { version = "0.9", path = "../rtp" }
rtp = { version = "0.10", path = "../rtp" }

byteorder = "1"
bytes = "1"
Expand Down
4 changes: 2 additions & 2 deletions rtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtp"
version = "0.9.0"
version = "0.10.0"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of RTP"
Expand All @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtp"

[dependencies]
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
util = { version = "0.8.1", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }

bytes = "1"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ util = { version = "0.8", path = "../util", package = "webrtc-util", default-fea
"buffer",
"marshal",
] }
rtp = { version = "0.9", path = "../rtp" }
rtp = { version = "0.10", path = "../rtp" }
rtcp = { version = "0.10", path = "../rtcp" }

byteorder = "1"
Expand Down
2 changes: 1 addition & 1 deletion webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interceptor = { version = "0.10", path = "../interceptor" }
mdns = { version = "0.6", path = "../mdns", package = "webrtc-mdns" }
media = { version = "0.7", path = "../media", package = "webrtc-media" }
rtcp = { version = "0.10", path = "../rtcp" }
rtp = { version = "0.9", path = "../rtp" }
rtp = { version = "0.10", path = "../rtp" }
sctp = { version = "0.9", path = "../sctp", package = "webrtc-sctp" }
sdp = { version = "0.6", path = "../sdp" }
srtp = { version = "0.11", path = "../srtp", package = "webrtc-srtp" }
Expand Down

0 comments on commit 6a2e2e5

Please sign in to comment.