Skip to content

Commit fce192c

Browse files
Update cargo dependencies
Generated by renovateBot
1 parent 8ead5c3 commit fce192c

11 files changed

Lines changed: 100 additions & 139 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ yuv-sys = { version = "0.3.14", path = "yuv-sys" }
6161
anyhow = "1.0"
6262
bytes = "1.10"
6363
clap = "4.5"
64-
console-subscriber = "0.1"
64+
console-subscriber = "0.5"
6565
env_logger = "0.11"
6666
from_variants = "1.0.2"
6767
futures = "0.3"
@@ -73,7 +73,7 @@ parking_lot = "0.12"
7373
prost = "0.14"
7474
prost-build = "0.14"
7575
prost-types = "0.14"
76-
rand = "0.9"
76+
rand = "0.10"
7777
serde = "1"
7878
serde_json = "1.0"
7979
thiserror = "2"

device-info/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ libc = "0.2"
1616
core-foundation = "0.10"
1717

1818
[target.'cfg(target_os = "windows")'.dependencies]
19-
windows-sys = { version = "0.59", features = [
19+
windows-sys = { version = "0.61", features = [
2020
"Win32_System_Registry",
2121
"Win32_System_SystemInformation",
2222
"Win32_System_Power",
2323
] }
2424

2525
[target.'cfg(target_os = "android")'.dependencies]
26-
jni = "0.21"
26+
jni = "0.22"
2727

2828
[target.'cfg(target_arch = "wasm32")'.dependencies]
2929
web-sys = { version = "0.3", features = ["Navigator", "Window"] }

libwebrtc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ serde_json = { workspace = true }
2323
thiserror = { workspace = true }
2424

2525
[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies]
26-
glib = { version = "0.21.3", optional = true }
26+
glib = { version = "0.22.0", optional = true }
2727

2828
[target.'cfg(target_os = "android")'.dependencies]
29-
jni = "0.21"
29+
jni = "0.22"
3030

3131
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
3232
webrtc-sys = { workspace = true }

livekit-api/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,27 +103,27 @@ __rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]
103103
livekit-protocol = { workspace = true }
104104
thiserror = { workspace = true }
105105
serde = { workspace = true, features = ["derive"] }
106-
sha2 = "0.10"
106+
sha2 = "0.11"
107107
url = "2.3"
108108
log = { workspace = true }
109109
parking_lot = { workspace = true }
110-
prost = "0.12"
111-
pbjson-types = "0.6"
110+
prost = "0.14"
111+
pbjson-types = "0.9"
112112

113113
# webhooks
114114
serde_json = { workspace = true, optional = true }
115-
base64 = { version = "0.21", optional = true, features = ["std"] }
115+
base64 = { version = "0.22", optional = true, features = ["std"] }
116116

117117
# access_token: HS256 only, via the in-crate HMAC CryptoProvider (jwt_provider.rs).
118118
# Dropping jsonwebtoken's rust_crypto bundle avoids linking RSA/EC/EdDSA.
119119
jsonwebtoken = { version = "10", default-features = false, optional = true }
120-
hmac = { version = "0.12", optional = true }
120+
hmac = { version = "0.13", optional = true }
121121
signature = { version = "2", optional = true }
122122

123123
# signal_client
124124
livekit-runtime = { workspace = true, optional = true}
125125
tokio-tungstenite = { version = "0.29", features = ["url"], optional = true }
126-
async-tungstenite = { version = "0.29", features = [ "async-std-runtime", "async-native-tls", "url"], optional = true }
126+
async-tungstenite = { version = "0.34", features = [ "async-std-runtime", "async-native-tls", "url"], optional = true }
127127
tokio = { workspace = true, default-features = false, features = ["sync", "macros", "signal", "io-util", "net"], optional = true }
128128
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12", "ring"], optional = true }
129129
rustls-native-certs = { version = "0.8", optional = true }
@@ -132,7 +132,7 @@ bytes = { workspace = true, optional = true }
132132

133133
# This dependency must be kept in sync with reqwest's version
134134
http = "1.1"
135-
reqwest = { version = "0.12", default-features = false, features = [ "json" ], optional = true }
135+
reqwest = { version = "0.13", default-features = false, features = [ "json" ], optional = true }
136136
isahc = { version = "1.7.2", default-features = false, features = [ "json", "text-decoding" ], optional = true }
137137
# Runtime-agnostic timer for failover backoff on the non-tokio (isahc) backend.
138138
futures-timer = { version = "3", optional = true }

0 commit comments

Comments
 (0)