Skip to content

Commit

Permalink
bump rtc-rtp to v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Mar 2, 2024
1 parent 62a5e12 commit 984b09d
Show file tree
Hide file tree
Showing 46 changed files with 28 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = [
"rtc-dtls",
"rtc",
"rtcp",
"rtp",
"rtc-rtp",
"sctp",
"rtc-sdp",
"rtc-shared",
Expand Down
File renamed without changes.
File renamed without changes.
26 changes: 26 additions & 0 deletions rtc-rtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "rtc-rtp"
version = "0.1.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "RTC RTP in Rust"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/rtc-rtp"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtc"

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

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

[dev-dependencies]
chrono = "0.4"
criterion = "0.5"

[[bench]]
name = "packet_bench"
harness = false
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 0 additions & 23 deletions rtp/Cargo.toml

This file was deleted.

2 changes: 1 addition & 1 deletion srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"

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

retty = "0.24"
Expand Down

0 comments on commit 984b09d

Please sign in to comment.