From 1bc7dccb37c8f97b5244aaa58db25b460793d517 Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Mon, 20 Sep 2021 20:49:03 +0100 Subject: [PATCH] chore: add redis, redis-graph --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0a55e2a..e77fc3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,6 +52,10 @@ url = "2.2.2" tokio = { version = "1.11.0", features = ["full"] } tokio-cron-scheduler = "0.2.1" +redis = { version = "0.21.2", features = [ "tokio-comp", "cluster"] } +redis-graph = { version = "0.4.1", features = ['tokio-comp'] } +sqlx = {version = "0.5.7", default-features = false, features = ["macros","runtime-tokio-rustls","sqlite", "mysql", "postgres", "decimal", "chrono"]} + zterton = { version = "0.1.1", path = "../lib/zterton" } app_tools = { version = "0.1.0", path = "../lib/utils/app_tools" }