Bump spl-token and spl-memo crate versions

This commit is contained in:
Michael Vines
2020-11-04 11:18:20 -08:00
committed by mergify[bot]
parent 8aa00381ef
commit 8838a55a1a
7 changed files with 158 additions and 173 deletions

View File

@ -69,7 +69,7 @@ solana-transaction-status = { path = "../transaction-status", version = "1.5.0"
solana-version = { path = "../version", version = "1.5.0" }
solana-vote-program = { path = "../programs/vote", version = "1.5.0" }
solana-vote-signer = { path = "../vote-signer", version = "1.5.0" }
spl-token-v2-0 = { package = "spl-token", version = "=2.0.8" }
spl-token-v2-0 = { package = "spl-token", version = "=3.0.0", features = ["no-entrypoint"] }
tempfile = "3.1.0"
thiserror = "1.0"
tokio = { version = "0.2", features = ["full"] }

View File

@ -64,7 +64,7 @@ use solana_transaction_status::{
};
use solana_vote_program::vote_state::{VoteState, MAX_LOCKOUT_HISTORY};
use spl_token_v2_0::{
solana_sdk::program_pack::Pack,
solana_program::program_pack::Pack,
state::{Account as TokenAccount, Mint},
};
use std::{
@ -2715,7 +2715,7 @@ pub mod tests {
vote_state::{Vote, VoteInit, MAX_LOCKOUT_HISTORY},
};
use spl_token_v2_0::{
solana_sdk::{program_option::COption, pubkey::Pubkey as SplTokenPubkey},
solana_program::{program_option::COption, pubkey::Pubkey as SplTokenPubkey},
state::AccountState as TokenAccountState,
state::Mint,
};