aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-21 19:29:37 +0000
committerFuwn <[email protected]>2021-03-21 19:29:37 +0000
commit817da38a555c48291fd38440b644d108e9c9da64 (patch)
tree667590ddccd0b070397edd084ceaf9e1c58fedf4 /Cargo.toml
parentetc: get started on implementing db routines (diff)
downloadwhirl-817da38a555c48291fd38440b644d108e9c9da64.tar.xz
whirl-817da38a555c48291fd38440b644d108e9c9da64.zip
feature: Use sqlx instead of rustqlite
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index db72de2..8587206 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,4 +29,6 @@ dotenv = "0.15.0"
rand = "0.8.3"
# Database
-rusqlite = "0.24.2"
+[dependencies.sqlx]
+version = "0.5.1"
+features = ["runtime-async-std-rustls", "sqlite", "macros", "migrate", "chrono", "time", "tls"]