9 releases (4 stable)

1.3.0 Nov 16, 2021
1.2.0 May 23, 2021
1.0.0 Jan 17, 2021
0.9.0 Jan 11, 2021
0.1.1 Mar 20, 2016

#136 in Configuration

Download history 878/week @ 2024-10-04 835/week @ 2024-10-11 1066/week @ 2024-10-18 990/week @ 2024-10-25 1139/week @ 2024-11-01 1226/week @ 2024-11-08 1217/week @ 2024-11-15 556/week @ 2024-11-22 737/week @ 2024-11-29 1028/week @ 2024-12-06 1035/week @ 2024-12-13 406/week @ 2024-12-20 421/week @ 2024-12-27 716/week @ 2025-01-03 985/week @ 2025-01-10 1979/week @ 2025-01-17

4,119 downloads per month
Used in 10 crates (5 directly)

BSD-3-Clause

44KB
704 lines

tini — A tiny INI parsing library

Rust Crates Docs

Usage

Add tini to your Cargo.toml, for example:

[dependencies]
tini = "1.3"

How to use

Read ini configuration from file

extern crate tini;
use tini::Ini;

fn main() {
    // Read example.ini file from examples directory
    let config = Ini::from_file("./examples/example.ini").unwrap();
    // Read name3 key from section_one
    let name3: String = config.get("section_one", "name3").unwrap();
    // Read list of values
    let frst5: Vec<bool> = config.get_vec("section_three", "frst5").unwrap();
    println!("name3 = {}", name3);
    println!("frst5 = {:?}", frst5);
    // Result:
    // name3 = example text
    // frst5 = [true, false, true]
}

Create ini configuration and write to file

extern crate tini;
use tini::Ini;

fn main() {
    // Create ini structure
    let conf = Ini::new()                                          // initialize Ini
                   .section("params")                              // create `params` section
                   .item("pi", 3.14)                               // add `pi` key
                   .item_vec("lost", &[4, 8, 15, 16, 23, 42])      // add `lost` list
                   .section("other")                               // create another section
                   .item("default", "hello world!");               // add `default` key to `other` section
    // At any time you can add new parameters to the last created section
    // < some code >
    // Now write ini structure to file
    conf.to_file("output.ini").unwrap();
    // Now `output.ini` contains
    // -----------------------------
    // [params]
    // pi = 3.14
    // lost = 4, 8, 15, 16, 23, 42
    //
    // [other]
    // default = hello world!
    // -----------------------------
}

See more examples in documentation.

No runtime deps