httpql 0.8.0

Parser for the HTTPQL language
Documentation

HTTPQL

This is the Rust parser for the HTTPQL language.

use httpql::HTTPQL;

pub fn main() {
  let query = HTTPQL::parse(r"req.ext.cont:"HELLO"").unwrap();
  println("Query is {}", query);
}