mirror of
https://github.com/romanz/electrs.git
synced 2024-11-19 09:54:09 +01:00
ec049b9ad5
Since use of configuration files is both mmore secure and more convenient and clap doesn't support config files, this switches to configure_me, which supports config files, env vars and also generating man pages. Closes #151
6 lines
128 B
Rust
6 lines
128 B
Rust
extern crate configure_me_codegen;
|
|
|
|
fn main() {
|
|
configure_me_codegen::build_script_with_man("config_spec.toml").unwrap();
|
|
}
|