Skip to content

Commit

Permalink
⬆️ Modify dependencies
Browse files Browse the repository at this point in the history
removed anchor idl feature flags , increased minimal solana ver. to 1.17.4
  • Loading branch information
lukacan committed Jul 5, 2024
1 parent f73ee5c commit a629621
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 25 deletions.
53 changes: 44 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ resolver = "1"

[workspace.dependencies]
# ANCHOR
anchor-client = { version = ">=0.29.0" }
anchor-syn = { version = ">=0.29.0" }
anchor-spl = { version = ">=0.29.0" }
anchor-lang = { version = ">=0.29.0" }
anchor-client = { version = "0.29.0" }
anchor-syn = { version = "0.29.0" }
anchor-spl = { version = "0.29.0" }
anchor-lang = { version = "0.29.0" }
# SOLANA
solana-sdk = "1.16"
solana-cli-output = "1.16"
solana-transaction-status = "1.16"
solana-account-decoder = "1.16"
solana-program = "1.16"
solana-banks-client = "1.16"
solana-program-runtime = "1.16"
solana-program-test = "1.16"
spl-token = "4.0.0"
solana-sdk = "1.17.4"
solana-cli-output = "1.17.4"
solana-transaction-status = "1.17.4"
solana-account-decoder = "1.17.4"
solana-program = "1.17.4"
solana-banks-client = "1.17.4"
solana-program-runtime = "1.17.4"
solana-program-test = "1.17.4"
spl-token = "3.5.0"
spl-associated-token-account = "2.0.0"
4 changes: 2 additions & 2 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ trident-fuzz = { path = "../fuzz", version = "0.1.0" }
# ANCHOR
# INFO: Anchor-spl is here as dependency only to activate the idl-build feature, so that
# users do not have to do it manually in their program's Cargo.toml
anchor-spl = { workspace = true, features = ["idl-build"] }
anchor-lang = { workspace = true, features = ["idl-build", "init-if-needed"] }
anchor-spl = { workspace = true }
anchor-lang = { workspace = true, features = ["init-if-needed"] }
anchor-syn = { workspace = true }
anchor-client = { workspace = true, features = ["async"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ solana-program-runtime = { workspace = true }
solana-program-test = { workspace = true }

# ANCHOR
anchor-lang = { workspace = true, features = ["idl-build", "init-if-needed"] }
anchor-lang = { workspace = true, features = ["init-if-needed"] }
anchor-syn = { workspace = true }


Expand Down

0 comments on commit a629621

Please sign in to comment.