diff --git a/Cargo.lock b/Cargo.lock index 05fc5bbe..a5c04f76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,12 +138,6 @@ dependencies = [ "rustc-demangle", ] -[[package]] -name = "base64" -version = "0.21.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" - [[package]] name = "base64" version = "0.22.0" @@ -1709,7 +1703,7 @@ version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" dependencies = [ - "base64 0.22.0", + "base64", "bytes", "encoding_rs", "futures-channel", @@ -1755,7 +1749,7 @@ dependencies = [ "adler32", "async-stream", "async-trait", - "base64 0.21.5", + "base64", "bytes", "criterion", "futures-util", @@ -1779,7 +1773,7 @@ dependencies = [ "adler32", "async-stream", "backoff", - "base64 0.21.5", + "base64", "bytes", "cargo-tarpaulin", "futures-util", @@ -1843,7 +1837,7 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" dependencies = [ - "base64 0.22.0", + "base64", "rustls-pki-types", ] diff --git a/engineio/Cargo.toml b/engineio/Cargo.toml index 3e827a89..d789a0cc 100644 --- a/engineio/Cargo.toml +++ b/engineio/Cargo.toml @@ -14,7 +14,7 @@ license = "MIT" all-features = true [dependencies] -base64 = "0.21.5" +base64 = "0.22.0" bytes = "1" reqwest = { version = "0.12.4", features = ["blocking", "native-tls", "stream"] } adler32 = "1.2.0" diff --git a/socketio/Cargo.toml b/socketio/Cargo.toml index 92598d71..75202114 100644 --- a/socketio/Cargo.toml +++ b/socketio/Cargo.toml @@ -15,7 +15,7 @@ all-features = true [dependencies] rust_engineio = { version = "0.6.0", path = "../engineio" } -base64 = "0.21.5" +base64 = "0.22.0" bytes = "1" backoff = "0.4" rand = "0.8.5"