diff --git a/bitreq/README.md b/bitreq/README.md index 3b02328b..3cb0dce0 100644 --- a/bitreq/README.md +++ b/bitreq/README.md @@ -43,7 +43,7 @@ require a higher MSRV. ## License This crate is distributed under the terms of the [ISC license](COPYING.md). -## Planned for 3.0.0 +## Planned for a future major release This is a list of features I'll implement once it gets long enough, or a severe enough issue is found that there's good reason to make a @@ -59,9 +59,6 @@ major version bump. with `http://` or `https://`. - Change default proxy port to 1080 (from 8080). Curl uses 1080, so it's a sane default. -- Bump MSRV enough to compile the latest versions of all dependencies, and add - the `rust-version` (at least 1.56) and `edition` (at least 2021) fields to - Cargo.toml. ### Potential ideas diff --git a/bitreq/src/lib.rs b/bitreq/src/lib.rs index ee2d553d..54ceb25c 100644 --- a/bitreq/src/lib.rs +++ b/bitreq/src/lib.rs @@ -15,13 +15,13 @@ //! # Additional features //! //! Since the crate is supposed to be minimal in terms of -//! dependencies, there are no default features, and optional -//! functionality can be enabled by specifying features for `bitreq` -//! dependency in `Cargo.toml`: +//! dependencies, only the `std` feature is enabled by default. +//! Additional functionality can be enabled by specifying features for +//! the `bitreq` dependency in `Cargo.toml`: //! //! ```toml //! [dependencies] -//! bitreq = { version = "2.13.5-alpha", features = ["https"] } +//! bitreq = { version = "0.2.0", features = ["https"] } //! ``` //! //! Below is the list of all available features.