Skip to content

Commit 3e59974

Browse files
author
yngrtc
committed
bump rtp to v0.8.0 and rtcp to v0.9.0, srtp to v0.10.0, interceptor to v0.9.0
1 parent 742973b commit 3e59974

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

interceptor/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ rust-version = "1.63.0"
1212

1313
[dependencies]
1414
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
15-
rtp = { version = "0.7.0", path = "../rtp" }
16-
rtcp = { version = "0.8.0", path = "../rtcp" }
17-
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
15+
rtp = { version = "0.8.0", path = "../rtp" }
16+
rtcp = { version = "0.9.0", path = "../rtcp" }
17+
srtp = { version = "0.10.0", path = "../srtp", package = "webrtc-srtp" }
1818

1919
tokio = { version = "1.19", features = ["sync", "time"] }
2020
async-trait = "0.1.56"

media/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-media"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Rain Liu <yliu@webrtc.rs>"]
55
edition = "2021"
66
description = "A pure Rust implementation of WebRTC Media API"
@@ -13,7 +13,7 @@ rust-version = "1.63.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
rtp = { version = "0.7.0", path = "../rtp" }
16+
rtp = { version = "0.8.0", path = "../rtp" }
1717

1818
byteorder = "1"
1919
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.8.0"
3+
version = "0.9.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>", "Michael Uti <utimichael9@gmail.com>"]
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.7.0"
3+
version = "0.8.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>", "Michael Uti <utimichael9@gmail.com>"]
55
edition = "2021"
66
description = "A pure Rust implementation of RTP"

srtp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-srtp"
3-
version = "0.9.1"
3+
version = "0.10.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>"]
55
edition = "2021"
66
description = "A pure Rust implementation of SRTP"
@@ -16,8 +16,8 @@ util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-f
1616
"buffer",
1717
"marshal",
1818
] }
19-
rtp = { version = "0.7.0", path = "../rtp" }
20-
rtcp = { version = "0.8.0", path = "../rtcp" }
19+
rtp = { version = "0.8.0", path = "../rtp" }
20+
rtcp = { version = "0.9.0", path = "../rtcp" }
2121

2222
byteorder = "1"
2323
bytes = "1"

webrtc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ dtls = { version = "0.7.1", path = "../dtls", package = "webrtc-dtls" }
1919
ice = { version = "0.9.0", path = "../ice", package = "webrtc-ice" }
2020
interceptor = { version = "0.9.0", path = "../interceptor" }
2121
mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }
22-
media = { version = "0.6.0", path = "../media", package = "webrtc-media" }
23-
rtcp = { version = "0.8.0", path = "../rtcp" }
24-
rtp = { version = "0.7.0", path = "../rtp" }
22+
media = { version = "0.6.1", path = "../media", package = "webrtc-media" }
23+
rtcp = { version = "0.9.0", path = "../rtcp" }
24+
rtp = { version = "0.8.0", path = "../rtp" }
2525
sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
2626
sdp = { version = "0.5.2", path = "../sdp" }
27-
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
27+
srtp = { version = "0.10.0", path = "../srtp", package = "webrtc-srtp" }
2828
stun = { version = "0.4.3", path = "../stun" }
2929
turn = { version = "0.6.0", path = "../turn" }
3030
util = { version = "0.7.0", path = "../util", package = "webrtc-util" }

0 commit comments

Comments
 (0)