mockserver 0.1.1

A lightweight, file-based mock API server written in Rust.
/api/user:
  method:
   - GET
  file: user_response.json
  authentication:
    basic:
      user: USER_NAME
      password: PASSWORD

/api/order:
  method:
   - POST
   - DELETE
  file: order_data.json
  status_code: 202 #custom Http Status code
  authentication:
    bearer:
      token: TOKEN_STR
      claims:
        sub: SUB
        name: NAME
        iat: 1516238972