rssettings 0.2.0

A lib crate to manage .ini style settings file
Documentation
  • Coverage
  • 73.33%
    11 out of 15 items documented8 out of 10 items with examples
  • Size
  • Source code size: 55.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.34 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • fstafforte/rssettings
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • fstafforte

RSSETTINGS

This is my first rust crate. It is a library that can be used to manage a clasical .ini style settings files [SECTION] key = value

i.g [GLOBAL] enabled = true

see documentation and the tests as examples

this software is under Apache-2.0 license

Please use the devel branch to modify this crate and when your modification has been tested merge them in the master branch

New Features

27 Jan 2024: Introduced two new methods

  1. Settings::section_exists(&self, section_name: &str) -> bool As the name of the method itself says, it returns a boolean value that indicates whether the section exists or not
  2. Settings::key_exists(&self, section_name: &str, key: &str) -> bool As the name of the method itself says, it returns a boolean value that indicates whether the key exists or not