From 741d28557dae6897f783c3deb349ae214f858e09 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 27 Jan 2021 20:21:17 +0100 Subject: [PATCH] Update deps --- Cargo.toml | 2 +- src/libdoh/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 970c44a..ae6905e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ tls = ["libdoh/tls"] libdoh = { path = "src/libdoh", version = "0.3.3" } clap = "2.33.3" jemallocator = "0.3.2" -tokio = { version = "1.0.1", features = ["net", "rt-multi-thread", "parking_lot"] } +tokio = { version = "1.0.2", features = ["net", "rt-multi-thread", "parking_lot"] } [package.metadata.deb] extended-description = """\ diff --git a/src/libdoh/Cargo.toml b/src/libdoh/Cargo.toml index 37af3c1..34767c1 100644 --- a/src/libdoh/Cargo.toml +++ b/src/libdoh/Cargo.toml @@ -15,12 +15,12 @@ default = ["tls"] tls = ["tokio-rustls"] [dependencies] -anyhow = "1.0.37" -byteorder = "1.3.4" +anyhow = "1.0.38" +byteorder = "1.4.2" base64 = "0.13.0" -futures = "0.3.8" +futures = "0.3.12" hyper = { version = "0.14.2", default-features = false, features = ["server", "http1", "http2", "stream"] } -tokio = { version = "1.0.1", features = ["net", "rt-multi-thread", "parking_lot"] } +tokio = { version = "1.0.2", features = ["net", "rt-multi-thread", "parking_lot"] } tokio-rustls = { version = "0.22.0", optional = true } [profile.release]