Installation Guide
Prerequisites
Download the latest toolchain for you programming language:
Rust 1.83.0 or higher. (See instructions.)
API-specific Installation
Choose the APIs you need for your project:
Autonomi Client
cargo add autonomi
Ant Node
cargo add ant-node
BLS Threshold Crypto
cargo add blsttc
Self Encryption
cargo add self_encryption
Verifying Installation
Test your installation by running a simple client initialization:
use autonomi::Client;
let client = Client::init().await.expect("Could not initialize the client");
println!("Client initialized successfully");
Next Steps
Quick Start Guides:
API References:
Last updated