Crates.io | dotini |
lib.rs | dotini |
version | 0.1.0 |
source | src |
created_at | 2023-04-06 15:52:42.403006 |
updated_at | 2023-04-06 15:52:42.403006 |
description | dotini is a Rust library for parsing INI files into a HashMap. |
homepage | |
repository | https://github.com/borngraced/dotini/tree/main |
max_upload_size | |
id | 832284 |
size | 9,427 |
dotini
is a Rust library for parsing INI files into a HashMap.
use dotini::{INIParser, INIParserResult};
fn main() -> INIParserResult<()> {
let content = "[section1]\nname1=value1\nname2=value2\n[section2]\nname3=value3";
let parser = INIParser::from_string(content)?;
let output = parser.into_inner();
assert_eq!(output["section1"]["name1"], "value1");
assert_eq!(output["section1"]["name2"], "value2");
assert_eq!(output["section2"]["name3"], "value3");
Ok(())
}
Add the following to your Cargo.toml
file:
[dependencies]
dotini = "0.1.0"
The INIParser
struct has the following methods:
from_string(content: &str) -> INIParserResult<Self>
Creates an INIParser
instance from an INI-formatted string.
from_file(path: &str) -> INIParserResult<Self>
Creates an INIParser
instance from an INI-formatted file.
into_inner(self) -> HashMap<String, HashMap<String, String>>
Returns the parsed INI data as a HashMap<String, HashMap<String, String>>
.
This project is licensed under the MIT License. See the LICENSE file for more information.