From e202eafb7fabce542a57ddc9968bb5a7b6aebfbf Mon Sep 17 00:00:00 2001 From: Cynede Date: Mon, 11 Feb 2019 18:40:19 +0400 Subject: [PATCH] feat(transport): Update base64 to ^0.10 --- lettre/Cargo.toml | 2 +- lettre_email/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lettre/Cargo.toml b/lettre/Cargo.toml index c51a59f..b23ce8d 100644 --- a/lettre/Cargo.toml +++ b/lettre/Cargo.toml @@ -23,7 +23,7 @@ log = "^0.4" nom = { version = "^4.0", optional = true } bufstream = { version = "^0.1", optional = true } native-tls = { version = "^0.2", optional = true } -base64 = { version = "^0.9", optional = true } +base64 = { version = "^0.10", optional = true } hostname = { version = "^0.1", optional = true } serde = { version = "^1.0", optional = true } serde_json = { version = "^1.0", optional = true } diff --git a/lettre_email/Cargo.toml b/lettre_email/Cargo.toml index fd83c84..2627c0e 100644 --- a/lettre_email/Cargo.toml +++ b/lettre_email/Cargo.toml @@ -28,6 +28,6 @@ mime = "^0.3" time = "^0.1" uuid = { version = "^0.7", features = ["v4"] } lettre = { version = "^0.9", path = "../lettre", default-features = false } -base64 = "^0.9" +base64 = "^0.10" failure = "^0.1" failure_derive = "^0.1"