Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 0f54203

Browse files
authored
Revert "stake-pool: Downgrade dependencies for fixed release (#7509)" (#7510)
* Revert "stake-pool: Downgrade dependencies for fixed release (#7509)" This reverts commit d4c250f. * Bump version to v2.0.1
1 parent d4c250f commit 0f54203

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stake-pool/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spl-associated-token-account = { version = "=6.0.0", path = "../../associated-to
2727
"no-entrypoint",
2828
] }
2929
spl-associated-token-account-client = { version = "=2.0.0", path = "../../associated-token-account/client" }
30-
spl-stake-pool = { version = "=2.0.0", path = "../program", features = [
30+
spl-stake-pool = { version = "=2.0.1", path = "../program", features = [
3131
"no-entrypoint",
3232
] }
3333
spl-token = { version = "=7.0", path = "../../token/program", features = [

stake-pool/program/Cargo.toml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ num-traits = "0.2"
2020
num_enum = "0.7.3"
2121
serde = "1.0.215"
2222
serde_derive = "1.0.103"
23-
solana-program = "2.0.0"
23+
solana-program = "2.1.0"
2424
solana-security-txt = "1.1.1"
25-
spl-pod = { version = "0.3.0", features = [
25+
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = [
2626
"borsh",
2727
] }
28-
spl-token-2022 = { version = "4.0.0", features = [
28+
spl-token-2022 = { version = "6.0.0", path = "../../token/program-2022", features = [
2929
"no-entrypoint",
3030
] }
3131
thiserror = "2.0"
@@ -34,13 +34,16 @@ bincode = "1.3.1"
3434
[dev-dependencies]
3535
assert_matches = "1.5.0"
3636
proptest = "1.5"
37-
solana-program-test = "2.0.0"
38-
solana-sdk = "2.0.0"
39-
solana-vote-program = "2.0.0"
40-
spl-token = { version = "6.0", features = [
37+
solana-program-test = "2.1.0"
38+
solana-sdk = "2.1.0"
39+
solana-vote-program = "2.1.0"
40+
spl-token = { version = "7.0", path = "../../token/program", features = [
4141
"no-entrypoint",
4242
] }
4343
test-case = "3.3"
4444

4545
[lib]
4646
crate-type = ["cdylib", "lib"]
47+
48+
[lints]
49+
workspace = true

0 commit comments

Comments
 (0)