Simply pull sdk into ci test client (#204)

This commit is contained in:
Jack May 2020-08-03 11:31:15 -07:00 committed by GitHub
parent ef75a1d523
commit 72759b37f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 15 deletions

17
ci/client/Cargo.lock generated
View File

@ -900,17 +900,6 @@ dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "num-derive"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eafd0b45c5537c3ba526f79d3e75120036502bebacbb3f3220914067ce39dbf2"
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
]
[[package]]
name = "num-derive"
version = "0.3.1"
@ -1451,7 +1440,7 @@ dependencies = [
"itertools",
"log",
"memmap",
"num-derive 0.3.1",
"num-derive",
"num-traits",
"pbkdf2",
"rand",
@ -1500,7 +1489,7 @@ name = "spl-token"
version = "1.0.3"
dependencies = [
"cbindgen",
"num-derive 0.2.5",
"num-derive",
"num-traits",
"remove_dir_all",
"solana-sdk",
@ -1512,7 +1501,7 @@ name = "spl-token-swap"
version = "0.1.0"
dependencies = [
"cbindgen",
"num-derive 0.2.5",
"num-derive",
"num-traits",
"remove_dir_all",
"solana-sdk",

View File

@ -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 = "1.2"
spl-memo = { path = "../../memo" }
spl-token = { path = "../../token" }
spl-token-swap = { path = "../../token-swap" }