Skip to content

Commit

Permalink
Update hyper to 0.14.28
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed May 6, 2024
1 parent 66c66c7 commit 02b3a67
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions src/libdoh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name = "libdoh"
version = "0.9.10"
authors = ["Frank Denis <[email protected]>"]
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"
homepage = "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"

[features]
Expand All @@ -21,11 +21,24 @@ base64 = "0.22.0"
byteorder = "1.5.0"
bytes = "1.5.0"
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"
rand = "0.8.5"
tokio = { version = "1.36.0", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio-rustls = { version = "^0.24.1", features = ["early-data"], optional = true }
tokio = { version = "1.36.0", features = [
"net",
"rt-multi-thread",
"time",
"sync",
] }
tokio-rustls = { version = "^0.24.1", features = [
"early-data",
], optional = true }
rustls-pemfile = "^1.0.4"

[profile.release]
Expand Down

0 comments on commit 02b3a67

Please sign in to comment.