From e40f11bf2502de3f810c7389c31d58fd623c6a48 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Sun, 4 Jun 2017 14:29:15 -0700 Subject: [PATCH] Updated uuid dependency --- Cargo.lock | 15 +++------------ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b4bfa88..13bf5ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ dependencies = [ "unix-daemonize 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "user32-sys 0.2.0 (git+https://github.com/retep998/winapi-rs?branch=0.2)", - "uuid 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (git+https://github.com/retep998/winapi-rs?branch=0.2)", ] @@ -1128,11 +1128,6 @@ dependencies = [ "url 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "sha1" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "shell32-sys" version = "0.1.1" @@ -1366,11 +1361,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "uuid" -version = "0.3.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "sha1 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "version_check" @@ -1532,7 +1524,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum serde_json 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ad8bcf487be7d2e15d3d543f04312de991d631cfe1b43ea0ade69e6a8a5b16a1" "checksum serde_json 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "48b04779552e92037212c3615370f6bd57a40ebba7f20e554ff9f55e41a69a7b" "checksum serde_urlencoded 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce0fd303af908732989354c6f02e05e2e6d597152870f2c6990efb0577137480" -"checksum sha1 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc30b1e1e8c40c121ca33b86c23308a090d19974ef001b4bf6e61fd1a0fb095c" "checksum shell32-sys 0.1.1 (git+https://github.com/retep998/winapi-rs?branch=0.2)" = "" "checksum shell32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72f20b8f3c060374edb8046591ba28f62448c369ccbdc7b02075103fb3a9e38d" "checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537" @@ -1562,7 +1553,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum user32-sys 0.2.0 (git+https://github.com/retep998/winapi-rs?branch=0.2)" = "" "checksum user32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ef4711d107b21b410a3a974b1204d9accc8b10dad75d8324b5d755de1617d47" "checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" -"checksum uuid 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a9ff57156caf7e22f37baf3c9d8f6ce8194842c23419dafcb0716024514d162" +"checksum uuid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5d0f5103675a280a926ec2f9b7bcc2ef49367df54e8c570c3311fec919f9a8b" "checksum version_check 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bb3950bf29e36796dea723df1747619dd331881aefef75b7cf1c58fdd738afe" "checksum winapi 0.2.8 (git+https://github.com/retep998/winapi-rs?branch=0.2)" = "" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" diff --git a/Cargo.toml b/Cargo.toml index 0ac1db6..88693c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ winapi = { git = "https://github.com/retep998/winapi-rs", branch="0.2" } kernel32-sys = { git = "https://github.com/retep998/winapi-rs", branch="0.2" } shell32-sys = { git = "https://github.com/retep998/winapi-rs", branch="0.2" } user32-sys = { git = "https://github.com/retep998/winapi-rs", branch="0.2" } -uuid = { version = "0.3.0", features = ["v5"] } +uuid = "0.5.0" [target.'cfg(unix)'.dependencies] unix-daemonize = "0.1.2"