From a82ca7d052df0a53738b7e84c755e625226bb47d Mon Sep 17 00:00:00 2001 From: erik Date: Mon, 28 Jun 2021 14:03:55 +0000 Subject: [PATCH] Add macros feature to sqlx --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 35f3296..b26278e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" juniper = "^0.15" juniper_warp = "^0.6" juniper-from-schema = { git = "https://github.com/davidpdrsn/juniper-from-schema" } -sqlx = { version = "^0.5", features = ["runtime-tokio-native-tls", "uuid", "chrono"] } +sqlx = { version = "^0.5", features = ["runtime-tokio-native-tls", "uuid", "chrono", "macros"] } warp = { version = "^0.3", default-features = false, features = ["compression", "tls"] } structopt = { version = "^0.3", features = ["wrap_help"] } toml = "^0.5"