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

Commit 3dd6767

Browse files
authored
stake-pool: Update versions for crate deployment (#1657)
1 parent b99c9b3 commit 3dd6767

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/stake-pool"
66
license = "Apache-2.0"
77
name = "spl-stake-pool-cli"
88
repository = "https://github.com/solana-labs/solana-program-library"
9-
version = "2.0.1"
9+
version = "0.1.0"
1010

1111
[dependencies]
1212
borsh = "0.8"
@@ -19,9 +19,9 @@ solana-client = "1.6.6"
1919
solana-logger = "1.6.6"
2020
solana-sdk = "1.6.6"
2121
solana-program = "1.6.6"
22-
spl-associated-token-account = { path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
23-
spl-stake-pool = { path="../program", features = [ "no-entrypoint" ] }
24-
spl-token = { path="../../token/program", features = [ "no-entrypoint" ] }
22+
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
23+
spl-stake-pool = { version = "0.1", path="../program", features = [ "no-entrypoint" ] }
24+
spl-token = { version = "3.1", path="../../token/program", features = [ "no-entrypoint" ] }
2525
bs58 = "0.4.0"
2626
bincode = "1.3.1"
2727
lazy_static = "1.4.0"

stake-pool/program/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ num_enum = "0.5.1"
2020
serde = "1.0.121"
2121
serde_derive = "1.0.103"
2222
solana-program = "1.6.6"
23-
spl-math = { path = "../../libraries/math", features = [ "no-entrypoint" ] }
24-
spl-token = { path = "../../token/program", features = [ "no-entrypoint" ] }
23+
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
24+
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
2525
thiserror = "1.0"
2626
bincode = "1.3.1"
2727

0 commit comments

Comments
 (0)