This commit is contained in:
Frank Denis 2021-06-07 14:45:21 +02:00
parent 3b77ff2e34
commit 474701ec1e
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "doh-proxy"
version = "0.3.8"
version = "0.4.0"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
keywords = ["dns","https","doh","proxy"]
@ -16,14 +16,14 @@ default = ["tls"]
tls = ["libdoh/tls"]
[dependencies]
libdoh = { path = "src/libdoh", version = "0.3.8", default-features = false }
libdoh = { path = "src/libdoh", version = "0.4.0", default-features = false }
clap = "2.33.3"
dnsstamps = "0.1.5"
jemallocator = "0.3.2"
[package.metadata.deb]
extended-description = """\
A fast and secure DoH (DNS-over-HTTPS) server written in Rust."""
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"]

View file

@ -1,6 +1,6 @@
[package]
name = "libdoh"
version = "0.3.8"
version = "0.4.0"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "DoH library for the rust-doh app"
keywords = ["dns","https","doh","proxy"]
@ -23,7 +23,7 @@ hyper = { version = "0.14.4", default-features = false, features = ["server", "h
tokio = { version = "1.6.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] }
tokio-rustls = { version = "0.22.0", features = ["early-data"], optional = true }
odoh-rs = "0.1.11"
rand = "0.7"
rand = "0.7.0"
hpke = "0.5.0"
arc-swap = "1.2.0"