From 6e08a0c8c31f39aba29ae14765f3f7919daea051 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 13 Feb 2022 21:36:17 -0500 Subject: [PATCH] Add sqlx and tokio. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 5038297..4cafb6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,3 +7,5 @@ edition = "2021" [dependencies] walkdir = "2.3.2" +sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "sqlite", "migrate" ] } +tokio = { version = "1.16.1", features = ["full"] }