# Installation

We provide the Rust SDK for developing secure threshold cryptography projects in Rust.

## Obtaining Credentials

To obtain the necessary credentials for accessing the Sodot Rust SDK, use our guide [here](/rust/credentials_guide).

## Rust

To use the SDK in your Rust project:

1. Add the following to your `Cargo.toml`:

```toml
[dependencies]
sodot-mpc = { version = "<version>", registry = "sodot" }  # Replace with the desired version
```

2. Make sure that you have a valid **Relay API key** provided by the [Sodot team](mailto\:sdk@sodot.dev).

3. Build your project with Cargo:

```bash
cargo build
```
