From 3cdcb74b54fa52c3405156c5a0344a1ecde54d55 Mon Sep 17 00:00:00 2001 From: Layer Tau <282960173+layertau@users.noreply.github.com> Date: Wed, 13 May 2026 22:02:41 +0000 Subject: [PATCH] Fix wavs-types BLS feature build --- .github/workflows/basic.yml | 3 +++ packages/types/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 710cf1c5a..6a85c3ef5 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -62,3 +62,6 @@ jobs: - name: Run clippy run: cargo clippy --all-targets --all-features -- -D warnings + + - name: Check wavs-types standalone feature builds + run: cargo check -p wavs-types --no-default-features --features full --locked diff --git a/packages/types/Cargo.toml b/packages/types/Cargo.toml index 6a95a956c..a4777c3a8 100644 --- a/packages/types/Cargo.toml +++ b/packages/types/Cargo.toml @@ -55,7 +55,7 @@ alloy-signer-local = { workspace = true, optional = true } commonware-cryptography = { workspace = true, optional = true } blst = { version = "0.3.16", optional = true } commonware-codec = { version = "2026.3.0", optional = true } -tokio = { version = "1", optional = true, default-features = false, features = ["sync"] } +tokio = { version = "1", optional = true, default-features = false, features = ["sync", "rt"] } cosmwasm-schema = { workspace = true, optional = true } ts-rs = { version = "11.1", features = ["serde-compat"], optional = true }