httpql 0.8.0

Parser for the HTTPQL language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# HTTPQL

[<img alt="github" src="https://img.shields.io/badge/github-caido/httpql-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/caido/httpql)
[<img alt="crates.io" src="https://img.shields.io/crates/v/httpql?color=fc8d62&logo=rust&style=for-the-badge" height="20">](https://crates.io/crates/httpql)

This is the Rust parser for the [HTTPQL language](https://docs.caido.io/reference/httpql.html).

```rust
use httpql::HTTPQL;

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