rkt_codegen 0.6.0

Procedural macros for the rkt web framework.
Documentation
#[macro_use] extern crate rkt;

#[derive(Responder)]
struct Thing1 {
    thing: u8,
}

#[derive(Responder)]
struct Thing2 {
    thing: String,
    other: u8,
}

#[derive(Responder)]
struct Thing3 {
    thing: u8,
    other: u8,
}

#[derive(Responder)]
struct Thing4 {
    thing: String,
    other: rkt::http::ContentType,
    then: String,
}

#[get("/")]
fn foo() -> usize { 0 }

fn main() {  }