From 82a3ce28291810c6f4a8d28e80c621ed52971896 Mon Sep 17 00:00:00 2001 From: Maximilian Schneider Date: Wed, 2 Oct 2024 19:06:10 +0100 Subject: [PATCH] fix anchor build --- Anchor.toml | 15 +++++++++++++++ Cargo.lock | 2 +- bin/cli/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 Anchor.toml diff --git a/Anchor.toml b/Anchor.toml new file mode 100644 index 0000000..88c1c52 --- /dev/null +++ b/Anchor.toml @@ -0,0 +1,15 @@ +[toolchain] +anchor_version = "0.29.0" +solana_version = "2.0.3" + +[workspace] +members = [ + "programs/autobahn-executor" +] + +[provider] +cluster = "mainnet" +wallet = "~/.config/solana/id.json" + +[programs.mainnet] +autobahn_executor = "AutobNFLMzX1rFCDgwWpwr3ztG5c1oDbSrGq7Jj2LgE" \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 734c66b..2c1370a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -681,7 +681,7 @@ dependencies = [ [[package]] name = "autobahn-executor" -version = "0.1.0" +version = "1.0.0" dependencies = [ "bonfida-test-utils", "bytemuck", diff --git a/bin/cli/Cargo.toml b/bin/cli/Cargo.toml index 67df022..629a431 100644 --- a/bin/cli/Cargo.toml +++ b/bin/cli/Cargo.toml @@ -13,7 +13,7 @@ tokio = { workspace = true } anyhow = { workspace = true } solana-sdk = { workspace = true } solana-client = { workspace = true } -autobahn-executor = { path = "../../programs/autobahn-executor", version = "0.1.0" } +autobahn-executor = { path = "../../programs/autobahn-executor" } router-lib = { path = "../../lib/router-lib/", version = "0.0.1" } router-config-lib = { path = "../../lib/router-config-lib/", version = "0.0.1" } serde = "1.0"