From 29642e87c273e000f0fb1ed9e1dd49f86fefdaca Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Fri, 10 Jan 2025 00:00:00 +0000 Subject: [PATCH] chore(http-body): update msrv to 1.61 this commit updates the MSRV of the `http-body` crate to 1.61. this brings the `http-body` crate into step with the MSRV of the `http-body-util` crate. in #128, the MSRV of the `http-body-util` crate was update to 1.61. however, compiling a crate in practice requires being able to parse all of the package manifests in its workspace. this means that using more recent features, like `dep:` syntax for optional dependencies included via cargo features, will not work due to the older `1.49` toolchain supported by `http-body`. see the rust reference, here: see #140, which depends on this commit. --- http-body/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-body/Cargo.toml b/http-body/Cargo.toml index 833e4d3..4d6ce91 100644 --- a/http-body/Cargo.toml +++ b/http-body/Cargo.toml @@ -23,7 +23,7 @@ Trait representing an asynchronous, streaming, HTTP request or response body. """ keywords = ["http"] categories = ["web-programming"] -rust-version = "1.49" +rust-version = "1.61" [dependencies] bytes = "1"