diff options
author | Teddy Wing | 2021-05-30 02:05:55 +0200 |
---|---|---|
committer | Teddy Wing | 2021-05-30 02:05:55 +0200 |
commit | e437cfc717417891486a77af469d134c6bf5dbdd (patch) | |
tree | ea11b6947fce2d3bfa008d369ad156d099c7f4b7 /Cargo.toml | |
parent | f9d28c3f1cf032b4fc22acbea67d3adf35d5b6b9 (diff) | |
download | reflectub-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.toml | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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] |