iac_rs/
lib.rs

1#![doc(
2    html_logo_url = "https://raw.githubusercontent.com/kevin-rs/autogpt/refs/heads/main/iac-rs/assets/logo.webp",
3    html_favicon_url = "https://github.com/kevin-rs/autogpt/blob/main/iac-rs/assets/favicon.png"
4)]
5#![cfg_attr(docsrs, feature(doc_auto_cfg))]
6#![doc = include_str!("../README.md")]
7
8// TODO: Add non std support
9// #![no_std]
10// extern crate alloc;
11
12pub mod client;
13pub mod crypto;
14pub mod message;
15pub mod prelude;
16pub mod server;
17pub mod traits;
18pub mod transport;