add thiserror as a dependency

This commit is contained in:
Akulij 2025-04-28 20:22:41 +03:00
parent 8b371ebb2f
commit 329ead4f6e
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@ -842,6 +842,7 @@ dependencies = [
"mongodb", "mongodb",
"serde", "serde",
"teloxide", "teloxide",
"thiserror 2.0.12",
"tokio", "tokio",
] ]

View File

@ -17,6 +17,7 @@ futures = "0.3.31"
mongodb = "3.2.3" mongodb = "3.2.3"
serde = { version = "1.0.219", features = ["derive", "serde_derive"] } serde = { version = "1.0.219", features = ["derive", "serde_derive"] }
teloxide = { version = "0.14.0", features = ["macros", "postgres-storage-nativetls"] } teloxide = { version = "0.14.0", features = ["macros", "postgres-storage-nativetls"] }
thiserror = "2.0.12"
tokio = { version = "1.44.1", features = ["rt-multi-thread", "macros"] } tokio = { version = "1.44.1", features = ["rt-multi-thread", "macros"] }
[lints.clippy] [lints.clippy]