Skip to main content

Install the Aerospike client


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.git
cd aerospike-client-rust
cargo build

Reference 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"