Skip to content

Commit

Permalink
Bump solana-sdk version (solana-labs#145)
Browse files Browse the repository at this point in the history
* Bump solana-sdk version

* Include program feature to enable entrypoint

* Bump default testnet
  • Loading branch information
CriesofCarrots authored Jul 22, 2020
1 parent 2c82a97 commit bd2ea9e
Show file tree
Hide file tree
Showing 8 changed files with 145 additions and 19 deletions.
50 changes: 44 additions & 6 deletions memo/Cargo.lock

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

6 changes: 5 additions & 1 deletion memo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"

[features]
program = []
default = ["program"]

[dependencies]
solana-sdk = { version = "=1.2.10", default-features = false, features=["program"] }
solana-sdk = { version = "=1.2.12", default-features = false, features=["program"] }

[lib]
name = "spl_memo"
Expand Down
46 changes: 42 additions & 4 deletions token-swap/Cargo.lock

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

6 changes: 5 additions & 1 deletion token-swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"

[features]
program = []
default = ["program"]

[dependencies]
num-derive = "0.2"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-sdk = { version = "=1.2.10", default-features = false, features=["program"] }
solana-sdk = { version = "=1.2.12", default-features = false, features=["program"] }
spl-token = { path = "../token" }
thiserror = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion token-swap/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/solana-labs/solana-program-library"
},
"testnetDefaultChannel": "v1.2.3",
"testnetDefaultChannel": "v1.2.12",
"scripts": {
"start": "babel-node cli/main.js",
"lint": "npm run pretty && eslint .",
Expand Down
46 changes: 42 additions & 4 deletions token/Cargo.lock

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

6 changes: 5 additions & 1 deletion token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ license = "Apache-2.0"
edition = "2018"
exclude = ["js/**"]

[features]
program = []
default = ["program"]

[dependencies]
num-derive = "0.2"
num-traits = "0.2"
remove_dir_all = "=0.5.0"
solana-sdk = { version = "=1.2.10", default-features = false, features=["program"] }
solana-sdk = { version = "=1.2.12", default-features = false, features=["program"] }
thiserror = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion token/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/solana-labs/solana-program-library"
},
"testnetDefaultChannel": "v1.2.3",
"testnetDefaultChannel": "v1.2.12",
"scripts": {
"start": "babel-node cli/main.js",
"lint": "npm run pretty && eslint .",
Expand Down

0 comments on commit bd2ea9e

Please sign in to comment.