sdk

Radroots SDK and bindings
git clone https://radroots.dev/git/sdk.git
Log | Files | Refs | README

commit 1e922fb3c24b8fa9f183230e975dae9efbf0517c
parent 3e57925ee07160b9f88e9ad255d9575c45f7e86d
Author: triesap <tyson@radroots.org>
Date:   Wed, 17 Jun 2026 16:01:14 -0700

sdk: gate runtime example by feature

- declare runtime_local as a cli-runtime example

- keep default workspace tests from compiling runtime-only APIs without the feature bundle

- preserve explicit feature-gated example execution

Diffstat:
Mcrates/sdk/Cargo.toml | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/crates/sdk/Cargo.toml b/crates/sdk/Cargo.toml @@ -120,6 +120,11 @@ name = "sdk_v1_local_enqueue_and_mock_sync" path = "examples/sdk_v1_local_enqueue_and_mock_sync.rs" required-features = ["runtime", "local-signer"] +[[example]] +name = "runtime_local" +path = "examples/runtime_local.rs" +required-features = ["cli-runtime"] + [dev-dependencies] futures = { workspace = true } nostr = { workspace = true }