This library, async-ssh2-tokio, is a asynchronous and super-easy-to-use high level ssh client library for rust. This library is powered by thrussh.
rust
[dependencies]
tokio = "1"
async-ssh2-tokio = "0.1"
```rust use asyncssh2tokio::client::{Client, Host, AuthMethod}; use asyncssh2tokio::error::AsyncSsh2Error;
async fn main() -> Result<(), AsyncSsh2Error> { let username = "username".tostring(); // Key auth is under development. If you need this, then create github issue or contribute this. let password = AuthMethod::Password("password".tostring());
// If you want specify host by ip, then
// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
// let localhost_v4 = IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1));
// let host = Host::IpAddress(localhost_v4);
let host = Host::Hostname("localhost".to_string();
let port = 22;
let mut client = Client::new(host, port, username, password);
client.connect().await?;
let result = client.execute("echo test!!!").await?;
assert_eq!(result.output, "test!!!\n");
Ok(())
} ```