From 71af4cf24583d9adb00e3132124cea09f1987d63 Mon Sep 17 00:00:00 2001 From: David Bernard Date: Fri, 20 Jul 2018 11:40:06 +0200 Subject: [PATCH] binding-rust: remove openssl dependencies hyper 0.9.x depends of openssl by default, and it can failed to compile if openssl dev lib is not installed. As ssl is not used by gym-http server, then remove openssl as transitive dependency. --- binding-rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding-rust/Cargo.toml b/binding-rust/Cargo.toml index a83031c..e4c0a2e 100644 --- a/binding-rust/Cargo.toml +++ b/binding-rust/Cargo.toml @@ -6,4 +6,4 @@ authors = ["NivenT "] [dependencies] rand = "0.3.14" serde_json = "0.8.0" -hyper = "0.9.12" +hyper = {version = "0.9.12", default-features = false}