From 8ee46f89f88ac55893493a7acb8e6d8131f086b8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 9 Apr 2019 12:57:53 -0700 Subject: [PATCH] update docs and readme about cookies and socks --- README.md | 1 + src/lib.rs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 949ed11..001a70d 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ An ergonomic, batteries-included HTTP Client for Rust. - Customizable redirect policy - HTTP Proxies - HTTPS via system-native TLS (or optionally, rustls) +- Cookie Store - [Changelog](CHANGELOG.md) ## Example diff --git a/src/lib.rs b/src/lib.rs index 979f78b..0371d8d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ //! - Customizable [redirect policy](#redirect-policy) //! - HTTP [Proxies](#proxies) //! - Uses system-native [TLS](#tls) -//! - Cookies (only rudimentary support, full support is TODO) +//! - Cookies //! //! The rudimentary cookie support means that the cookies need to be manually //! configured for every single request. In other words, there's no cookie jar @@ -155,6 +155,7 @@ //! `native-tls` library to connect over HTTPS. //! - **default-tls-vendored**: Enables the `vendored` feature of `native-tls`. //! - **rustls-tls**: Provides TLS support via the `rustls` library. +//! - **socks**: Provides SOCKS5 proxy support. //! - **trust-dns**: Enables a trust-dns async resolver instead of default //! threadpool using `getaddrinfo`. //! - **hyper-011**: Provides support for hyper's old typed headers.