diff options
-rw-r--r-- | Cargo.toml | 5 | ||||
-rw-r--r-- | src/lib.rs | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -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" @@ -97,6 +97,7 @@ extern crate "libssh2-sys" as raw; extern crate libc; +#[macro_use] extern crate bitflags; use std::ffi; use std::mem; |