inih_rust_migration 0.1.0

Rust wrapper or port of the INIH C INI parser
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 34.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 242.53 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 19s Average build duration of successful builds.
  • all releases: 19s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • JohnnyWiseleader

INIH Rust Migration

This is a Rust wrapper (and eventual full port) of the inih C INI parser.

License

This project is licensed under either:

  • MIT license (see LICENSE)
  • or BSD 3-Clause license (see LICENSE-BSD, if included)

Example

let parsed = inih_rust_migration::parse_ini_file("config.ini").unwrap();
println!("{}", parsed["server"]["port"]);