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 166dff5
Show file tree
Hide file tree
Showing 19 changed files with 681 additions and 187 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.

32 changes: 18 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@ 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 = ">=0.29.0"
anchor-syn = ">=0.29.0"
anchor-spl = ">=0.29.0"
anchor-lang = ">=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"
spl-associated-token-account = "2.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-associated-token-account = { version = "3.0.2", features = [
"no-entrypoint",
] }
spl-token = { version = "4.0.0", features = ["no-entrypoint"] }
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
# Dependencies specific to Fuzz test
[dependencies]
# ... your dependencies here
honggfuzz = "0.5.55"
honggfuzz = "0.5.56"
arbitrary = "1.3.0"
assert_matches = "1.4.0"

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
Loading

0 comments on commit 166dff5

Please sign in to comment.