#settings #ini #conf #gostd

gostd_settings

gostd_settings is library for reading and writing properties files. 是一个用于读写属性配置文件的库

4 releases

0.1.4 Mar 19, 2024
0.1.3 Jun 14, 2022
0.1.1 Jun 12, 2022
0.1.0 Jun 12, 2022

#199 in Configuration

Download history 1/week @ 2024-02-19 4/week @ 2024-02-26 166/week @ 2024-03-18

170 downloads per month

MIT license

15KB
147 lines

gostd_settings

crates.io Released API docs GPL3 licensed Downloads of Crates.io Lines of code Build Languages

gostd_settings is library for reading and writing properties files. 是一个用于读写属性配置文件的库

新建配置并保存到文件

use gostd_settings::{Settings, builder};
fn main() {
   let mut p = builder().file_type_properties().build();
   p.set_property("HttpPort", "8081");
   p.set_property(
       "MongoServer",
       "mongodb://10.11.1.5,10.11.1.6,10.11.1.7/?replicaSet=mytest",
   );
   p.set_property_slice(
       "LogLevel",
       ["Debug", "Info", "Warn"].iter().map(|s| s.to_string()).collect(),
   );
   match p.store_to_file("config.properties") {
       Ok(()) => println!("store to file app.conf success"),
       Err(err) => println!("store to file app.conf failed: {}", err),
   }
}

// output

    $ cat config.properties
     HttpPort = 8081
     LogLevel = Debug,Info,Warn
     MongoServer = mongodb://10.11.1.5,10.11.1.6,10.11.1.7/?replicaSet=mytest

从文件读取配置

use gostd_settings::{builder, Settings};
fn main() -> Result<(), std::io::Error> {
    let file = "./config.properties";
    let mut p = builder().file_type_properties().build();

    p.load_from_file(file)?;

    if let Some(http_prot) = p.property("HttpPort") {
        println!("{}", http_prot)
    }
    if let Some(logLevel) = p.property_slice("LogLevel") {
        println!("{:?}", log_level)
    }
    Ok(())
}

// output

    8081
    ["Debug", "Info", "Warn"]

Dependencies

~9–19MB
~325K SLoC