Allow unstable items.
Some of them don't have any stable equivalent yet.
This commit is contained in:
parent
4b47b1e98a
commit
53c80bc72b
|
@ -81,7 +81,7 @@ Feel free to add your project to this list if you happen to use **nalgebra**!
|
||||||
#![deny(non_upper_case_globals)]
|
#![deny(non_upper_case_globals)]
|
||||||
#![deny(unused_qualifications)]
|
#![deny(unused_qualifications)]
|
||||||
#![deny(unused_results)]
|
#![deny(unused_results)]
|
||||||
// #![allow(unstable)]
|
#![allow(unstable)]
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
#![feature(old_orphan_check)]
|
#![feature(old_orphan_check)]
|
||||||
#![feature(unboxed_closures)]
|
#![feature(unboxed_closures)]
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
//! Assertion macro tests
|
//! Assertion macro tests
|
||||||
|
|
||||||
#![feature(plugin)]
|
#![feature(plugin)]
|
||||||
|
#![allow(unstable)]
|
||||||
|
|
||||||
#[plugin]
|
#[plugin]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|
Loading…
Reference in New Issue