| Crates.io | httpql |
| lib.rs | httpql |
| version | 0.8.0 |
| created_at | 2024-02-19 20:56:46.588058+00 |
| updated_at | 2025-11-10 19:38:17.456597+00 |
| description | Parser for the HTTPQL language |
| homepage | |
| repository | https://github.com/caido/httpql |
| max_upload_size | |
| id | 1145659 |
| size | 44,777 |
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);
}