From e9d743b407abdb712005f9ba75d776eb60b59791 Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Mon, 15 Jul 2024 10:31:12 +1200 Subject: [PATCH] Depend on http explicitly --- Cargo.lock | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 9f225bb..f446367 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,6 +263,7 @@ dependencies = [ "env_logger", "futures", "hex", + "http", "http-body-util", "hyper", "hyper-tungstenite", diff --git a/Cargo.toml b/Cargo.toml index 36fed9d..3975a70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ dashmap = "5.5" env_logger = "0.11" futures = "0.3" hex = "0.4" +http = "1.1" http-body-util = "0.1" hyper = { version = "1.0.0", features = [ "http1", "server" ] } hyper-tungstenite = "0.14"