We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed9313 commit 777d01fCopy full SHA for 777d01f
contrib/codegen/src/lib.rs
@@ -1,10 +1,10 @@
1
-#![feature(proc_macro_span, proc_macro_diagnostic)]
2
-#![feature(crate_visibility_modifier)]
+#![feature(proc_macro_diagnostic)]
3
#![recursion_limit="256"]
4
5
#![warn(rust_2018_idioms)]
6
7
//! # Rocket Contrib - Code Generation
+//!
8
//! This crate implements the code generation portion of the Rocket Contrib
9
//! crate. This is for officially sanctioned contributor libraries that require
10
//! code generation of some kind.
@@ -32,7 +32,7 @@ extern crate proc_macro;
32
#[macro_use] extern crate quote;
33
34
#[allow(unused_imports)]
35
-crate use devise::{syn, proc_macro2};
+use devise::{syn, proc_macro2};
36
37
#[cfg(feature = "database_attribute")]
38
mod database;
0 commit comments