Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Jul 15, 2023
1 parent 9e2853d commit 78c4783
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "doh-proxy"
version = "0.9.9"
version = "0.9.10"
authors = ["Frank Denis <[email protected]>"]
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
keywords = ["dns", "https", "doh", "odoh", "proxy"]
Expand Down
14 changes: 7 additions & 7 deletions src/libdoh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdoh"
version = "0.9.9"
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"]
Expand All @@ -17,16 +17,16 @@ tls = ["tokio-rustls"]
[dependencies]
anyhow = "1.0.71"
arc-swap = "1.6.0"
base64 = "0.21.0"
base64 = "0.21.2"
byteorder = "1.4.3"
bytes = "1.4.0"
futures = "0.3.28"
hyper = { version = "0.14.26", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.1"
hyper = { version = "0.14.27", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.2"
rand = "0.8.5"
tokio = { version = "1.28.0", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio-rustls = { version = "0.24.0", features = ["early-data"], optional = true }
rustls-pemfile = "1.0.2"
tokio = { version = "1.29.1", features = ["net", "rt-multi-thread", "time", "sync"] }
tokio-rustls = { version = "0.24.1", features = ["early-data"], optional = true }
rustls-pemfile = "1.0.3"

[profile.release]
codegen-units = 1
Expand Down

0 comments on commit 78c4783

Please sign in to comment.