peppi-derive 0.2.3

Support crate for peppi
Documentation
use peppi_derive::*;

#[frame_data]
struct S {
	#[peppi(ver = "3.0")]
	x: i32,
}

#[test]
fn test_macro(){
	let s = S { x: 42 };
	println!("{}", s.x);
}