diff --git a/Cargo.toml b/Cargo.toml index 4508223..faaceab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doh-proxy" -version = "0.3.8" +version = "0.4.0" authors = ["Frank Denis "] 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"] diff --git a/src/libdoh/Cargo.toml b/src/libdoh/Cargo.toml index 49d6500..5a93224 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdoh" -version = "0.3.8" +version = "0.4.0" authors = ["Frank Denis "] 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"