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