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

stake-pool: Downgrade dependencies for fixed release #7509

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-stake-pool"
version = "2.0.0"
version = "2.0.1"
description = "Solana Program Library Stake Pool"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -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.1.0"
solana-program = "2.0.0"
solana-security-txt = "1.1.1"
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = [
spl-pod = { version = "0.3.0", features = [
"borsh",
] }
spl-token-2022 = { version = "6.0.0", path = "../../token/program-2022", features = [
spl-token-2022 = { version = "4.0.0", features = [
"no-entrypoint",
] }
thiserror = "2.0"
Expand All @@ -34,16 +34,13 @@ bincode = "1.3.1"
[dev-dependencies]
assert_matches = "1.5.0"
proptest = "1.5"
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 = [
solana-program-test = "2.0.0"
solana-sdk = "2.0.0"
solana-vote-program = "2.0.0"
spl-token = { version = "6.0", features = [
"no-entrypoint",
] }
test-case = "3.3"

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

[lints]
workspace = true
Loading