rested 0.11.0

Language/Interpreter for easily defining and running requests to an http server.
Documentation
---
source: tests/parser.rs
description: "post http://localhost"
expression: ast
---
Program(
  source: "post http://localhost",
  items: [
    Request(Request(
      method: POST,
      endpoint: Url(Literal(
        value: "http://localhost",
        span: Span(
          start: Position(
            value: 5,
            line: 0,
            col: 5,
          ),
          end: Position(
            value: 20,
            line: 0,
            col: 20,
          ),
        ),
      )),
      block: None,
      span: Span(
        start: Position(
          value: 0,
          line: 0,
          col: 0,
        ),
        end: Position(
          value: 20,
          line: 0,
          col: 20,
        ),
      ),
    )),
  ],
)