From e880987fa32594a6a7cff709f2d67dd8eafcea56 Mon Sep 17 00:00:00 2001 From: gwenn <45554+gwenn@users.noreply.github.com> Date: Fri, 18 Oct 2019 18:57:27 +0200 Subject: [PATCH] Upgrade to uuid 0.8 (#576) * Upgrade to uuid 0.8 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a4fcb13..b0e8b10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,13 +69,13 @@ byteorder = { version = "1.2", features = ["i128"], optional = true } fallible-iterator = "0.2" fallible-streaming-iterator = "0.1" memchr = "2.2.0" -uuid = { version = "0.7", optional = true } +uuid = { version = "0.8", optional = true } [dev-dependencies] tempdir = "0.3" lazy_static = "1.0" regex = "1.0" -uuid = { version = "0.7", features = ["v4"] } +uuid = { version = "0.8", features = ["v4"] } unicase = "2.4.0" [dependencies.libsqlite3-sys]