libssh-sys 0.1.0

FFI bindings for libssh
1
2
3
4
5
6
7
8
9
fn main() {
    // Dynamic libssh doesn't need initialization since 0.8,
    // so we require that to keep things easy.
    pkg_config::Config::new()
        .atleast_version("0.8")
        .statik(false)
        .probe("libssh")
        .expect("dynamically linked libssh >= 0.8 is required");
}