pact_matching 2.0.3

Pact-Rust support library that implements request and response matching logic
Documentation
{
  "match": true,
  "comment": "Headers match",
  "expected" : {
    "method": "POST",
    "path": "/path",
    "query": "",
    "headers": {
      "Accept": "alligators",
      "Content-Type": "hippos"
    }
  },
  "actual": {
    "method": "POST",
    "path": "/path",
    "query": "",
    "headers": {
      "Content-Type": "hippos",
      "Accept": "alligators"
    }
  }
}