From f92aa9f45f669fd3f43ef5868991e1547210caa7 Mon Sep 17 00:00:00 2001 From: Michael Jeffrey Date: Wed, 23 Oct 2024 10:34:54 -0700 Subject: [PATCH] requiring >=0.30 for anchor-lang causes problems spl-account-compression is pinned to anchor-lang 0.29.0. helium-lib uses spl-account-compression, so causes two versions of anchor-lang to exist. Have been told that this project and all projects should be using 0.28.0 of anchor/solana related deps --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fa640af..2443d09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ members = [ [workspace.dependencies] anchor-gen = "0" -anchor-lang = ">=0.30" +anchor-lang = ">=0.28" [dependencies] anchor-gen = { workspace = true }