#arguments-parser #parser #app-config #com #appcfg

appcfg

A simple Unix style command line parameter and configuration file parsing library

3 stable releases

Uses new Rust 2024

new 1.0.3 Apr 24, 2025
1.0.1 Jul 5, 2024

#278 in Configuration

Download history 1/week @ 2025-02-21 2/week @ 2025-02-28

103 downloads per month

MIT/Apache

58KB
1K SLoC

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);
}

Dependencies

~225–670KB
~16K SLoC