Minimal reproducible example for uv issue #6819.
cargo run <URL>For example:
$ cargo run https://self-signed.badssl.com/
Testing URL: https://self-signed.badssl.com/
Host: self-signed.badssl.com
Configuration: No trusted hosts
SSL verification disabled: false
✗ Request failed: error sending request for url (https://self-signed.badssl.com/)
Configuration: Wildcard (*)
Trusted host spec: Wildcard
SSL verification disabled: true
✓ Request succeeded! Status: 200 OK
Configuration: Host only (self-signed.badssl.com)
Trusted host spec: Host { scheme: None, host: "self-signed.badssl.com", port: None }
SSL verification disabled: true
✓ Request succeeded! Status: 200 OK
Configuration: With scheme (https://self-signed.badssl.com)
Trusted host spec: Host { scheme: Some("https"), host: "self-signed.badssl.com", port: None }
SSL verification disabled: true
✓ Request succeeded! Status: 200 OK