aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTeddy Wing2021-05-30 02:05:55 +0200
committerTeddy Wing2021-05-30 02:05:55 +0200
commite437cfc717417891486a77af469d134c6bf5dbdd (patch)
treeea11b6947fce2d3bfa008d369ad156d099c7f4b7 /Cargo.toml
parentf9d28c3f1cf032b4fc22acbea67d3adf35d5b6b9 (diff)
downloadreflectub-e437cfc717417891486a77af469d134c6bf5dbdd.tar.bz2
database: Use a custom `Error` type
Get rid of the boxed errors to make matching on errors easier.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 182ccdf..4099777 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,6 +7,7 @@ edition = "2018"
git2 = "0.13.20"
reqwest = { version = "0.11.3", features = ["blocking", "json"] }
serde = { version = "1.0.126", features = ["derive"] }
+thiserror = "1.0.25"
tokio = { version = "1.6.1", features = ["macros", "rt"] }
[dependencies.sqlx]