This commit is contained in:
geoffsee
2025-08-28 14:21:36 -04:00
parent 9818998379
commit 3646a37547
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -489,7 +489,7 @@ dependencies = [
[[package]] [[package]]
name = "hyper-custom-cert" name = "hyper-custom-cert"
version = "0.3.2" version = "0.3.4"
dependencies = [ dependencies = [
"bytes", "bytes",
"http-body-util", "http-body-util",

View File

@@ -10,7 +10,7 @@ use serde_json::{json, Value};
use std::collections::HashMap; use std::collections::HashMap;
use std::time::Duration; use std::time::Duration;
const SERVER_ADDRESS: &str = "0.0.0.0:8393"; const SERVER_ADDRESS: &str = "127.0.0.1:8393";
#[derive(Serialize)] #[derive(Serialize)]
struct TestResponse { struct TestResponse {

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "hyper-custom-cert" name = "hyper-custom-cert"
version = "0.3.2" version = "0.3.4"
edition = "2024" 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." 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" license = "MIT OR Apache-2.0"