# Toql Rocket Use [Toql](https://crates.io/crates/toql) with [Rocket](https://crates.io/crates/rocket). This crate adds: - Toql URL query parameters - Response headers with page count information - Responder for [ToqlError](toql::prelude::ToqlError) Add this to your `Cargo.toml`: ```toml [dependencies] toql_rocket = "0.3" ``` Then enjoy some simplifications in your rocket handlers: ```rust use toql_rocket::prelude::{ToqlQUery, Counted}; #[get("/?")] pub async fn query( cache: &State, mut conn: Connection, toql_query: ToqlQuery, //