From 9ed2596b3dcfc7d17cc236d63f2d50f3c64a2f47 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Tue, 18 Mar 2025 17:00:21 -0400 Subject: [PATCH] chore(deps): enable anyhow feature on matrix-sdk --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 204d0ec..26b4e32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2971,6 +2971,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e27119e566a60f5681eb8d05f51ef10862dd9af611ac6c6e0dc9aa9bf3bcc493" dependencies = [ + "anyhow", "anymap2", "aquamarine", "as_variant", diff --git a/Cargo.toml b/Cargo.toml index e8056a8..5d83ebd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ http-body-util = "0" hyper = { version = "1", features = ["server"] } hyper-util = "0" log = { version = "0" } -matrix-sdk = { version = "0", optional = true } +matrix-sdk = { version = "0", features = ["anyhow"], optional = true } mimalloc = { version = "0", optional = true } mlua = { version = "0", features = ["async", "luajit", "send"] } ncr = { version = "0", features = ["cfb8", "ecb", "gcm"] }