iac-rs 0.0.7

🛰️ IAC Protocol for Inter and Intra Agents Communications.
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![allow(ambiguous_glob_reexports)]

pub use {
    crate::client::Client,
    crate::crypto::{Signer, Verifier, generate_key},
    crate::message::{Message, MessageType},
    crate::server::Server,
    crate::traits::Network,
    crate::transport::{connect, init_client, init_server},
    anyhow::Result,
    async_trait::async_trait,
    auto_net::AutoNet,
    ed25519_compact::KeyPair,
    ed25519_compact::PublicKey,
    quinn::*,
    std::net::*,
    std::time::*,
    tokio::time::*,
    tracing::debug,
};

// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.