Rust async ssh client
wrapped by thrussh.
```rust use std::env; use std::time::Duration;
use tsshclient::{AuthMethod, Client, PasswordAuth};
async fn main() -> Result<(), Box
let mut client = Client::builder()
.auth(AuthMethod::Password(pa))
.connect_timeout(Duration::from_secs(2))
.connect("192.168.62.1:22")
.await?;
println!("login success");
let output = client.output("echo 'hello, world!'").await?;
assert_eq!(output.stdout_string(), "hello, world!\n");
Ok(())
} ```
This project is licensed under the [MIT license].