rocket_json 0.1.4

This crate provides a `Error` struct with json responses in Rocket.
Documentation
1
2
3
4
5
use rocket_json::catchers;

fn main() {
    rocket::ignite().register(catchers::All()).launch();
}