hurl/packages/hurl_core
Tim Bart 04ebc958c6
This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server.
Example:
```
GET https://localhost:8443/
[Options]
cacert: out/HurlCA.crt
cert: out/client.crt
key: out/client.key

HTTP 200
```

outputs:
```
Request can be run with the following curl command:
* curl 'https://localhost:8443/' --cacert out/HurlCA.crt --cert out/client.crt --key out/client.key
```
2022-11-28 20:33:05 -08:00
..
src This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server. 2022-11-28 20:33:05 -08:00
tests Update copyright for 2022 2022-01-12 17:14:40 +01:00
Cargo.toml Update hurl version to 1.9.0-SNAPSHOT 2022-11-07 13:11:48 +00:00
README.md add README in each crate 2021-09-10 08:17:59 +02:00

hurl_core

The hurl_core crate provides the common functionalities used by both hurl and hurlfmt.