Skip to content

Commit

Permalink
Revert "stake-pool: Downgrade dependencies for fixed release (#7509)" (
Browse files Browse the repository at this point in the history
…#7510)

* Revert "stake-pool: Downgrade dependencies for fixed release (#7509)"

This reverts commit d4c250f.

* Bump version to v2.0.1
  • Loading branch information
joncinque authored Nov 20, 2024
1 parent d4c250f commit 0f54203
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion stake-pool/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spl-associated-token-account = { version = "=6.0.0", path = "../../associated-to
"no-entrypoint",
] }
spl-associated-token-account-client = { version = "=2.0.0", path = "../../associated-token-account/client" }
spl-stake-pool = { version = "=2.0.0", path = "../program", features = [
spl-stake-pool = { version = "=2.0.1", path = "../program", features = [
"no-entrypoint",
] }
spl-token = { version = "=7.0", path = "../../token/program", features = [
Expand Down
17 changes: 10 additions & 7 deletions stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ num-traits = "0.2"
num_enum = "0.7.3"
serde = "1.0.215"
serde_derive = "1.0.103"
solana-program = "2.0.0"
solana-program = "2.1.0"
solana-security-txt = "1.1.1"
spl-pod = { version = "0.3.0", features = [
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = [
"borsh",
] }
spl-token-2022 = { version = "4.0.0", features = [
spl-token-2022 = { version = "6.0.0", path = "../../token/program-2022", features = [
"no-entrypoint",
] }
thiserror = "2.0"
Expand All @@ -34,13 +34,16 @@ bincode = "1.3.1"
[dev-dependencies]
assert_matches = "1.5.0"
proptest = "1.5"
solana-program-test = "2.0.0"
solana-sdk = "2.0.0"
solana-vote-program = "2.0.0"
spl-token = { version = "6.0", features = [
solana-program-test = "2.1.0"
solana-sdk = "2.1.0"
solana-vote-program = "2.1.0"
spl-token = { version = "7.0", path = "../../token/program", features = [
"no-entrypoint",
] }
test-case = "3.3"

[lib]
crate-type = ["cdylib", "lib"]

[lints]
workspace = true

0 comments on commit 0f54203

Please sign in to comment.