Update hyper to 0.14.28

This commit is contained in:
Frank Denis 2024-05-06 12:22:21 +02:00
parent 66c66c7a28
commit 02b3a67a00

View file

@ -3,11 +3,11 @@ name = "libdoh"
version = "0.9.10" version = "0.9.10"
authors = ["Frank Denis <github@pureftpd.org>"] authors = ["Frank Denis <github@pureftpd.org>"]
description = "DoH and Oblivious DoH library for the rust-doh app" description = "DoH and Oblivious DoH library for the rust-doh app"
keywords = ["dns","https","doh","odoh","proxy"] keywords = ["dns", "https", "doh", "odoh", "proxy"]
license = "MIT" license = "MIT"
homepage = "https://github.com/jedisct1/rust-doh" homepage = "https://github.com/jedisct1/rust-doh"
repository = "https://github.com/jedisct1/rust-doh" repository = "https://github.com/jedisct1/rust-doh"
categories = ["asynchronous", "network-programming","command-line-utilities"] categories = ["asynchronous", "network-programming", "command-line-utilities"]
edition = "2018" edition = "2018"
[features] [features]
@ -21,11 +21,24 @@ base64 = "0.22.0"
byteorder = "1.5.0" byteorder = "1.5.0"
bytes = "1.5.0" bytes = "1.5.0"
futures = "0.3.30" futures = "0.3.30"
hyper = { version = "^0.14.27", default-features = false, features = ["server", "http1", "http2", "stream"] } hyper = { version = "^0.14.28", default-features = false, features = [
"server",
"http1",
"http2",
"stream",
"runtime",
] }
odoh-rs = "1.0.2" odoh-rs = "1.0.2"
rand = "0.8.5" rand = "0.8.5"
tokio = { version = "1.36.0", features = ["net", "rt-multi-thread", "time", "sync"] } tokio = { version = "1.36.0", features = [
tokio-rustls = { version = "^0.24.1", features = ["early-data"], optional = true } "net",
"rt-multi-thread",
"time",
"sync",
] }
tokio-rustls = { version = "^0.24.1", features = [
"early-data",
], optional = true }
rustls-pemfile = "^1.0.4" rustls-pemfile = "^1.0.4"
[profile.release] [profile.release]