From 94dd1fec24c21ffc759fc6c3559375c38c2b3534 Mon Sep 17 00:00:00 2001 From: Justin Geibel Date: Wed, 13 May 2020 23:59:17 -0400 Subject: [PATCH 1/2] Fix inconsistent time 0.1.43 version The lockfile was inconsistent. Cargo was aparently consolidating to the 0.1.43 version so this should be a no-op. --- Cargo.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d1d2a68567..3136bb94757 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -282,7 +282,7 @@ dependencies = [ "num-integer", "num-traits", "serde", - "time 0.1.42", + "time 0.1.43", ] [[package]] @@ -625,7 +625,7 @@ dependencies = [ "encoding", "lazy_static", "rand 0.4.2", - "time 0.1.42", + "time 0.1.43", "version_check 0.1.5", ] @@ -1110,7 +1110,7 @@ dependencies = [ "log", "net2", "pin-project", - "time 0.1.42", + "time 0.1.43", "tokio", "tower-service", "want", @@ -1280,7 +1280,7 @@ dependencies = [ "email", "lettre", "mime", - "time 0.1.42", + "time 0.1.43", "uuid", ] @@ -2093,7 +2093,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "time 0.1.42", + "time 0.1.43", "tokio", "tokio-tls", "url 2.1.1", @@ -3008,5 +3008,5 @@ dependencies = [ "log", "mac", "markup5ever", - "time 0.1.42", + "time 0.1.43", ] From ac7c36e6d5739b3512fcceed2d2705e45beb8338 Mon Sep 17 00:00:00 2001 From: Justin Geibel Date: Wed, 13 May 2020 23:59:48 -0400 Subject: [PATCH 2/2] Bump to rand 0.7 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3136bb94757..0178d591dd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -232,7 +232,7 @@ dependencies = [ "oauth2", "openssl", "parking_lot", - "rand 0.6.5", + "rand 0.7.3", "reqwest", "scheduled-thread-pool", "semver 0.9.0 (git+https://github.com/steveklabnik/semver.git)", diff --git a/Cargo.toml b/Cargo.toml index a03030e528a..18132a2601b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ rustdoc-args = [ [dependencies] cargo-registry-s3 = { path = "src/s3", version = "0.2.0" } -rand = "0.6" +rand = "0.7" git2 = "0.13.0" flate2 = "1.0" semver = { version = "0.9", git = "https://github.com/steveklabnik/semver.git", features = ["diesel", "serde"] }