Skip to content

Commit 777d01f

Browse files
committed
Remove unused features in contrib codegen.
1 parent bed9313 commit 777d01f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/codegen/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#![feature(proc_macro_span, proc_macro_diagnostic)]
2-
#![feature(crate_visibility_modifier)]
1+
#![feature(proc_macro_diagnostic)]
32
#![recursion_limit="256"]
43

54
#![warn(rust_2018_idioms)]
65

76
//! # Rocket Contrib - Code Generation
7+
//!
88
//! This crate implements the code generation portion of the Rocket Contrib
99
//! crate. This is for officially sanctioned contributor libraries that require
1010
//! code generation of some kind.
@@ -32,7 +32,7 @@ extern crate proc_macro;
3232
#[macro_use] extern crate quote;
3333

3434
#[allow(unused_imports)]
35-
crate use devise::{syn, proc_macro2};
35+
use devise::{syn, proc_macro2};
3636

3737
#[cfg(feature = "database_attribute")]
3838
mod database;

0 commit comments

Comments
 (0)