Rust SDK
Installation
Aptos provides an official Rust SDK in the Aptos-core GitHub repository. To use the Rust SDK, add the following dependency and patches on the git repo directly in your Cargo.toml
, like this:
Cargo.toml
[dependencies]
aptos-sdk = { git = "https://github.com/aptos-labs/aptos-core", branch = "devnet" }
[patch.crates-io]
merlin = { git = "https://github.com/aptos-labs/merlin" }
x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", branch = "zeroize_v1" }
You must also create a .cargo/config.toml
file with this content:
.cargo/config.toml
[build]
rustflags = ["--cfg", "tokio_unstable"]
The source code for the official Rust SDK is available in the aptos-core GitHub repository.
Using Rust SDK
See the Developer Tutorials for code examples showing how to use the Rust SDK.