Format 'deb822' for serde
Implement serializer and deserializer for serde.
# use ;
// In deb822, we not have standard, some field named on PascalCase and other
// with title-capitalized kebab-case (not supported by serde)
let s = r#"
Borrow-Str: string one
#Comment are removed
#first space after colon (:) are removed if present
String: string two
Flag: yes
Size: 25677
Description: title line
continuation line
on two line
DescriptionAlt: title line
continuation line
on two line
DescriptionAlt2: title line
continuation line
on two line
"#;
let _: Info = from_str.unwrap;