Updated derive more to v1. Removed thiserror

This commit is contained in:
2024-08-11 12:19:33 +03:00
parent 5c789533e3
commit 14b858808d
4 changed files with 101 additions and 66 deletions

View File

@@ -21,10 +21,7 @@ arrayvec = "0.7"
base64 = "0.22"
bitflags = "2"
chacha20poly1305 = { version = "0.10", features = ["std"] }
derive_more = { version = "0.99", default-features = false, features = [
"deref",
"display",
] }
derive_more = { version = "1", features = ["deref", "display", "error", "from"] }
dotenvy = "0.15"
futures = "0.3"
hex = "0.4"
@@ -53,7 +50,6 @@ teloxide = { version = "0.12", features = [
"rustls",
"throttle",
], default-features = false }
thiserror = "1"
tokio = { version = "1", features = [
"macros",
"rt-multi-thread",