Welcome to Moby SDK
The Moby SDK empowers developers with Rust-based tools for building high-performance applications. Leverage memory safety, concurrency, and zero-cost abstractions directly in your projects.
// Install the Moby SDK $ cargo install moby-sdk // Create a new project $ moby new my_project
Run moby --help
to see all available commands.
Key Features
Memory Safety
Compile-time validation of memory patterns with Rust's ownership system ensures your applications are secure by design.
Zero-Cost Abstractions
Leverage Rust's powerful features at minimal runtime cost for maximum performance.
Concurrency
Safe, efficient concurrency through Rust's type system with no runtime overhead.
WebAssembly
Cross-compile your applications to WebAssembly for edge computing and browser execution.
Code Example
// Initialize Moby client use moby_sdk::prelude::*; fn main() { let client = MobyClient::new(); let response = client.fetch("https://api.example.com/data") .with_header("Authorization", "your-api-key") .execute()?; println!("Status: {}", response.status()); Ok(()) }
SDK Documentation
CLI Guide
Learn how to use Moby CLI tools for project scaffolding and deployment.
API Reference
Detailed documentation for all SDK functions and Rust APIs.