Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Relax solana-sdk version requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Aug 2, 2020
1 parent d0beed7 commit c05dc81
Show file tree
Hide file tree
Showing 10 changed files with 197 additions and 105 deletions.
67 changes: 45 additions & 22 deletions ci/client/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ci/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# Used to ensure that SPL programs are buildable by external clients

[dependencies]
solana-sdk = { version = "=1.2.13", default-features = false }
solana-sdk = { version = "1.2.17", default-features = false }
spl-memo = { path = "../../memo" }
spl-token = { path = "../../token" }
spl-token-swap = { path = "../../token-swap" }
Expand Down
77 changes: 50 additions & 27 deletions memo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions memo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "spl-memo"
version = "1.0.4"
version = "1.0.7"
description = "Solana Program Library Memo"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -17,7 +17,7 @@ program = ["solana-sdk/program"]
default = ["solana-sdk/default"]

[dependencies]
solana-sdk = { version = "=1.2.13", default-features = false, optional = true }
solana-sdk = { version = "1.2.17", default-features = false, optional = true }

[lib]
name = "spl_memo"
Expand Down
Loading

0 comments on commit c05dc81

Please sign in to comment.