From 25bdb3da0a12b658922453afa17446468259fb4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 09:43:15 +0000 Subject: [PATCH] Update http requirement from 0.2 to 1.2 Updates the requirements on [http](https://github.com/hyperium/http) to permit the latest version. - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.0...v1.2.0) --- updated-dependencies: - dependency-name: http dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- client/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index dd91580..8cd7582 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -15,7 +15,7 @@ async-stream = "0.3" async-trait = "0.1" base64 = { version = "0.22", optional = true } futures = "0.3" -http = { version = "0.2", optional = true } +http = { version = "1.2", optional = true } js-sys = { version = "0.3", optional = true } log = "0.4" reqwest = { version = "0.12", optional = true, features = ["json"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index d4779cb..a0e5a70 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -16,7 +16,7 @@ blake2 = "0.10" bytes = "1.4" futures = "0.3" headers = "0.3" -http = "0.2" +http = "1.2" log = "0.4" serde = "1.0" serde_json = "1.0"