From ff05ad9a1027f74d5873dcb426fd408802792c65 Mon Sep 17 00:00:00 2001 From: Mike Cronce Date: Mon, 7 Dec 2020 13:56:19 -0500 Subject: [PATCH] examples/mysql/todos/Cargo.toml: Add runtime feature --- examples/mysql/todos/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mysql/todos/Cargo.toml b/examples/mysql/todos/Cargo.toml index f604a570..7b2ccc01 100644 --- a/examples/mysql/todos/Cargo.toml +++ b/examples/mysql/todos/Cargo.toml @@ -9,5 +9,5 @@ anyhow = "1.0" async-std = { version = "1.5.0", features = [ "attributes" ] } futures = "0.3" paw = "1.0" -sqlx = { path = "../../../", features = [ "mysql" ] } +sqlx = { path = "../../../", features = [ "mysql", "runtime-async-std-rustls" ] } structopt = { version = "0.3", features = [ "paw" ] }