From 2ec4858c0f27d6d52abd477c8999762226b8924f Mon Sep 17 00:00:00 2001 From: messense Date: Sun, 9 Jan 2022 13:26:42 +0800 Subject: [PATCH] Add changelog entry for #767 --- Changelog.md | 1 + src/lib.rs | 7 ++----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 0ee9fbe88..da0991e97 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] * Add support for using [`zig cc`](https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html) as linker for easier cross compiling and manylinux compliance in [#756](https://github.com/PyO3/maturin/pull/756) +* Switch from reqwest to ureq to reduce dependencies in [#767](https://github.com/PyO3/maturin/pull/767) ## [0.12.6] - 2021-12-31 diff --git a/src/lib.rs b/src/lib.rs index c7783cc50..0b9f389ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,14 +5,11 @@ //! //! # Cargo features //! -//! Default features: log, upload, rustls, human-panic +//! Default features: log, upload, human-panic //! //! - log: Configures pretty-env-logger, even though maturin doesn't use logging itself. //! -//! - upload: Uses reqwest to add the upload command. -//! -//! - rustls: Makes reqwest use the rustls stack so that we can build maturin in a CentOS 6 -//! docker container and which maturin itself manylinux compliant. +//! - upload: Uses ureq to add the upload command. //! //! - human-panic: Adds https://github.com/rust-clique/human-panic //!