| Crates.io | light-ini |
| lib.rs | light-ini |
| version | 0.3.1 |
| created_at | 2020-06-21 15:37:16.234081+00 |
| updated_at | 2024-12-01 05:24:04.205189+00 |
| description | Event-driven parser for the INI file format |
| homepage | https://github.com/lparcq/light-ini |
| repository | |
| max_upload_size | |
| id | 256339 |
| size | 17,335 |
This library implements an event-driven parser for the INI file format.
It doesn't load data in a container. It's an alternative to rust-ini that avoids building an intermediate hash map if it's not necessary.
[dependencies]
light_ini = "0.3"
See the documentation and examples for details.
There is no limitation in the names of the properties.
Comments are only allowed in their own line. The default character to start a comment is ;.
Use IniParser::with_start_comment to use a different character such as #.
There is no escape or quoting characters
Licensed under MIT license.