From b5b26beb33127416fd2bc0f9c6aa01df9e13d3c9 Mon Sep 17 00:00:00 2001 From: Guilherme Souza <19gui94@gmail.com> Date: Sat, 17 Oct 2020 21:52:34 +0200 Subject: [PATCH 1/2] chore: remove duplicated section from tracing/README.md (#1046) In `tracing/README.md`, the section "Supported Rust Versions" was presented twice with the same content. --- tracing/README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tracing/README.md b/tracing/README.md index 408a475c7a..072a68b3fe 100644 --- a/tracing/README.md +++ b/tracing/README.md @@ -324,20 +324,6 @@ be invoked with the same syntax as the similarly-named macros from the `log` crate. Often, the process of converting a project to use `tracing` can begin with a simple drop-in replacement. -## Supported Rust Versions - -Tracing is built against the latest stable release. The minimum supported -version is 1.42. The current Tracing version is not guaranteed to build on Rust -versions earlier than the minimum supported version. - -Tracing follows the same compiler support policies as the rest of the Tokio -project. The current stable Rust compiler and the three most recent minor -versions before it will always be supported. For example, if the current stable -compiler version is 1.45, the minimum supported version will not be increased -past 1.42, three minor versions prior. Increasing the minimum supported compiler -version is not considered a semver breaking change as long as doing so complies -with this policy. - ## Ecosystem ### Related Crates From cd911e069e4f7761b95a215d409792bcde32e15a Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Sun, 18 Oct 2020 13:57:44 -0700 Subject: [PATCH 2/2] chore(deps): update pin-project requirement from 0.4 to 1.0 (#1038) Updates the requirements on [pin-project](https://github.com/taiki-e/pin-project) to permit the latest version. - [Release notes](https://github.com/taiki-e/pin-project/releases) - [Changelog](https://github.com/taiki-e/pin-project/blob/master/CHANGELOG.md) - [Commits](https://github.com/taiki-e/pin-project/compare/v0.4.0...v1.0.0) Signed-off-by: dependabot-preview[bot] Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> --- tracing-futures/Cargo.toml | 2 +- tracing-tower/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tracing-futures/Cargo.toml b/tracing-futures/Cargo.toml index 4f0c603e49..edacd59468 100644 --- a/tracing-futures/Cargo.toml +++ b/tracing-futures/Cargo.toml @@ -28,7 +28,7 @@ std = ["tracing/std"] futures_01 = { package = "futures", version = "0.1", optional = true } futures = { version = "0.3.0", optional = true } futures-task = { version = "0.3", optional = true } -pin-project = { version = "0.4", optional = true } +pin-project = { version = "1.0", optional = true } tracing = { path = "../tracing", version = "0.2", default-features = false } tokio-executor = { version = "0.1", optional = true } tokio = { version = "0.1", optional = true } diff --git a/tracing-tower/Cargo.toml b/tracing-tower/Cargo.toml index 7b0c9e695c..9441c2391f 100644 --- a/tracing-tower/Cargo.toml +++ b/tracing-tower/Cargo.toml @@ -30,7 +30,7 @@ futures = "0.3" tower-service = "0.3" tower-layer = { version = "0.3", optional = true } tower_make = { package = "tower-make", version = "0.3", optional = true } -pin-project = { version = "0.4", optional = true } +pin-project = { version = "1.0", optional = true } http = { version = "0.2", optional = true } [badges]