diff --git a/Cargo.lock b/Cargo.lock index 713b75381..1d380b9e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,6 +422,12 @@ 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 = "base64ct" version = "1.6.0" @@ -1101,7 +1107,7 @@ dependencies = [ "async-smtp", "async_zip", "backtrace", - "base64 0.21.7", + "base64 0.22.0", "brotli", "chrono", "criterion", @@ -1177,7 +1183,7 @@ dependencies = [ "anyhow", "async-channel 2.2.0", "axum", - "base64 0.21.7", + "base64 0.22.0", "deltachat", "env_logger", "futures", diff --git a/Cargo.toml b/Cargo.toml index 869ef8c31..dc583be92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ async-native-tls = { version = "0.5", default-features = false, features = ["run async-smtp = { version = "0.9", default-features = false, features = ["runtime-tokio"] } async_zip = { version = "0.0.12", default-features = false, features = ["deflate", "fs"] } backtrace = "0.3" -base64 = "0.21" +base64 = "0.22" brotli = { version = "4", default-features=false, features = ["std"] } chrono = { version = "0.4", default-features=false, features = ["clock", "std"] } email = { git = "https://github.com/deltachat/rust-email", branch = "master" } diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index cd11153bb..54784dd19 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -28,7 +28,7 @@ typescript-type-def = { version = "0.5.8", features = ["json_value"] } tokio = { version = "1.37.0" } sanitize-filename = "0.5" walkdir = "2.5.0" -base64 = "0.21" +base64 = "0.22" # optional dependencies axum = { version = "0.7", optional = true, features = ["ws"] } diff --git a/deny.toml b/deny.toml index 5eeccdf1a..f39fb9bca 100644 --- a/deny.toml +++ b/deny.toml @@ -26,6 +26,7 @@ skip = [ { name = "async-channel", version = "1.9.0" }, { name = "base16ct", version = "0.1.1" }, { name = "base64", version = "<0.21" }, + { name = "base64", version = "0.21.7" }, { name = "bitflags", version = "1.3.2" }, { name = "block-buffer", version = "<0.10" }, { name = "convert_case", version = "0.4.0" },