Remove unnecessary newtype for solana_sdk::Account.data, can just return &Vec<u8>
Make solana-program an optional dependency as well and change all solana specific types to primitive types Pubkey -> [u8; 32], and make this no-std to make this truly portable
solana_sdk::Account.data
, can just return&Vec<u8>
solana-program
an optional dependency as well and change all solana specific types to primitive typesPubkey -> [u8; 32]
, and make thisno-std
to make this truly portablederive_more
ReadonlyAccountData
with a customSlicePattern
trait since theSlicePattern
RFC has been withdrawnexecutable()
->is_executable()