Rename solana-program-sdk to solana-program

This commit is contained in:
Michael Vines
2020-10-23 17:22:10 -07:00
parent 92ce381d60
commit dd711ab5fb
65 changed files with 123 additions and 127 deletions

View File

@ -11,7 +11,7 @@ homepage = "https://solana.com/"
edition = "2018"
[dependencies]
solana-program-sdk = { path = "../../../../sdk/program", version = "1.5.0" }
solana-program = { path = "../../../../sdk/program", version = "1.5.0" }
[features]
default = ["program"]

View File

@ -1,6 +1,6 @@
//! @brief Example Rust-based BPF program that issues a cross-program-invocation
use solana_program_sdk::{
use solana_program::{
instruction::{AccountMeta, Instruction},
pubkey::Pubkey,
};

View File

@ -3,7 +3,7 @@
#![cfg(feature = "program")]
use crate::instruction::*;
use solana_program_sdk::{
use solana_program::{
account_info::AccountInfo,
bpf_loader, entrypoint,
entrypoint::ProgramResult,