Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ To use the Miden client library in a Rust project, include it as a dependency.
In your project's `Cargo.toml`, add:

```toml
miden-client = { version = "0.11" }
miden-client = { version = "0.15.5", features = ["tonic"] }
```

`ClientBuilder::for_testnet()`, `for_devnet()`, and `for_localhost()` are gated on the `tonic` feature. Default features (`std` only) omit those constructors.

## Client instantiation

The recommended way to create a client is using the `ClientBuilder`. For standard networks, use the pre-configured constructors:
Expand Down