From 4f8bf7b626ef6fd705ee6c3a25e7c9f7c72f4abd Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sat, 2 Nov 2019 02:35:29 -0400 Subject: [PATCH] Use toml 0.5 This allows docs.rs to only have one version of toml, not both 0.4 and 0.5. See https://github.com/rust-lang/docs.rs/issues/459 for context. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cf48529..054ea5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ flate2 = "1" tar = "0.4.0" percent-encoding = "2.1.0" walkdir = "2.2" -toml = "0.4.6" +toml = "0.5" fs2 = "0.4.3" remove_dir_all = "0.5.2" base64 = "0.10.1"