diff --git a/Cargo.lock b/Cargo.lock index cd11e65..ed59c7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -49,6 +49,12 @@ version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "bincode" version = "2.0.0-rc.3" @@ -512,7 +518,7 @@ name = "light-openid" version = "1.0.1" dependencies = [ "aes-gcm", - "base64", + "base64 0.22.0", "bincode", "log", "rand", @@ -530,9 +536,9 @@ checksum = "b64f40e5e03e0d54f03845c8197d0291253cdbedfb1cb46b13c2c117554a9f4c" [[package]] name = "log" -version = "0.4.20" +version = "0.4.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "mime" @@ -751,7 +757,7 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d66674f2b6fb864665eea7a3c1ac4e3dfacd2fda83cf6f935a612e01b0e3338" dependencies = [ - "base64", + "base64 0.21.2", "bytes", "encoding_rs", "futures-core", @@ -807,7 +813,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64", + "base64 0.21.2", ] [[package]] @@ -870,9 +876,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.105" +version = "1.0.115" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" +checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index f03fdfd..bc0a5e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,11 +11,11 @@ license = "GPL-2.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -log = "0.4.20" +log = "0.4.21" reqwest = { version = "0.12.2", features = ["json"] } -base64 = "0.21.2" +base64 = "0.22.0" serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.105" +serde_json = "1.0.115" urlencoding = "2.1.3" # Dependencies for crypto wrapper @@ -24,4 +24,4 @@ aes-gcm = { version = "0.10.3", optional = true } rand = { version = "0.8.5", optional = true } [features] -crypto-wrapper = ["bincode", "aes-gcm", "rand"] \ No newline at end of file +crypto-wrapper = ["bincode", "aes-gcm", "rand"]