diff --git a/Cargo.lock b/Cargo.lock index a90df90..e4e70ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ dependencies = [ "actix-service", "actix-utils", "ahash", - "base64", + "base64 0.21.7", "bitflags 2.4.1", "brotli", "bytes", @@ -260,13 +260,19 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "bcrypt" -version = "0.15.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d1c9c15093eb224f0baa400f38fcd713fc1391a6f1c389d886beef146d60a3" +checksum = "e65938ed058ef47d92cf8b346cc76ef48984572ade631927e9937b5ffc7662c7" dependencies = [ - "base64", + "base64 0.22.0", "blowfish", "getrandom", "subtle", @@ -460,7 +466,7 @@ name = "dockerust" version = "0.1.0" dependencies = [ "actix-web", - "base64", + "base64 0.21.7", "bcrypt", "futures", "jsonwebtoken", @@ -738,7 +744,7 @@ version = "9.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4" dependencies = [ - "base64", + "base64 0.21.7", "js-sys", "pem", "ring", @@ -914,7 +920,7 @@ version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" dependencies = [ - "base64", + "base64 0.21.7", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 69a01d7..1e015b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,6 @@ uuid = { version = "1.1.2", features = ["v4"] } mktemp = "0.5.1" base64 = "0.21.7" serde_yaml = "0.9.30" -bcrypt = "0.15.0" +bcrypt = "0.15.1" jsonwebtoken = "9.2.0" rand = "0.8.5"