From 570c606397e47406ec148fe1763586e87a8f5298 Mon Sep 17 00:00:00 2001 From: Kaleb Elwert Date: Fri, 10 Jul 2020 21:10:15 -0700 Subject: [PATCH] chore: Upgrade base64 and tokio-rustls packages (#397) --- tonic/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 8593cca..c1feb84 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -43,11 +43,11 @@ prost = ["prost1", "prost-derive"] [dependencies] bytes = "0.5" -futures-core = { version = "0.3", default-features = false } +futures-core = { version = "0.3", default-features = false } futures-util = { version = "0.3", default-features = false } tracing = "0.1" http = "0.2" -base64 = "0.11" +base64 = "0.12" percent-encoding = "2.0" tower-service = "0.3" @@ -73,8 +73,8 @@ tower-load = { version = "0.3", optional = true } tracing-futures = { version = "0.2", optional = true } # rustls -tokio-rustls = { version = "0.13", optional = true } -rustls-native-certs = { version = "0.3", optional = true } +tokio-rustls = { version = "0.14", optional = true } +rustls-native-certs = { version = "0.4", optional = true } [dev-dependencies] tokio = { version = "0.2", features = ["rt-core", "macros"] }