From acc7e64a0d0d26ad2c529b992b96b72f8029d29d Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 26 Feb 2019 17:54:11 +0100 Subject: refactor: Use cURL's own basic auth implementation Drops the dependency on the base64-crate, which it turns out isn't necessary as cURL has this built-in. --- Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7df7f69a2519..ae6c325f60a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,12 +9,10 @@ license = "GPL-3.0-or-later" repository = "https://github.com/tazjin/crimp" [features] -default = [ "json", "basic_auth" ] +default = [ "json" ] json = [ "serde", "serde_json"] -basic_auth = [ "base64" ] [dependencies] curl = "0.4" serde = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true } -base64 = { version = "0.10", optional = true } -- cgit 1.4.1