Crates.io | httpql |
lib.rs | httpql |
version | 0.5.1 |
source | src |
created_at | 2024-02-19 20:56:46.588058 |
updated_at | 2024-07-04 14:40:13.18843 |
description | Parser for the HTTPQL language |
homepage | |
repository | https://github.com/caido/httpql |
max_upload_size | |
id | 1145659 |
size | 31,353 |
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);
}