Get help info from Cargo.toml

Fixes #35
Fixes #13
This commit is contained in:
Frank Denis 2019-08-12 16:07:57 +02:00
parent 8fbcdfc2a7
commit 10a99040e1

View file

@ -1,11 +1,14 @@
#[global_allocator] #[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc; static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
#[macro_use]
extern crate clap;
mod dns; mod dns;
mod utils; mod utils;
use base64; use base64;
use clap::{App, Arg}; use clap::Arg;
use futures::future; use futures::future;
use futures::prelude::*; use futures::prelude::*;
use futures::stream::Stream; use futures::stream::Stream;
@ -101,6 +104,7 @@ struct DoH {
inner: Arc<InnerDoH>, inner: Arc<InnerDoH>,
} }
#[allow(dead_code)]
#[derive(Debug)] #[derive(Debug)]
enum Error { enum Error {
Incomplete, Incomplete,
@ -489,8 +493,8 @@ fn parse_opts(inner_doh: &mut InnerDoH) {
let max_ttl = MAX_TTL.to_string(); let max_ttl = MAX_TTL.to_string();
let err_ttl = ERR_TTL.to_string(); let err_ttl = ERR_TTL.to_string();
let options = App::new("doh-proxy") let _ = include_str!("../Cargo.toml");
.about("A DNS-over-HTTP server proxy") let options = app_from_crate!()
.arg( .arg(
Arg::with_name("listen_address") Arg::with_name("listen_address")
.short("l") .short("l")