From de1f04e72b055aea560b28d5d45387a062c84c05 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Tue, 11 Jul 2023 15:07:02 +1000 Subject: [PATCH] chore: Update readme --- rust/pact_mock_server_cli/README.md | 2 ++ rust/pact_mock_server_cli/src/main.rs | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/rust/pact_mock_server_cli/README.md b/rust/pact_mock_server_cli/README.md index 8a6939361..1df6ab941 100644 --- a/rust/pact_mock_server_cli/README.md +++ b/rust/pact_mock_server_cli/README.md @@ -111,6 +111,8 @@ $ ./pact_mock_server_cli start -l debug -o logs/ This creates a new pact mock server managed by the master server from a pact file. The ID and port of the mock server will be displayed. +Note, the tls option will only be available if the tls create feature is enabled. + ```console $ ./pact_mock_server_cli help create Creates a new mock server from a pact file diff --git a/rust/pact_mock_server_cli/src/main.rs b/rust/pact_mock_server_cli/src/main.rs index a4f91cd1e..f95b0f0a1 100644 --- a/rust/pact_mock_server_cli/src/main.rs +++ b/rust/pact_mock_server_cli/src/main.rs @@ -1,6 +1,7 @@ //! The `pact_mock_server` crate provides the CLI for the pact mock server for mocking HTTP requests -//! and generating responses based on a pact file. It implements the V3 Pact specification -//! (https://github.com/pact-foundation/pact-specification/tree/version-3). +//! and generating responses based on a pact file. It implements the +//! [V3 Pact specification](https://github.com/pact-foundation/pact-specification/tree/version-3) +//! and [V4 Pact specification](https://github.com/pact-foundation/pact-specification/tree/version-4). #![warn(missing_docs)]