From 1a0625ad79330d35ca137361297318bdbf29137e Mon Sep 17 00:00:00 2001 From: Chris Joel <0xcda7a@gmail.com> Date: Mon, 31 Oct 2022 22:01:14 -0700 Subject: [PATCH] fix(api): Use rustls instead of OpenSSL --- rust/noosphere-api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index 26607341f..a80926651 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -27,7 +27,7 @@ serde_urlencoded = "~0.7" tracing = "~0.1" noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" } noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" } -reqwest = { version = "~0.11", features = ["json"] } +reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls"] } ucan = { version = "0.7.0-alpha.1" } ucan-key-support = { version = "0.7.0-alpha.1" }