mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-05 05:57:38 +03:00
Update deps
This commit is contained in:
parent
bafbdc0926
commit
e73964fa1d
2 changed files with 10 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "doh-proxy"
|
name = "doh-proxy"
|
||||||
version = "0.9.10"
|
version = "0.9.11"
|
||||||
authors = ["Frank Denis <github@pureftpd.org>"]
|
authors = ["Frank Denis <github@pureftpd.org>"]
|
||||||
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
|
description = "A DNS-over-HTTPS (DoH) and ODoH (Oblivious DoH) proxy"
|
||||||
keywords = ["dns", "https", "doh", "odoh", "proxy"]
|
keywords = ["dns", "https", "doh", "odoh", "proxy"]
|
||||||
|
@ -19,7 +19,7 @@ tls = ["libdoh/tls"]
|
||||||
libdoh = { path = "src/libdoh", version = "0.9.9", default-features = false }
|
libdoh = { path = "src/libdoh", version = "0.9.9", default-features = false }
|
||||||
clap = { version = "4", features = ["std", "cargo", "wrap_help", "string"] }
|
clap = { version = "4", features = ["std", "cargo", "wrap_help", "string"] }
|
||||||
dnsstamps = "0.1.9"
|
dnsstamps = "0.1.9"
|
||||||
mimalloc = { version = "0.1.41", default-features = false }
|
mimalloc = { version = "0.1.43", default-features = false }
|
||||||
|
|
||||||
[package.metadata.generate-rpm]
|
[package.metadata.generate-rpm]
|
||||||
assets = [
|
assets = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "libdoh"
|
name = "libdoh"
|
||||||
version = "0.9.10"
|
version = "0.9.11"
|
||||||
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"]
|
||||||
|
@ -15,22 +15,22 @@ default = ["tls"]
|
||||||
tls = ["tokio-rustls"]
|
tls = ["tokio-rustls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.80"
|
anyhow = "1.0.86"
|
||||||
arc-swap = "1.7.0"
|
arc-swap = "1.7.1"
|
||||||
base64 = "0.22.0"
|
base64 = "0.22.1"
|
||||||
byteorder = "1.5.0"
|
byteorder = "1.5.0"
|
||||||
bytes = "1.5.0"
|
bytes = "1.6.0"
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
hyper = { version = "^0.14.28", default-features = false, features = [
|
hyper = { version = "^0.14.29", default-features = false, features = [
|
||||||
"server",
|
"server",
|
||||||
"http1",
|
"http1",
|
||||||
"http2",
|
"http2",
|
||||||
"stream",
|
"stream",
|
||||||
"runtime",
|
"runtime",
|
||||||
] }
|
] }
|
||||||
odoh-rs = "1.0.2"
|
odoh-rs = "1.0.3"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
tokio = { version = "1.36.0", features = [
|
tokio = { version = "1.38.0", features = [
|
||||||
"net",
|
"net",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
"time",
|
"time",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue