From 803708ea1e32901388e38fb6e12b890a03b5d236 Mon Sep 17 00:00:00 2001 From: Daniil Polyakov Date: Thu, 26 Feb 2026 01:56:57 +0300 Subject: [PATCH] fix: set wallet-ffi default features to false in workspace to fix tps test --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 096f54d5..c868e0a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ indexer_service = { path = "indexer/service" } indexer_service_protocol = { path = "indexer/service/protocol" } indexer_service_rpc = { path = "indexer/service/rpc" } wallet = { path = "wallet" } -wallet-ffi = { path = "wallet-ffi" } +wallet-ffi = { path = "wallet-ffi", default-features = false } token_core = { path = "programs/token/core" } token_program = { path = "programs/token" } amm_core = { path = "programs/amm/core" }