Require tokio 1.10

This commit is contained in:
Frank Denis 2021-08-13 22:21:28 +02:00
parent f9d2a0fc94
commit 7657d5a2b2

View file

@ -15,17 +15,17 @@ default = ["tls"]
tls = ["tokio-rustls"] tls = ["tokio-rustls"]
[dependencies] [dependencies]
anyhow = "1.0.38" anyhow = "1.0.42"
arc-swap = "1.2.0" arc-swap = "1.3.0"
base64 = "0.13.0" base64 = "0.13.0"
byteorder = "1.4.2" byteorder = "1.4.3"
bytes = "1.0.1" bytes = "1.0.1"
futures = "0.3.13" futures = "0.3.16"
hpke = "0.5.1" hpke = "0.5.1"
hyper = { version = "0.14.4", default-features = false, features = ["server", "http1", "http2", "stream"] } hyper = { version = "0.14.11", default-features = false, features = ["server", "http1", "http2", "stream"] }
odoh-rs = "1.0.0-alpha" odoh-rs = "1.0.0-alpha.1"
rand = "0.8.3" rand = "0.8.4"
tokio = { version = "1.6.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] } tokio = { version = "1.10.0", features = ["net", "rt-multi-thread", "parking_lot", "time", "sync"] }
tokio-rustls = { version = "0.22.0", features = ["early-data"], optional = true } tokio-rustls = { version = "0.22.0", features = ["early-data"], optional = true }
[profile.release] [profile.release]