From 3646a37547d2a29eac33c08431fee945775d5e03 Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Thu, 28 Aug 2025 14:21:36 -0400 Subject: [PATCH] 0.3.4 --- Cargo.lock | 2 +- crates/example/src/main.rs | 2 +- crates/hyper-custom-cert/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e52967e..46460ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -489,7 +489,7 @@ dependencies = [ [[package]] name = "hyper-custom-cert" -version = "0.3.2" +version = "0.3.4" dependencies = [ "bytes", "http-body-util", diff --git a/crates/example/src/main.rs b/crates/example/src/main.rs index 89b372f..66e7d19 100644 --- a/crates/example/src/main.rs +++ b/crates/example/src/main.rs @@ -10,7 +10,7 @@ use serde_json::{json, Value}; use std::collections::HashMap; use std::time::Duration; -const SERVER_ADDRESS: &str = "0.0.0.0:8393"; +const SERVER_ADDRESS: &str = "127.0.0.1:8393"; #[derive(Serialize)] struct TestResponse { diff --git a/crates/hyper-custom-cert/Cargo.toml b/crates/hyper-custom-cert/Cargo.toml index 4f9051d..e3de66c 100644 --- a/crates/hyper-custom-cert/Cargo.toml +++ b/crates/hyper-custom-cert/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-custom-cert" -version = "0.3.2" +version = "0.3.4" edition = "2024" description = "A small, ergonomic HTTP client wrapper around hyper with optional support for custom Root CAs and a dev-only insecure mode for self-signed certificates." license = "MIT OR Apache-2.0"