Skip to content

Commit 373ebd4

Browse files
author
yngrtc
committed
bump dtls to v0.8.0, ice to v0.10.0, rtcp to v0.10.0, rtp to v0.9.0 and sctp to v0.9.0
1 parent e2a7677 commit 373ebd4

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/data"
1111

1212
[dependencies]
1313
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
14-
sctp = { version = "0.8", path = "../sctp", package = "webrtc-sctp" }
14+
sctp = { version = "0.9", path = "../sctp", package = "webrtc-sctp" }
1515

1616
tokio = { version = "1.32.0", features = ["full"] }
1717
bytes = "1"

dtls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-dtls"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of DTLS"

ice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-ice"
3-
version = "0.9.1"
3+
version = "0.10.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of ICE"

interceptor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ repository = "https://github.com/webrtc-rs/interceptor"
1111

1212
[dependencies]
1313
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14-
rtp = { version = "0.8", path = "../rtp" }
15-
rtcp = { version = "0.9", path = "../rtcp" }
14+
rtp = { version = "0.9", path = "../rtp" }
15+
rtcp = { version = "0.10", path = "../rtcp" }
1616
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }
1717

1818
tokio = { version = "1.32.0", features = ["sync", "time"] }

media/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/media"
1111

1212
[dependencies]
13-
rtp = { version = "0.8", path = "../rtp" }
13+
rtp = { version = "0.9", path = "../rtp" }
1414

1515
byteorder = "1"
1616
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.9.0"
3+
version = "0.10.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
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.8.0"
3+
version = "0.9.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of RTP"

sctp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-sctp"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of SCTP"

srtp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ util = { version = "0.8", path = "../util", package = "webrtc-util", default-fea
1919
"buffer",
2020
"marshal",
2121
] }
22-
rtp = { version = "0.8", path = "../rtp" }
23-
rtcp = { version = "0.9", path = "../rtcp" }
22+
rtp = { version = "0.9", path = "../rtp" }
23+
rtcp = { version = "0.10", path = "../rtcp" }
2424

2525
byteorder = "1"
2626
bytes = "1"

webrtc/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ readme = "../README.md"
1212

1313
[dependencies]
1414
data = { version = "0.7", path = "../data", package = "webrtc-data" }
15-
dtls = { version = "0.7", path = "../dtls", package = "webrtc-dtls" }
16-
ice = { version = "0.9", path = "../ice", package = "webrtc-ice" }
15+
dtls = { version = "0.8", path = "../dtls", package = "webrtc-dtls" }
16+
ice = { version = "0.10", path = "../ice", package = "webrtc-ice" }
1717
interceptor = { version = "0.9", path = "../interceptor" }
1818
mdns = { version = "0.6", path = "../mdns", package = "webrtc-mdns" }
1919
media = { version = "0.6", path = "../media", package = "webrtc-media" }
20-
rtcp = { version = "0.9", path = "../rtcp" }
21-
rtp = { version = "0.8", path = "../rtp" }
22-
sctp = { version = "0.8", path = "../sctp", package = "webrtc-sctp" }
20+
rtcp = { version = "0.10", path = "../rtcp" }
21+
rtp = { version = "0.9", path = "../rtp" }
22+
sctp = { version = "0.9", path = "../sctp", package = "webrtc-sctp" }
2323
sdp = { version = "0.6", path = "../sdp" }
2424
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }
2525
stun = { version = "0.5", path = "../stun" }

0 commit comments

Comments
 (0)