From 39cd4f830d0abe3fcd9485be6226441b8b59662c Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Sun, 15 Jan 2023 08:52:18 +0900 Subject: [PATCH] Remove anyhow from plume-common dependencies --- Cargo.lock | 7 ------- plume-common/Cargo.toml | 1 - 2 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c2a7577d..4f1272b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,12 +166,6 @@ dependencies = [ "winapi 0.3.9", ] -[[package]] -name = "anyhow" -version = "1.0.68" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" - [[package]] name = "arc-swap" version = "1.6.0" @@ -3341,7 +3335,6 @@ version = "0.7.2" dependencies = [ "activitystreams", "activitystreams-ext", - "anyhow", "array_tool", "askama_escape", "assert-json-diff", diff --git a/plume-common/Cargo.toml b/plume-common/Cargo.toml index b42e58e7..9c35636c 100644 --- a/plume-common/Cargo.toml +++ b/plume-common/Cargo.toml @@ -25,7 +25,6 @@ url = "2.2.2" flume = "0.10.13" tokio = { version = "1.19.2", features = ["full"] } futures = "0.3.25" -anyhow = "1.0.68" thiserror = "1.0.38" [dependencies.chrono]