From e8d64105c491b5239fec7d8ce71d50651037e710 Mon Sep 17 00:00:00 2001 From: Gaurav-Kumbhat Date: Thu, 16 Apr 2026 17:29:55 -0500 Subject: [PATCH 1/2] :bug: Fix tcp listner import Signed-off-by: Gaurav-Kumbhat --- mocktail/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mocktail/Cargo.toml b/mocktail/Cargo.toml index 9bf4c67..cd20409 100644 --- a/mocktail/Cargo.toml +++ b/mocktail/Cargo.toml @@ -29,7 +29,7 @@ rand = "0.9" serde = "1" serde_json = "1" thiserror = "2" -tokio = "1" +tokio = { version = "1", features = ["net"] } tokio-stream = "0" tracing = "0" url = "2" From 4883429eefc7f6d932aa2bedfef5462240c41cad Mon Sep 17 00:00:00 2001 From: Gaurav-Kumbhat Date: Thu, 16 Apr 2026 17:31:54 -0500 Subject: [PATCH 2/2] :package: Update package version for mocktail Signed-off-by: Gaurav-Kumbhat --- mocktail/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mocktail/Cargo.toml b/mocktail/Cargo.toml index cd20409..6767f70 100644 --- a/mocktail/Cargo.toml +++ b/mocktail/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mocktail" -version = "0.3.1" +version = "0.3.2" edition = "2021" authors = ["Dan Clark"] description = "HTTP & gRPC server mocking for Rust"