From bdd6886223751ddc0c9f981de758356cc1d70735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Volek?= Date: Wed, 8 Apr 2026 16:20:30 +0200 Subject: [PATCH] readme: rust --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index db541171..ac0507d8 100644 --- a/README.md +++ b/README.md @@ -83,3 +83,18 @@ type Block = components['schemas']['block_content']; type Address = components['schemas']['address_content']; type UtxoAsset = components['schemas']['address_utxo_content']; ``` + +### Rust crate + +Add `blockfrost-openapi` to your `Cargo.toml`: + +```toml +[dependencies] +blockfrost-openapi = "0.1.87" +``` + +Now you can use the generated Rust types: + +```rust +use blockfrost_openapi::models::{BlockContent, AddressContent, AddressUtxoContentInner}; +```