diff --git a/Cargo.lock b/Cargo.lock index 4dbf41216..ecddfad91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,12 +116,6 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" -[[package]] -name = "base64" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" - [[package]] name = "base64" version = "0.22.1" @@ -2831,7 +2825,7 @@ version = "2.8.5" dependencies = [ "anyhow", "attohttpc 0.28.0", - "base64 0.22.1", + "base64", "bimap", "byteorder", "crossbeam-channel", @@ -2916,7 +2910,7 @@ dependencies = [ name = "yourcontrols-types" version = "0.1.0" dependencies = [ - "base64 0.20.0", + "base64", "crossbeam-channel", "igd", "laminar", diff --git a/src/yourcontrols-types/Cargo.toml b/src/yourcontrols-types/Cargo.toml index efe4d6224..173cdfc15 100644 --- a/src/yourcontrols-types/Cargo.toml +++ b/src/yourcontrols-types/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -base64 = "0.20" +base64 = "0.22" crossbeam-channel = "0.5" igd = "0.12" laminar = { git = "https://github.com/Sequal32/laminar.git" }