Skip to content

Commit 254a17e

Browse files
Release util version 0.7.0
1 parent 0acb5a4 commit 254a17e

File tree

15 files changed

+16
-15
lines changed

15 files changed

+16
-15
lines changed

data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.60.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
16+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
1717
sctp = { version = "0.6.2", path = "../sctp", package = "webrtc-sctp" }
1818

1919
tokio = { version = "1.19", features = ["full"] }

dtls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.60.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
16+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
1717

1818
byteorder = "1"
1919
rand_core = "0.6.3"

ice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.60.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
16+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
1717
turn = { version = "0.6.0", path = "../turn" }
1818
stun = { version = "0.4.3", path = "../stun" }
1919
mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }

interceptor/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/interceptor"
1111
rust-version = "1.60.0"
1212

1313
[dependencies]
14-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
1515
rtp = { version = "0.6.7", path = "../rtp" }
1616
rtcp = { version = "0.7.0", path = "../rtcp" }
1717
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }

mdns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ default = [ "reuse_port" ]
1717
reuse_port = []
1818

1919
[dependencies]
20-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
20+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
2121

2222
tokio = { version = "1.19", features = ["full"] }
2323
socket2 = { version = "0.4.4", features = ["all"] }

media/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.60.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
16+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1717
rtp = { version = "0.6.7", path = "../rtp" }
1818

1919
byteorder = "1"

rtcp/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/rtcp"
1111
rust-version = "1.60.0"
1212

1313
[dependencies]
14-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
14+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1515

1616
bytes = "1"
1717
thiserror = "1.0"

rtp/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/rtp"
1111
rust-version = "1.60.0"
1212

1313
[dependencies]
14-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
1515

1616
bytes = "1"
1717
rand = "0.8.5"

sctp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.60.0"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
16+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
1717

1818
arc-swap = "1.5"
1919
tokio = { version = "1.19", features = ["full"] }

srtp/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/srtp"
1111
rust-version = "1.60.0"
1212

1313
[dependencies]
14-
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = [
14+
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = [
1515
"conn",
1616
"buffer",
1717
"marshal",

0 commit comments

Comments
 (0)