rested 0.11.0

Language/Interpreter for easily defining and running requests to an http server.
Documentation
---
source: tests/parser.rs
description: "set BASE_URL \"stuff\""
expression: ast
---
Program(
  source: "set BASE_URL \"stuff\"",
  items: [
    Set(ConstantDeclaration(
      identifier: Ok(Token(
        kind: Ident,
        text: "BASE_URL",
        start: Position(
          value: 4,
          line: 0,
          col: 4,
        ),
      )),
      value: String(StringLiteral(
        raw: "\"stuff\"",
        value: "stuff",
        span: Span(
          start: Position(
            value: 13,
            line: 0,
            col: 13,
          ),
          end: Position(
            value: 19,
            line: 0,
            col: 19,
          ),
        ),
      )),
    )),
  ],
)