From fffa1647d8a1d3a8dadacf9f24bbe6bdc693aab8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 10:05:46 +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] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a71eff7..4f36764 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ chrono = { version = "0.4", features = ["serde"] } const-oid = { version = "0.9", features = ["db"] } der = { version = "0.7", features = ["std", "pem", "oid"] } fd-lock = { version = "4", optional = true } -http = { version = "0.2", optional = true } +http = { version = "1.0", optional = true } lazy_static = { version = "1", optional = true } mime = "0.3" pem-rfc7468 = { version = "0.7", features = ["std"] } @@ -47,7 +47,7 @@ static_assertions = "1" tokio = { version = "1", features = ["full"] } tracing-subscriber.version = "0.3" pkcs8 = { version = "0.10", features = ["alloc", "pem"] } -http = { version = "0.2" } +http = { version = "1.0" } p256 = { version = "0.13", features = ["pkcs8", "arithmetic", "jwk"] } ecdsa = { version = "0.16", features = ["pem"] } rsa = { version = "0.9", features = ["sha2"] }