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.3.0"
```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());
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(())
} ```