diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-01-29 08:42:02 -0800 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-29 08:42:02 -0800 |
commit | 0a6a1cabded126552662ec45ed844e4ca9e5d502 (patch) | |
tree | 0217edc28ab331d8e8882a8226a173e8f2f39af6 /src | |
parent | 482752b5f4c7bbb3e1b5fce28ec67720912ffb51 (diff) | |
download | milf-rs-0a6a1cabded126552662ec45ed844e4ca9e5d502.tar.gz milf-rs-0a6a1cabded126552662ec45ed844e4ca9e5d502.zip |
Add some feature gates
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,9 +36,9 @@ //! [2]: https://github.com/BurntSushi/toml-test //! +#![feature(collections, core)] #![deny(missing_docs)] #![cfg_attr(test, deny(warnings))] -#![cfg_attr(test, allow(unstable))] extern crate "rustc-serialize" as rustc_serialize; |