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

Commit d4c250f

Browse files
authored
stake-pool: Downgrade dependencies for fixed release (#7509)
#### Problem The current spl-stake-pool crate doesn't always work due to its dependency on spl-math which still uses the v1 Solana crates. #### Summary of changes Since the spl-math dependency wasn't actually needed, it was removed in #7421. So just to get a new patch release out, downgrade the local dependencies. This will fail CI, but after it lands we can tag the release, and revert this PR.
1 parent 4faa149 commit d4c250f

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

stake-pool/program/Cargo.toml

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-stake-pool"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "Solana Program Library Stake Pool"
55
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -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.1.0"
23+
solana-program = "2.0.0"
2424
solana-security-txt = "1.1.1"
25-
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = [
25+
spl-pod = { version = "0.3.0", features = [
2626
"borsh",
2727
] }
28-
spl-token-2022 = { version = "6.0.0", path = "../../token/program-2022", features = [
28+
spl-token-2022 = { version = "4.0.0", features = [
2929
"no-entrypoint",
3030
] }
3131
thiserror = "2.0"
@@ -34,16 +34,13 @@ bincode = "1.3.1"
3434
[dev-dependencies]
3535
assert_matches = "1.5.0"
3636
proptest = "1.5"
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 = [
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 = [
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)