Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 466 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 466 Bytes

ssh

Fork of pijul.org/ssh (dead link)

The crate at https://crates.io/crates/ssh points to dead source, this is a fork with updates

Windows and vcpkg

Requires vcpkg installed and VCPKG_ROOT set.

Static linking

vcpkg.exe install libssh:x64-windows-static
$env:RUSTFLAGS="-Ctarget-feature=+crt-static"
cargo build

Dynamic linking (make sure to distribute require DLLs)

vcpkg.exe install libssh:x64-windows
$env:VCPKGRS_DYNAMIC=1
cargo build