Disable default features for libdoh

Fixes #56
This commit is contained in:
Frank Denis 2021-02-12 21:57:21 +01:00
parent d7fa144671
commit dbe14da43e
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "doh-proxy"
version = "0.3.4"
version = "0.3.5"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) proxy"
keywords = ["dns","https","doh","proxy"]
@ -16,7 +16,7 @@ default = ["tls"]
tls = ["libdoh/tls"]
[dependencies]
libdoh = { path = "src/libdoh", version = "0.3.3" }
libdoh = { path = "src/libdoh", version = "0.3.5", default-features = false }
clap = "2.33.3"
jemallocator = "0.3.2"
tokio = { version = "1.2.0", features = ["net", "rt-multi-thread", "parking_lot", "time"] }

View file

@ -1,6 +1,6 @@
[package]
name = "libdoh"
version = "0.3.4"
version = "0.3.5"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "DoH library for the rust-doh app"
keywords = ["dns","https","doh","proxy"]