@@ -103,27 +103,27 @@ __rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]
103103livekit-protocol = { workspace = true }
104104thiserror = { workspace = true }
105105serde = { workspace = true , features = [" derive" ] }
106- sha2 = " 0.10 "
106+ sha2 = " 0.11 "
107107url = " 2.3"
108108log = { workspace = true }
109109parking_lot = { workspace = true }
110- prost = " 0.12 "
111- pbjson-types = " 0.6 "
110+ prost = " 0.14 "
111+ pbjson-types = " 0.9 "
112112
113113# webhooks
114114serde_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.
119119jsonwebtoken = { version = " 10" , default-features = false , optional = true }
120- hmac = { version = " 0.12 " , optional = true }
120+ hmac = { version = " 0.13 " , optional = true }
121121signature = { version = " 2" , optional = true }
122122
123123# signal_client
124124livekit-runtime = { workspace = true , optional = true }
125125tokio-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 }
127127tokio = { workspace = true , default-features = false , features = [" sync" , " macros" , " signal" , " io-util" , " net" ], optional = true }
128128tokio-rustls = { version = " 0.26" , default-features = false , features = [" logging" , " tls12" , " ring" ], optional = true }
129129rustls-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
134134http = " 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 }
136136isahc = { 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.
138138futures-timer = { version = " 3" , optional = true }
0 commit comments