use peppi_derive::*; #[derive(Peppi)] pub struct Foo { bar: bool, #[peppi(version = "3.0")] baz: i64, } #[test] fn test_derive() { let _ = Foo { bar: true, baz: 123 }; }