Install the Aerospike client
Versions
-
The latest stable release of the Rust client is version 1.3.0.
-
An alpha release of version 2.0 is available in preview.
-
With version 2.2.0, the Rust client will become an officially supported Aerospike client library.
Prerequisites
- Rust 1.34 and above.
Build from Source Code
The client library can be built from source code using Cargo. The source code is available from GitHub. To clone the source code repository and build the library, run the following commands:
git clone git@github.com:aerospike/aerospike-client-rust.gitcd aerospike-client-rustcargo buildReference Client Library
When building an application using Aerospike, the Rust client library needs to
be added as a dependency in your Cargo.toml file:
[dependencies]aerospike = "0.4.0"