Skip to content

Commit f3470e9

Browse files
committed
bump webrtc to v0.14.0 with cargo publish --workspace
1 parent 604445f commit f3470e9

File tree

17 files changed

+70
-70
lines changed

17 files changed

+70
-70
lines changed

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data/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-data"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of WebRTC DataChannel API"
@@ -10,8 +10,8 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/data"
1111

1212
[dependencies]
13-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
14-
sctp = { version = "0.12.0", path = "../sctp", package = "webrtc-sctp" }
13+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
14+
sctp = { version = "0.13.0", path = "../sctp", package = "webrtc-sctp" }
1515

1616
tokio = { version = "1.32.0", features = [
1717
"fs",

dtls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dtls"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of DTLS"
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/dtls"
1111

1212
[dependencies]
13-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
13+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
1414

1515
byteorder = "1"
1616
rand_core = "0.6"

dtls/examples/hub/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "hub"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
[dependencies]
7-
util = { version = "0.11.0", path = "../../../util", package = "webrtc-util", default-features = false, features = [
7+
util = { version = "0.12.0", path = "../../../util", package = "webrtc-util", default-features = false, features = [
88
"conn"
99
] }
10-
dtls = { version = "0.12.0", path = "../../" }
10+
dtls = { version = "0.13.0", path = "../../" }
1111

1212
tokio = { version = "1.32.0", features = ["full"] }
1313
rcgen = { version = "0.13", features = ["pem", "x509-parser"] }

ice/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-ice"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of ICE"
@@ -10,10 +10,10 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/ice"
1111

1212
[dependencies]
13-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
14-
turn = { version = "0.10.0", path = "../turn" }
15-
stun = { version = "0.8.0", path = "../stun" }
16-
mdns = { version = "0.9.0", path = "../mdns", package = "webrtc-mdns" }
13+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
14+
turn = { version = "0.11.0", path = "../turn" }
15+
stun = { version = "0.9.0", path = "../stun" }
16+
mdns = { version = "0.10.0", path = "../mdns", package = "webrtc-mdns" }
1717

1818
arc-swap = "1"
1919
async-trait = "0.1"

interceptor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "interceptor"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of Pluggable RTP/RTCP processors"
@@ -10,10 +10,10 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/interceptor"
1111

1212
[dependencies]
13-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14-
rtp = { version = "0.13.0", path = "../rtp" }
15-
rtcp = { version = "0.13.0", path = "../rtcp" }
16-
srtp = { version = "0.15.0", path = "../srtp", package = "webrtc-srtp" }
13+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14+
rtp = { version = "0.14.0", path = "../rtp" }
15+
rtcp = { version = "0.14.0", path = "../rtcp" }
16+
srtp = { version = "0.16.0", path = "../srtp", package = "webrtc-srtp" }
1717

1818
tokio = { version = "1.32.0", features = ["sync", "time"] }
1919
async-trait = "0.1"

mdns/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-mdns"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of mDNS"
@@ -14,7 +14,7 @@ default = ["reuse_port"]
1414
reuse_port = []
1515

1616
[dependencies]
17-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
17+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
1818

1919
tokio = { version = "1.32.0", features = [
2020
"fs",

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.10.0"
3+
version = "0.11.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of WebRTC Media API"
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/media"
1111

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

1515
byteorder = "1"
1616
bytes = "1"

rtcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtcp"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of RTCP"
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/rtcp"
1111

1212
[dependencies]
13-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
13+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1414

1515
bytes = "1"
1616
thiserror = "1"

rtp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtp"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
55
edition = "2021"
66
description = "A pure Rust implementation of RTP"
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/webrtc/tree/master/rtp"
1111

1212
[dependencies]
13-
util = { version = "0.11.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
13+
util = { version = "0.12.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1414

1515
bytes = "1"
1616
rand = "0.9"

0 commit comments

Comments
 (0)