Rust SDK - Installation
Requirements
Section titled “Requirements”- Rust 1.70+
- For async: tokio runtime
Add to your Cargo.toml:
[dependencies]funnelmob = "0.1.0"Async Support
Section titled “Async Support”For async/await compatibility, enable the async feature:
[dependencies]funnelmob = { version = "0.1.0", features = ["async"] }Features
Section titled “Features”| Feature | Description |
|---|---|
default | Sync API only (ureq) |
async | Adds async API (tokio + reqwest) |