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); }