diff --git a/Cargo.lock b/Cargo.lock index f367631..8cedfdc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -273,6 +273,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" + [[package]] name = "bit-set" version = "0.8.0" @@ -529,7 +535,7 @@ name = "colony" version = "0.9.1" dependencies = [ "anyhow", - "base64", + "base64 0.23.0", "dirs", "ed25519-dalek", "flate2", @@ -1593,7 +1599,7 @@ version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-channel", "futures-core", @@ -3270,7 +3276,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "encoding_rs", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index 8b004fa..acf86ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "str tokio = { version = "1", features = ["sync", "time", "rt"] } futures = "0.3" open = "5" -base64 = "0.22" +base64 = "0.23" dirs = "6" keyring = { version = "3", features = ["sync-secret-service", "vendored"] } semver = "1"