Bump version to 0.1.1 and reformat feature combination macro for readability.

This commit is contained in:
geoffsee
2025-08-14 17:03:00 -04:00
parent b504ad8399
commit 4e87a71b32
2 changed files with 6 additions and 2 deletions

View File

@@ -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"

View File

@@ -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;