pub fn parse_package_properties(input: &str) -> IResult<&str, Package<'_>>
Parse indented key-value properties for a package perf: use fold_many0 to build the Package directly without intermediate Vec allocation
fold_many0