Crates.io | simpleini |
lib.rs | simpleini |
version | 0.1.2 |
source | src |
created_at | 2021-06-21 14:08:09.167224 |
updated_at | 2021-09-19 20:46:49.500208 |
description | SimpleIni is a very simple crate to parse and write with the INI format |
homepage | https://github.com/TheDutchMC/SimpleIni |
repository | https://github.com/TheDutchMC/SimpleIni/ |
max_upload_size | |
id | 412926 |
size | 27,993 |
SimpleIni is a very simple crate to parse and write with the INI format
SimpleIni is licenced under either the MIT licence, or the Apache-2 licence, at your discretion.
Parse an INI file
use simpleini::Ini;
fn main() {
let path = "/tmp/example.ini";
let ini = match Ini::from_file(path) {
Ok(ini) => ini,
Err(e) => {
eprintln!("Failed to parse /tmp/example.ini: {:?}", e);
std::process::exit(1);
}
};
}
Create a new INI file
use simpleini::{Ini, IniSection};
// These are only needed when using Ini#add_section_with_values
use std::collections::HashMap;
use std::iter::FromIterator;
use std::array::IntoIter;
fn main() {
let mut ini = Ini::new();
ini.set("some_global", "VALUE");
// Manually (and verbosely) create a section
let mut section = IniSection::new("SectionA");
section.set("some_section_variable", "OTHER_VALUE");
ini.add_section(section);
// Create a Section from a name and a HashMap<AsRef<str>, AsRef<str>>
ini.add_section_with_values("SectionB", HashMap::from_iter(IntoIter::new([("var_b", "value_b")])));
// Write the INI file to disk
match ini.to_file("/tmp/example.ini") {
Ok(()) => {},
Err(e) => {
eprintln!("Failed to write INI to disk: {:?}", e);
std::process::exit(1);
}
};
}