From 1c28a28b7891a5095b825ceaf9c5df931046d2f6 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 12 Jan 2023 01:16:47 +0100 Subject: [PATCH] Bump --- Cargo.toml | 6 +++--- src/libdoh/Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e6be0d1..af348d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doh-proxy" -version = "0.9.6" +version = "0.9.7" authors = ["Frank Denis "] 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 = """\ diff --git a/src/libdoh/Cargo.toml b/src/libdoh/Cargo.toml index fe209ca..b0c2757 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdoh" -version = "0.9.6" +version = "0.9.7" authors = ["Frank Denis "] 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