appcfg

Crates.ioappcfg
lib.rsappcfg
version1.0.1
sourcesrc
created_at2024-07-05 07:25:15.913894
updated_at2024-07-05 07:25:15.913894
descriptionA simple Unix style command line parameter and configuration file parsing library
homepage
repository
max_upload_size
id1292431
size77,934
kiven (kivensoft)

documentation

README

appconfig -- application config and command line arg setting library

简单的应用程序命令行设置及配置文件读取库


项目地址

https://github.com/kivensoft/appconfig_rs

第三方依赖
  • thiserror
  • rand

添加依赖

cargo add --git https://github.com/kivensoft/appconfig_rs appconfig

使用
use appconfig;

appconfig::appconfig_define!(app_conf, AppConf,
    log_level   : String => ["L",  "log-level",    "LogLevel",          "log level(trace/debug/info/warn/error/off)"],
    log_file    : String => ["F",  "log-file",     "LogFile",           "log filename"],
    log_max     : String => ["M",  "log-max",      "LogFileMaxSize",    "log file max size (unit: k/m/g)"],
    log_async   : bool   => ["",   "log-async",    "LogAsync",          "enable asynchronous logging"],
    no_console  : bool   => ["",   "no-console",   "NoConsole",         "prohibit outputting logs to the console"],
);

impl Default for AppConf {
    fn default() -> Self {
        Self {
            log_level   : String::from("info"),
            log_file    : String::with_capacity(0),
            log_max     : String::from("10m"),
            log_async   : false,
            no_console  : false,
        }
    }
}

fn main() {
    let ac = AppConf::init();
    if !appconfig::parse_args(ac, version).expect("parse args error") {
        return;
    }

	println!("arg log_file = {}", ac.log_file);
}
Commit count: 0

cargo fmt