File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ homepage = { workspace = true }
99license = { workspace = true }
1010edition = { workspace = true }
1111
12+ rust-version = " 1.81.0"
13+
1214[dependencies ]
1315solana-account-info = { workspace = true }
1416solana-define-syscall = { workspace = true }
Original file line number Diff line number Diff line change 55//! [`bpf_loader`]: crate::bpf_loader
66
77extern crate alloc;
8- // Re-exporting for custom_panic
9- pub use solana_define_syscall:: definitions:: { sol_log_ as __log, sol_panic_ as __panic} ;
108use {
119 alloc:: vec:: Vec ,
1210 solana_account_info:: AccountInfo ,
2422// entrypoint_no_alloc macro
2523pub use {
2624 solana_account_info:: AccountInfo as __AccountInfo,
27- solana_account_info:: MAX_PERMITTED_DATA_INCREASE , solana_msg:: msg as __msg,
28- solana_program_error:: ProgramResult , solana_pubkey:: Pubkey as __Pubkey,
25+ solana_account_info:: MAX_PERMITTED_DATA_INCREASE ,
26+ // Re-exporting for custom_panic
27+ solana_define_syscall:: definitions:: { sol_log_ as __log, sol_panic_ as __panic} ,
28+ solana_msg:: msg as __msg,
29+ solana_program_error:: ProgramResult ,
30+ solana_pubkey:: Pubkey as __Pubkey,
2931} ;
3032
3133/// User implemented function to process an instruction
You can’t perform that action at this time.
0 commit comments