# HTTPQL [github](https://github.com/caido/httpql) [crates.io](https://crates.io/crates/httpql) This is the Rust parser for the [HTTPQL language](https://docs.caido.io/internals/httpql.html). ```rust use httpql::HTTPQL; pub fn main() { let query = HTTPQL::parse(r"req.ext.cont:"HELLO"").unwrap(); println("Query is {}", query); } ```