Skip to content

Rust SDK - Installation

  • Rust 1.70+
  • For async: tokio runtime

Add to your Cargo.toml:

[dependencies]
funnelmob = "0.1.0"

For async/await compatibility, enable the async feature:

[dependencies]
funnelmob = { version = "0.1.0", features = ["async"] }
FeatureDescription
defaultSync API only (ureq)
asyncAdds async API (tokio + reqwest)