reql-macros 0.0.12

Macros for the reql crate
docs.rs failed to build reql-macros-0.0.12
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: reql-macros-0.3.0

This crate provides macros for making ReQL types more pleasant to work with. Currently, it only exposes the args macro but it's possible that more will be added in the future.

In this crate we make use of a couple nightly features, specifically proc_macro and proc_macro_non_items so you will need to use the nightly compiler in order to use the macros here. Add the following to your crate:-

#![feature(proc_macro)]
#![feature(proc_macro_non_items)]