aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTeddy Wing2021-05-29 19:20:46 +0200
committerTeddy Wing2021-05-29 19:20:46 +0200
commit9c2d269945af68e67d8daf8870be6d5664ab2153 (patch)
tree342eb952ac43ac7b28d97224160b8bb1ed71e5fd /Cargo.toml
parentc90d237d2d39c1deac5f92344d13160bc16f50b7 (diff)
downloadreflectub-9c2d269945af68e67d8daf8870be6d5664ab2153.tar.bz2
Start setting up database interface
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1b01be6..588ee18 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,3 +7,8 @@ edition = "2018"
git2 = "0.13.20"
reqwest = { version = "0.11.3", features = ["blocking", "json"] }
serde = { version = "1.0.126", features = ["derive"] }
+tokio = { version = "1.6.1", features = ["macros", "rt"] }
+
+[dependencies.sqlx]
+version = "0.5.5"
+features = ["chrono", "macros", "runtime-tokio-rustls", "sqlite"]