From 29ee61e2c4a4e6327c142c942848fd59c3ad7367 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 17:05:27 +0000 Subject: [PATCH] Bump http from 0.2.12 to 1.3.1 Bumps [http](https://github.com/hyperium/http) from 0.2.12 to 1.3.1. - [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.12...v1.3.1) --- updated-dependencies: - dependency-name: http dependency-version: 1.3.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d6e79f9..3f6cd8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -593,6 +593,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "humantime" version = "2.2.0" @@ -1138,7 +1149,7 @@ version = "0.10.0" source = "git+https://github.com/reactive-graph/reactive-graph.git#31eff9bb31f9597d8879e6cc0e602a9c90342f13" dependencies = [ "async-trait", - "http", + "http 0.2.12", "reactive-graph-behaviour-model-api", "reactive-graph-command-model", "reactive-graph-config-model", @@ -1258,7 +1269,7 @@ name = "reactive-graph-tooling-graphql-client" version = "0.10.0" dependencies = [ "async-trait", - "http", + "http 1.3.1", "log", "log4rs", "mime_guess", @@ -1274,7 +1285,7 @@ name = "reactive-graph-tooling-graphql-schema-visualization" version = "0.10.0" dependencies = [ "async-trait", - "http", + "http 1.3.1", "log", "log4rs", "mime_guess", diff --git a/Cargo.toml b/Cargo.toml index fc7f313..9ec8d4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.87.0" [workspace.dependencies] async-trait = "0.1" -http = "0.2" +http = "1.3" log = { version = "0.4", features = ["std", "serde"] } log4rs = { version = "1.4.0", features = ["console_appender", "file_appender", "toml_format"] } mime_guess = "2.0"