Skip to content

Commit bbed040

Browse files
author
yngrtc
committed
bump util to v0.10.0
1 parent 672dee9 commit bbed040

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

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

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

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

1212
[dependencies]
13-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
13+
util = { version = "0.10.0", 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/webrtc/tree/master/ice"
1111

1212
[dependencies]
13-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
13+
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
1414
turn = { version = "0.8.0", path = "../turn" }
1515
stun = { version = "0.6.0", path = "../stun" }
1616
mdns = { version = "0.7.0", 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/webrtc/tree/master/interceptor"
1111

1212
[dependencies]
13-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
13+
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
1414
rtp = { version = "0.11.0", path = "../rtp" }
1515
rtcp = { version = "0.11.0", path = "../rtcp" }
1616
srtp = { version = "0.13.0", 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.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
17+
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
1818

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

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

1212
[dependencies]
13-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
13+
util = { version = "0.10.0", 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/webrtc/tree/master/rtp"
1111

1212
[dependencies]
13-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
13+
util = { version = "0.10.0", 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/webrtc/tree/master/sctp"
1111

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

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

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.9.0", path = "../util", package = "webrtc-util", default-features = false, features = [
17+
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = [
1818
"conn",
1919
"buffer",
2020
"marshal",

stun/Cargo.toml

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

1616
[dependencies]
17-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
17+
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
1818

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

turn/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/webrtc/tree/master/turn"
1111

1212
[dependencies]
13-
util = { version = "0.9.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] }
13+
util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet"] }
1414
stun = { version = "0.6.0", path = "../stun" }
1515

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

util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-util"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2021"
66
description = "Utilities for WebRTC.rs stack"

webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ sdp = { version = "0.7.0", path = "../sdp" }
2424
srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" }
2525
stun = { version = "0.6.0", path = "../stun" }
2626
turn = { version = "0.8.0", path = "../turn" }
27-
util = { version = "0.9.0", path = "../util", package = "webrtc-util" }
27+
util = { version = "0.10.0", path = "../util", package = "webrtc-util" }
2828

2929
arc-swap = "1"
3030
tokio = { version = "1.32.0", features = [

0 commit comments

Comments
 (0)