From 552176ed31f6e20b4e3391e37a035b556500d6f2 Mon Sep 17 00:00:00 2001 From: Vika Date: Mon, 10 May 2021 15:56:20 +0300 Subject: Removed openssl dependency - now the code is pure Rust --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 83ff9ab..de17d38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,6 @@ newbase60 = "0.1.3" # A library that implements Tantek Çelik's New Base retainer = "0.2.2" # Minimal async cache in Rust with support for key expirations serde_json = "1.0.64" # A JSON serialization file format serde_urlencoded = "0.7.0" # `x-www-form-urlencoded` meets Serde -surf = "2.2.0" # Surf the web - HTTP client framework tide = "0.16.0" # A minimal and pragmatic Rust web application framework built for rapid development [dependencies.async-std] # Async version of the Rust standard library version = "1.9.0" @@ -43,6 +42,10 @@ default-features = false [dependencies.serde] # A generic serialization/deserialization framework version = "1.0.125" features = ["derive"] +[dependencies.surf] # Surf the web - HTTP client framework +version = "2.2.0" +default-features = false +features = ["h1-client-rustls", "encoding", "middleware-logger"] [dependencies.url] # URL library for Rust, based on the WHATWG URL Standard version = "2.2.1" features = ["serde"] -- cgit 1.4.1