Skip to main content
info
IOTA Identity for Rebased is currently in alpha and may still be subject to significant changes

Getting Started with Rust

Requirements

Include the Library

To include IOTA Identity in your project, add it as a dependency in your Cargo.toml:

[dependencies]
identity_iota = { git = "https://github.com/iotaledger/identity.rs", tag = "v1.6.0-alpha"}

Examples

To try out the examples, you should:

  1. Clone the repository:
git clone https://github.com/iotaledger/identity.rs
  1. Build the repository:
cargo build
  1. Run your first example:
cargo run --example 0_create_did

API Reference

You can find the API reference for the Rust library on docs.rs.

If you would like to build the documentation, locally you can do so with the following command:

RUSTDOCFLAGS='--cfg docsrs' cargo +nightly doc -p identity_iota --all-features --no-deps --open