Update clap to v3

This commit is contained in:
Frank Denis 2022-01-01 10:29:15 +01:00
parent d586c50019
commit c6c9d64681
3 changed files with 50 additions and 42 deletions

View file

@ -3,7 +3,7 @@ name = "doh-proxy"
version = "0.9.2"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
keywords = ["dns","https","doh","odoh","proxy"]
keywords = ["dns", "https", "doh", "odoh", "proxy"]
license = "MIT"
homepage = "https://github.com/jedisct1/rust-doh"
repository = "https://github.com/jedisct1/rust-doh"
@ -17,7 +17,7 @@ tls = ["libdoh/tls"]
[dependencies]
libdoh = { path = "src/libdoh", version = "0.9.0", default-features = false }
clap = "2.33.3"
clap = { version = "3.0.0", features = ["std", "cargo", "wrap_help"] }
dnsstamps = "0.1.9"
jemallocator = "0.3.2"
@ -25,8 +25,16 @@ jemallocator = "0.3.2"
extended-description = """\
A fast and secure DoH (DNS-over-HTTPS) and ODoH server written in Rust."""
assets = [
["target/release/doh-proxy", "usr/bin/", "755"],
["README.md", "usr/share/doc/doh-proxy/README.md", "644"]
[
"target/release/doh-proxy",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/doh-proxy/README.md",
"644",
],
]
section = "network"
depends = "$auto"