From e934f39d24ac613913a4cf5ba1c9fb3ced56612f Mon Sep 17 00:00:00 2001 From: lemon-sh Date: Wed, 5 Jan 2022 22:01:14 +0100 Subject: [PATCH] Add optional TLS feature --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 521aee7..588ef31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,11 @@ serde = "1.0" arrayvec = "0.7" rand = "0.8" meval = "0.2" -async-circe = { git = "https://git.karx.xyz/circe/async-circe" } +async-circe = { git = "https://git.karx.xyz/circe/async-circe", default-features = false } lazy_static = "1.4" sedregex = "0.2" rusqlite = { version = "0.26", features = ["bundled"] } +hyper = "0.14" + +[features] +tls = ["async-circe/tls"]