mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 13:07:38 +03:00
Update clap to v3
This commit is contained in:
parent
d586c50019
commit
c6c9d64681
3 changed files with 50 additions and 42 deletions
16
Cargo.toml
16
Cargo.toml
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue