Skip to content

Commit

Permalink
bump dtls to v0.8.0, ice to v0.10.0, rtcp to v0.10.0, rtp to v0.9.0 a…
Browse files Browse the repository at this point in the history
…nd sctp to v0.9.0
  • Loading branch information
yngrtc committed Sep 10, 2023
1 parent e2a7677 commit 373ebd4
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/webrtc-rs/data"

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

tokio = { version = "1.32.0", features = ["full"] }
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion dtls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-dtls"
version = "0.7.2"
version = "0.8.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of DTLS"
Expand Down
2 changes: 1 addition & 1 deletion ice/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-ice"
version = "0.9.1"
version = "0.10.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of ICE"
Expand Down
4 changes: 2 additions & 2 deletions interceptor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ 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.8", path = "../rtp" }
rtcp = { version = "0.9", path = "../rtcp" }
rtp = { version = "0.9", path = "../rtp" }
rtcp = { version = "0.10", path = "../rtcp" }
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }

tokio = { version = "1.32.0", features = ["sync", "time"] }
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.8", path = "../rtp" }
rtp = { version = "0.9", path = "../rtp" }

byteorder = "1"
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion rtcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtcp"
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 RTCP"
Expand Down
2 changes: 1 addition & 1 deletion rtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtp"
version = "0.8.0"
version = "0.9.0"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of RTP"
Expand Down
2 changes: 1 addition & 1 deletion sctp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-sctp"
version = "0.8.0"
version = "0.9.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2021"
description = "A pure Rust implementation of SCTP"
Expand Down
4 changes: 2 additions & 2 deletions srtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ util = { version = "0.8", path = "../util", package = "webrtc-util", default-fea
"buffer",
"marshal",
] }
rtp = { version = "0.8", path = "../rtp" }
rtcp = { version = "0.9", path = "../rtcp" }
rtp = { version = "0.9", path = "../rtp" }
rtcp = { version = "0.10", path = "../rtcp" }

byteorder = "1"
bytes = "1"
Expand Down
10 changes: 5 additions & 5 deletions webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ readme = "../README.md"

[dependencies]
data = { version = "0.7", path = "../data", package = "webrtc-data" }
dtls = { version = "0.7", path = "../dtls", package = "webrtc-dtls" }
ice = { version = "0.9", path = "../ice", package = "webrtc-ice" }
dtls = { version = "0.8", path = "../dtls", package = "webrtc-dtls" }
ice = { version = "0.10", path = "../ice", package = "webrtc-ice" }
interceptor = { version = "0.9", path = "../interceptor" }
mdns = { version = "0.6", path = "../mdns", package = "webrtc-mdns" }
media = { version = "0.6", path = "../media", package = "webrtc-media" }
rtcp = { version = "0.9", path = "../rtcp" }
rtp = { version = "0.8", path = "../rtp" }
sctp = { version = "0.8", path = "../sctp", package = "webrtc-sctp" }
rtcp = { version = "0.10", path = "../rtcp" }
rtp = { version = "0.9", path = "../rtp" }
sctp = { version = "0.9", path = "../sctp", package = "webrtc-sctp" }
sdp = { version = "0.6", path = "../sdp" }
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }
stun = { version = "0.5", path = "../stun" }
Expand Down

0 comments on commit 373ebd4

Please sign in to comment.