diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-01-29 09:02:19 -0800 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-29 09:02:19 -0800 |
commit | 034286176f67c0b69c50dfead67ac96a75379e3f (patch) | |
tree | b171cfabaf889a5f0f7777e211448de38f44f52b /src | |
parent | 50c36039fe7cf65692acd34d5b849dbdb1caf9b2 (diff) | |
download | ssh2-rs-034286176f67c0b69c50dfead67ac96a75379e3f.zip |
Add feature gates
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -114,10 +114,9 @@ //! let contents = remote_file.read_to_end(); //! ``` -#![feature(unsafe_destructor)] +#![feature(unsafe_destructor, std_misc, collections, io, core, path, hash)] #![deny(missing_docs, unused_results)] #![cfg_attr(test, deny(warnings))] -#![allow(unstable)] extern crate "libssh2-sys" as raw; extern crate libc; |