From 4e87a71b32397caf939cc5aff544331bf269bcf3 Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Thu, 14 Aug 2025 17:03:00 -0400 Subject: [PATCH] Bump version to 0.1.1 and reformat feature combination macro for readability. --- crates/hyper-custom-cert/Cargo.toml | 2 +- crates/hyper-custom-cert/tests/feature_combinations.rs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/hyper-custom-cert/Cargo.toml b/crates/hyper-custom-cert/Cargo.toml index ac2963c..ef515c2 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.1.0" +version = "0.1.1" edition = "2021" 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" diff --git a/crates/hyper-custom-cert/tests/feature_combinations.rs b/crates/hyper-custom-cert/tests/feature_combinations.rs index 9a12a63..f036572 100644 --- a/crates/hyper-custom-cert/tests/feature_combinations.rs +++ b/crates/hyper-custom-cert/tests/feature_combinations.rs @@ -9,7 +9,11 @@ use hyper_custom_cert::HttpClient; all(feature = "rustls", feature = "insecure-dangerous"), all(feature = "native-tls", feature = "insecure-dangerous"), not(any(feature = "rustls", feature = "insecure-dangerous")), - all(feature = "native-tls", feature = "rustls", feature = "insecure-dangerous") + all( + feature = "native-tls", + feature = "rustls", + feature = "insecure-dangerous" + ) ))] use std::collections::HashMap; use std::time::Duration;