shank_parse/lib.rs
1pub use shank_parse_macro::shank_parse;
2
3#[doc(hidden)]
4pub mod __private {
5 pub use solana_sdk::instruction::{AccountMeta, Instruction};
6 pub use solana_sdk::pubkey::Pubkey;
7
8 // Re-exported so generated code can derive/(de)serialize via borsh without
9 // the consuming crate having to depend on `borsh` directly.
10 pub use borsh;
11}