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

@ -9,7 +9,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" }
solana-bpf-rust-param-passing-dep = { path = "../param_passing_dep", version = "1.5.0" }
[lib]

View File

@ -1,8 +1,8 @@
//! @brief Example Rust-based BPF program tests loop iteration
extern crate solana_program_sdk;
extern crate solana_program;
use solana_bpf_rust_param_passing_dep::{Data, TestDep};
use solana_program_sdk::{entrypoint::SUCCESS, info};
use solana_program::{entrypoint::SUCCESS, info};
#[no_mangle]
pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {