From 10a192bc5015cf243c233d13247a89be32c89398 Mon Sep 17 00:00:00 2001 From: Dave Garred Date: Mon, 18 Apr 2022 12:05:24 -0700 Subject: [PATCH] Use native TLS to avoid docker issues See: https://github.com/briansmith/webpki/issues/54 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 051ac91..1f0bbef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ async-trait = "0.1.53" futures = "0.3.21" serde = { version = "1.0", features = ["derive"]} serde_json = "1.0" -sqlx = { version = "0.5.12", features = [ "mysql" , "runtime-tokio-rustls", "json"] } +sqlx = { version = "0.5.12", features = [ "mysql" , "runtime-tokio-native-tls", "json"] } [dev-dependencies] tokio = { version = "1", features = ["macros", "rt"] }