1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 01:43:29 +01:00
electrs/build.rs
Martin Habovstiak ec049b9ad5 Use configure_me instead of clap
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
2019-09-06 20:16:51 +02:00

6 lines
128 B
Rust

extern crate configure_me_codegen;
fn main() {
configure_me_codegen::build_script_with_man("config_spec.toml").unwrap();
}