Port to Rust of the Python library [polib].
bash cargo add rspolib
```rust use rspolib::pofile;
let po = pofile("path/to/file.po").unwrap();
for entry in po.entries { println!("{}", entry.msgid); }
po.save("path/to/other/file.po").unwrap(); ```