rocket_codegen 0.2.9

Code generation for the Rocket web framework.
1
2
3
4
5
6
7
8
9
#![feature(plugin, custom_derive)]
#![plugin(rocket_codegen)]

extern crate rocket;

#[post("/", format = "application/x-custom")]
fn get() -> &'static str { "hi" }

fn main() { }