Silence warnings caused by Diesel on Rust >=1.29.
I expect this to be fixed in a future release of Diesel
This commit is contained in:
parent
58a859b014
commit
a20117a42c
1 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,10 @@
|
|||
#![recursion_limit="128"] // for diesel's infer_schema!
|
||||
|
||||
// Diesel causes many warnings of the following kind. I expect this to be
|
||||
// fixed in a future release of Diesel. Currently used version of Diesel is
|
||||
// 1.3.0.
|
||||
#![allow(proc_macro_derive_resolution_fallback)]
|
||||
|
||||
#[cfg(test)] #[macro_use] extern crate matches;
|
||||
#[cfg(test)] #[macro_use] extern crate indoc;
|
||||
|
||||
|
|
Loading…
Reference in a new issue