summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-29 09:02:19 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-29 09:02:19 -0800
commit034286176f67c0b69c50dfead67ac96a75379e3f (patch)
treeb171cfabaf889a5f0f7777e211448de38f44f52b /src
parent50c36039fe7cf65692acd34d5b849dbdb1caf9b2 (diff)
downloadssh2-rs-034286176f67c0b69c50dfead67ac96a75379e3f.zip
Add feature gates
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d52acc9..6d95408 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;