Skip to content

Commit 96a721e

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

File tree

19 files changed

+96
-96
lines changed

19 files changed

+96
-96
lines changed

Cargo.lock

Lines changed: 41 additions & 41 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: 3 additions & 3 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"
@@ -56,7 +56,7 @@ chacha20poly1305 = "0.10.1"
5656
env_logger = "0.11.3"
5757
chrono = "0.4.28"
5858
clap = "3"
59-
hub = { path = "examples/hub" }
59+
hub = { version = "0.1.0", path = "examples/hub", package = "webrtc-hub" }
6060

6161
[features]
6262
pem = ["dep:pem"]

dtls/examples/hub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "hub"
2+
name = "webrtc-hub"
33
version = "0.1.0"
44
edition = "2021"
55

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tokio = { version = "1.32.0", features = ["full"] }
1919
env_logger = "0.11.3"
2020
clap = "3"
2121
hyper = { version = "0.14.27", features = ["full"] }
22-
signal = { path = "examples/signal" }
22+
signal = { version = "0.1.0", path = "examples/signal", package = "webrtc-signal" }
2323
tokio-util = { version = "0.7", features = ["codec"] }
2424
anyhow = "1"
2525
chrono = "0.4.28"

examples/examples/signal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "signal"
2+
name = "webrtc-signal"
33
version = "0.1.0"
44
edition = "2021"
55

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"

0 commit comments

Comments
 (0)