From 903bd040bb75941309b50e7e6213c6bf54bccd05 Mon Sep 17 00:00:00 2001 From: Revertron Date: Wed, 12 May 2021 16:00:26 +0200 Subject: [PATCH] Removed SSL support of HTTP and WS servers. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 67328cc..19a4633 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,8 +37,8 @@ uuid = { version = "0.8.2", features = ["serde", "v4"] } mio = { version = "0.7", features = ["os-poll", "net"] } derive_more = "0.99" # for DNS from hermes lazy_static = "1.4.0" -tiny_http = "0.8" -tungstenite = "0.13" +tiny_http = { version = "0.8", default-features = false } +tungstenite = { version = "0.13", default-features = false } # Optional dependencies regulated by features web-view = { version = "0.7", features = [], optional = true }