https://github.com/dten/ssh-rs
Fork of pijul.org/ssh
https://github.com/dten/ssh-rs
Last synced: about 1 year ago
JSON representation
Fork of pijul.org/ssh
- Host: GitHub
- URL: https://github.com/dten/ssh-rs
- Owner: dten
- License: mit
- Created: 2019-10-13T18:44:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-10T16:14:12.000Z (over 5 years ago)
- Last Synced: 2025-01-28T10:45:03.859Z (over 1 year ago)
- Language: Rust
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```