async-ssh2-tokio

Unit Test Status Lint Status

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.

Features

Install

rust [dependencies] tokio = "1" async-ssh2-tokio = "0.2.1"

Example

```rust use asyncssh2tokio::client::{Client, Host, AuthMethod}; use asyncssh2tokio::error::AsyncSsh2Error;

[tokio::main]

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());

let mut client = Client::new("localhost:22", username, password);
client.connect().await?;
let result = client.execute("echo test!!!").await?;
assert_eq!(result.output, "test!!!\n");
Ok(())

} ```