shank_macro_impl 0.0.12

Implements and tests shank derive macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod account_attrs;
mod extract_instructions;
#[allow(clippy::module_inception)]
mod instruction;
mod strategy_attrs;

pub use account_attrs::*;
pub use extract_instructions::*;
pub use instruction::*;
pub use strategy_attrs::*;

#[cfg(test)]
mod account_attrs_test;
#[cfg(test)]
mod instruction_test;
#[cfg(test)]
mod strategy_attrs_test;