summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml5
-rw-r--r--src/lib.rs1
2 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c0ebba7..24acda4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ssh2"
-version = "0.1.6"
+version = "0.1.7"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
keywords = ["ssh"]
@@ -16,6 +16,9 @@ commands, forwarding local ports, etc.
[[test]]
name = "all"
+[dependencies]
+bitflags = "0.1"
+
[dependencies.libssh2-sys]
path = "libssh2-sys"
version = "0.1.0"
diff --git a/src/lib.rs b/src/lib.rs
index ff14103..d2dd940 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -97,6 +97,7 @@
extern crate "libssh2-sys" as raw;
extern crate libc;
+#[macro_use] extern crate bitflags;
use std::ffi;
use std::mem;