redarrow 0.10.6

Execute commands on remote servers.
Documentation
# redarrow-rust

Execute commands on remote servers.

## client example

```rust
let client = webclient::Client::new(host, 4205, command, arguments);
let result = client.run_command();
```

## run server

```shell
export RUST_LOG="actix_web=info"
redarrow-server -c misc/example.conf
```

## run client

```shell
redarrow-client uptime
```