Add .ini loading/saving

This commit is contained in:
Jonathan Turner
2019-06-16 18:43:40 +12:00
parent 34ddb779b2
commit 1000ec21b5
13 changed files with 160 additions and 0 deletions

View File

@ -55,6 +55,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
command("skip", skip::skip),
command("first", first::first),
command("size", size::size),
command("from-ini", from_ini::from_ini),
command("from-json", from_json::from_json),
command("from-toml", from_toml::from_toml),
command("from-xml", from_xml::from_xml),
@ -69,6 +70,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
command("reject", reject::reject),
command("trim", trim::trim),
command("to-array", to_array::to_array),
command("to-ini", to_ini::to_ini),
command("to-json", to_json::to_json),
command("to-toml", to_toml::to_toml),
Arc::new(Where),