roadrunner 0.1.1

A rust rest client based on hyper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "2"
services:
  httpbin:
    image: citizenstig/httpbin

  nginx:
    image: nginx
    depends_on:
      - httpbin
    volumes:
      - ./config/nginx.conf:/etc/nginx/conf.d/default.conf
      - ./config/localhost.key:/etc/nginx/conf.d/localhost.key
      - ./config/localhost.cert:/etc/nginx/conf.d/localhost.cert
    ports:
      - "8000:80"
      - "8001:443"