Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.09 KB

README.template.md

File metadata and controls

40 lines (24 loc) · 1.09 KB

{{ ossHeader }}

Packages

The Momento Rust SDK package is available on crates.io: momento.

You will need to install additional dependencies to make full use of our SDK:

cargo add momento
cargo add tokio --features full
cargo add futures

Note: you will only need to install futures if you use Momento Topics.

Usage

Here is a quickstart you can use in your own project:

{% include "./example/rust/src/bin/readme.rs" %}

Note that the above code requires an environment variable named MOMENTO_API_KEY which must be set to a valid Momento authentication token.

Getting Started and Documentation

Documentation is available on the Momento Docs website.

Examples

Ready to dive right in? Just check out the example directory for complete, working examples of how to use the SDK.

Developing

If you are interested in contributing to the SDK, please see the CONTRIBUTING docs.

{{ ossFooter }}