clamd-client 0.1.2

Rust async tokio client for clamd. Works with a tcp socket or with the unix socket. At the moment it will open a new socket for each command. Work in progress.
Documentation
use std::net::SocketAddr;

use clamd_client::ClamdClientBuilder;
use eyre::Result;
use tracing::info;
use tracing_subscriber;

const NUM_BYTES: usize = 1024 * 1024;

#[tokio::main]
async fn main() -> Result<()> {
    tracing_subscriber::fmt::init();

    let address = "127.0.0.1:3310";
    let mut clamd_client = ClamdClientBuilder::tcp_socket(address).build();
    clamd_client.ping().await?;
    info!("Ping worked!");
    clamd_client.reload().await?;
    info!("Reload worked!");
    let version = clamd_client.version().await?;
    info!("Clamd Version: {}", version);
    let stats = clamd_client.stats().await?;
    info!("Got clamd stats:");
    for stat in stats.lines() {
        info!("    {}", stat);
    }

    let random_bytes: Vec<u8> = (0..NUM_BYTES).map(|_| rand::random::<u8>()).collect();

    clamd_client.scan_bytes(&random_bytes).await?;
    info!("Clamd scan found no virus in the random bytes");

    let eicar_bytes = reqwest::get("https://secure.eicar.org/eicarcom2.zip")
        .await?
        .bytes()
        .await?;

    let err = clamd_client.scan_bytes(&eicar_bytes).await.unwrap_err();
    let msg = err.scan_error().unwrap();
    info!("Eicar scan returned that its a virus: {}", msg);

    Ok(())
}