This commit is contained in:
Frank Denis 2023-01-12 01:16:47 +01:00
parent fbf82068d1
commit 1c28a28b78
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "doh-proxy"
version = "0.9.6"
version = "0.9.7"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
keywords = ["dns", "https", "doh", "odoh", "proxy"]
@ -16,10 +16,10 @@ default = ["tls"]
tls = ["libdoh/tls"]
[dependencies]
libdoh = { path = "src/libdoh", version = "0.9.6", default-features = false }
libdoh = { path = "src/libdoh", version = "0.9.7", default-features = false }
clap = { version = "4", features = ["std", "cargo", "wrap_help", "string"] }
dnsstamps = "0.1.9"
mimalloc = { version = "0.1.32", default-features = false }
mimalloc = { version = "0.1.34", default-features = false }
[package.metadata.deb]
extended-description = """\

View file

@ -1,6 +1,6 @@
[package]
name = "libdoh"
version = "0.9.6"
version = "0.9.7"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "DoH and Oblivious DoH library for the rust-doh app"
keywords = ["dns","https","doh","odoh","proxy"]
@ -24,9 +24,9 @@ futures = "0.3.25"
hyper = { version = "0.14.23", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.0"
rand = "0.8.5"
tokio = { version = "1.23.0", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio = { version = "1.24.1", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio-rustls = { version = "0.23.4", features = ["early-data"], optional = true }
rustls-pemfile = "1.0.1"
rustls-pemfile = "1.0.2"
[profile.release]
codegen-units = 1