From d3a634c709f63cb82b8831bbdc9125535a75bd67 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Wed, 3 Aug 2022 09:47:44 +0200 Subject: [PATCH] Cargo: Fix mango-v4 deps to specify client feature --- cli/Cargo.toml | 2 +- client/Cargo.toml | 2 +- keeper/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 65c45d6aa..e1c9bc693 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -18,7 +18,7 @@ fixed = { version = "=1.11.0", features = ["serde", "borsh"] } fixed-macro = "^1.1.1" futures = "0.3.21" log = "0.4.0" -mango-v4 = { path = "../programs/mango-v4" } +mango-v4 = { path = "../programs/mango-v4", features = ["no-entrypoint", "client"] } pyth-sdk-solana = "0.1.0" serum_dex = { version = "0.4.0", git = "https://github.com/blockworks-foundation/serum-dex.git", default-features=false, features = ["no-entrypoint", "program"] } solana-client = "~1.10.29" diff --git a/client/Cargo.toml b/client/Cargo.toml index ce01f3878..8f8ee4cc3 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0" fixed = { version = "=1.11.0", features = ["serde", "borsh"] } fixed-macro = "^1.1.1" itertools = "0.10.3" -mango-v4 = { path = "../programs/mango-v4" } +mango-v4 = { path = "../programs/mango-v4", features = ["no-entrypoint", "client"] } pyth-sdk-solana = "0.1.0" serum_dex = { version = "0.4.0", git = "https://github.com/blockworks-foundation/serum-dex.git", default-features=false, features = ["no-entrypoint", "program"] } shellexpand = "2.1.0" diff --git a/keeper/Cargo.toml b/keeper/Cargo.toml index ad8c821da..73724e89a 100644 --- a/keeper/Cargo.toml +++ b/keeper/Cargo.toml @@ -18,7 +18,7 @@ fixed = { version = "=1.11.0", features = ["serde", "borsh"] } fixed-macro = "^1.1.1" futures = "0.3.21" log = "0.4.0" -mango-v4 = { path = "../programs/mango-v4" } +mango-v4 = { path = "../programs/mango-v4", features = ["no-entrypoint", "client"] } pyth-sdk-solana = "0.1.0" serum_dex = { version = "0.4.0", git = "https://github.com/blockworks-foundation/serum-dex.git", default-features=false, features = ["no-entrypoint", "program"] } solana-client = "~1.10.29"