Add thiserror crate

This commit is contained in:
Xiretza 2024-02-10 12:08:29 +00:00
parent be6e2cb6cd
commit e9ae0468b3
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View file

@ -492,6 +492,7 @@ dependencies = [
"secrecy",
"serde",
"sqlx",
"thiserror",
"time",
"tokio",
"tracing",

View file

@ -24,6 +24,7 @@ rand = "0.8.5"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.196", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "sqlite"] }
thiserror = "1.0.56"
time = { version = "0.3.34", features = ["formatting", "macros"] }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.40"