Skip to content

An event-driven parser in rust for the INI file format

License

Notifications You must be signed in to change notification settings

lparcq/light-ini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

An event-driven parser in rust for the INI file format

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages