Skip to content

Commit

Permalink
bump rtp to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Mar 11, 2024
1 parent e1d3109 commit 4e9d94c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions rtc-rtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtc-rtp"
version = "0.1.0"
version = "0.2.0"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2021"
description = "RTC RTP in Rust"
Expand All @@ -12,14 +12,14 @@ repository = "https://github.com/webrtc-rs/rtc"
[dependencies]
shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["marshal"] }

bytes = "1"
rand = "0.8"
thiserror = "1.0"
serde = { version = "1", features = ["derive"] }
bytes = "1.5.0"
rand = "0.8.5"
thiserror = "1.0.57"
serde = { version = "1.0.197", features = ["derive"] }

[dev-dependencies]
chrono = "0.4.34"
criterion = "0.5"
chrono = "0.4.35"
criterion = "0.5.1"

[[bench]]
name = "packet_bench"
Expand Down
2 changes: 1 addition & 1 deletion rtc-srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/rtc"

[dependencies]
shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["crypto", "marshal", "replay"] }
rtp = { version = "0.1", path = "../rtc-rtp", package = "rtc-rtp" }
rtp = { version = "0.2.0", path = "../rtc-rtp", package = "rtc-rtp" }
rtcp = { version = "0.1", path = "../rtc-rtcp", package = "rtc-rtcp" }

byteorder = "1"
Expand Down

0 comments on commit 4e9d94c

Please sign in to comment.