Skip to content

Commit

Permalink
stake-pool: Update versions for crate deployment (#1657)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque authored May 3, 2021
1 parent b99c9b3 commit 3dd6767
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.

8 changes: 4 additions & 4 deletions stake-pool/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/stake-pool"
license = "Apache-2.0"
name = "spl-stake-pool-cli"
repository = "https://github.com/solana-labs/solana-program-library"
version = "2.0.1"
version = "0.1.0"

[dependencies]
borsh = "0.8"
Expand All @@ -19,9 +19,9 @@ solana-client = "1.6.6"
solana-logger = "1.6.6"
solana-sdk = "1.6.6"
solana-program = "1.6.6"
spl-associated-token-account = { path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { path="../program", features = [ "no-entrypoint" ] }
spl-token = { path="../../token/program", features = [ "no-entrypoint" ] }
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "0.1", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.1", path="../../token/program", features = [ "no-entrypoint" ] }
bs58 = "0.4.0"
bincode = "1.3.1"
lazy_static = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ num_enum = "0.5.1"
serde = "1.0.121"
serde_derive = "1.0.103"
solana-program = "1.6.6"
spl-math = { path = "../../libraries/math", features = [ "no-entrypoint" ] }
spl-token = { path = "../../token/program", features = [ "no-entrypoint" ] }
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
thiserror = "1.0"
bincode = "1.3.1"

Expand Down

0 comments on commit 3dd6767

Please sign in to comment.