codama-macros 0.10.0

Procedural macros for the Codama standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use codama_macros::codama;

#[codama(export(CodamaType))]
pub type Lamports = u64;

#[codama(export(CodamaAccount))]
pub type MyAccount = u64;

#[codama(export(CodamaInstruction))]
pub type MyInstruction = u64;

fn main() {}