diff --git a/Anchor.toml b/Anchor.toml new file mode 100644 index 00000000000..be0ee6d8a51 --- /dev/null +++ b/Anchor.toml @@ -0,0 +1,14 @@ +anchor_version = "0.13.2" + +[workspace] +members = [ + "token-lending/program", + "token/program", +] + +[provider] +cluster = "mainnet" +wallet = "~/.config/solana/id.json" + +[programs.mainnet] +spl_token_lending = "" diff --git a/Cargo.toml b/Cargo.toml index aa318efc15f..c417fe66d9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,35 +1,7 @@ [workspace] members = [ - "associated-token-account/program", - "binary-oracle-pair/program", - "examples/rust/cross-program-invocation", - "examples/rust/custom-heap", - "examples/rust/logging", - "examples/rust/sysvar", - "examples/rust/transfer-lamports", - "feature-proposal/program", - "feature-proposal/cli", - "governance/program", - "libraries/math", - "memo/program", - "name-service/program", - "record/program", - "shared-memory/program", - "stake-pool/cli", - "stake-pool/program", - "token-lending/cli", "token-lending/program", - "token-swap/program", - "token-swap/program/fuzz", - "token/cli", "token/program", - "utils/cgen", - "utils/test-client", -] -exclude = [ - "themis/client_ristretto", - "themis/program_ristretto", - "token/perf-monitor", # TODO: Rework perf-monitor to use solana-program-test, avoiding the need to link directly with the BPF VM ] [profile.dev]