From a67503ae4a1e7421e3e34e545b1b3bb22484aa6e Mon Sep 17 00:00:00 2001 From: link2xt Date: Fri, 2 Aug 2024 20:14:15 +0000 Subject: [PATCH] chore: remove `backtrace` dependency It is not used directly by `deltachat` crate. --- Cargo.lock | 1 - Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1353b2019..09cd85183 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1417,7 +1417,6 @@ dependencies = [ "async-native-tls", "async-smtp", "async_zip", - "backtrace", "base64 0.22.1", "brotli", "chrono", diff --git a/Cargo.toml b/Cargo.toml index e43c7088b..0bfdc7f92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,6 @@ async-imap = { version = "0.9.7", default-features = false, features = ["runtime async-native-tls = { version = "0.5", default-features = false, features = ["runtime-tokio"] } 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 = { workspace = true } brotli = { version = "6", default-features=false, features = ["std"] } chrono = { workspace = true, features = ["alloc", "clock", "std"] }