From 83ed168f9cb920027b36281e17237a09a3c8f814 Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Sun, 15 Jan 2023 08:38:55 +0900 Subject: [PATCH] Add thiserror to plume-common dependencies --- Cargo.lock | 1 + plume-common/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 4315b65f..c2a7577d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3361,6 +3361,7 @@ dependencies = [ "serde_json", "shrinkwraprs", "syntect", + "thiserror", "tokio 1.24.1", "tracing", "url 2.3.1", diff --git a/plume-common/Cargo.toml b/plume-common/Cargo.toml index 1043e85f..b42e58e7 100644 --- a/plume-common/Cargo.toml +++ b/plume-common/Cargo.toml @@ -26,6 +26,7 @@ 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] features = ["serde"]