Skip to content

Commit 46891b8

Browse files
author
yngrtc
committed
bump sdp to v0.6.0 and util to v0.8.0
1 parent 3db1408 commit 46891b8

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

data/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/data"
1111

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

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

dtls/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/dtls"
1111

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

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

ice/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/ice"
1111

1212
[dependencies]
13-
util = { version = "0.7", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
13+
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
1414
turn = { version = "0.6", path = "../turn" }
1515
stun = { version = "0.4", path = "../stun" }
1616
mdns = { version = "0.5", path = "../mdns", package = "webrtc-mdns" }

interceptor/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/interceptor"
1111

1212
[dependencies]
13-
util = { version = "0.7", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
13+
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
1414
rtp = { version = "0.8", path = "../rtp" }
1515
rtcp = { version = "0.9", path = "../rtcp" }
1616
srtp = { version = "0.10", path = "../srtp", package = "webrtc-srtp" }

mdns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ default = [ "reuse_port" ]
1414
reuse_port = []
1515

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

1919
tokio = { version = "1.32.0", features = ["full"] }
2020
socket2 = { version = "0.5", features = ["all"] }

rtcp/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/rtcp"
1111

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

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

rtp/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/rtp"
1111

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

1515
bytes = "1"
1616
rand = "0.8"

sctp/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/sctp"
1111

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

1515
arc-swap = "1"
1616
tokio = { version = "1.32.0", features = ["full"] }

sdp/Cargo.toml

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

srtp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ openssl = ["dep:openssl"]
1414
vendored-openssl = ["openssl/vendored"]
1515

1616
[dependencies]
17-
util = { version = "0.7", path = "../util", package = "webrtc-util", default-features = false, features = [
17+
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = [
1818
"conn",
1919
"buffer",
2020
"marshal",

0 commit comments

Comments
 (0)