gel-derive 0.7.4

Derive macros for Gel database client. Formerly published as gel-derive.
Documentation
use gel_derive::Queryable;

mod custom {
    pub mod exports {
        pub mod gel_protocol {
            pub use ::gel_protocol::*;
        }
    }
}

#[derive(Queryable)]
#[gel(crate_path = custom::exports::gel_protocol)]
enum Simple {
    Something,
    Else,
}

#[derive(Queryable)]
#[gel(crate_path = custom::exports::gel_protocol)]
#[allow(dead_code)]
struct Another {
    one: String,
    two: i16,
}