From 329ead4f6e5d2022fa88622bf1e02e38a98b0516 Mon Sep 17 00:00:00 2001 From: Akulij Date: Mon, 28 Apr 2025 20:22:41 +0300 Subject: [PATCH] add thiserror as a dependency --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index fc88205..fdf4dd7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -842,6 +842,7 @@ dependencies = [ "mongodb", "serde", "teloxide", + "thiserror 2.0.12", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index a007bfc..3633e39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ futures = "0.3.31" mongodb = "3.2.3" serde = { version = "1.0.219", features = ["derive", "serde_derive"] } teloxide = { version = "0.14.0", features = ["macros", "postgres-storage-nativetls"] } +thiserror = "2.0.12" tokio = { version = "1.44.1", features = ["rt-multi-thread", "macros"] } [lints.clippy]