light-ini

Crates.iolight-ini
lib.rslight-ini
version0.4.0
created_at2020-06-21 15:37:16.234081+00
updated_at2025-12-12 10:50:11.532028+00
descriptionEvent-driven parser for the INI file format
homepagehttps://github.com/lparcq/light-ini
repository
max_upload_size
id256339
size17,773
(lparcq)

documentation

https://docs.rs/light-ini

README

Light INI parser

Rust docs.rs Crates.io License

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"

Format

  • 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

License

Licensed under MIT license.

Commit count: 0

cargo fmt