From ee2e01d62c5a3a7fcfbf92487a1451b5e3ed2c57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 19:57:26 +0000 Subject: [PATCH] Update http requirement from 0.2 to 1.0 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.0.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 539fe52..c297eb1 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -15,7 +15,7 @@ async-stream = "0.3" async-trait = "0.1" base64 = { version = "0.21", optional = true } futures = "0.3" -http = { version = "0.2", optional = true } +http = { version = "1.0", optional = true } js-sys = { version = "0.3", optional = true } log = "0.4" reqwest = { version = "0.11", optional = true, features = ["json"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index d323099..ea347f5 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -15,7 +15,7 @@ async-trait = "0.1" bytes = "1.4" futures = "0.3" headers = "0.3" -http = "0.2" +http = "1.0" log = "0.4" serde = "1.0" serde_json = "1.0"