From dde9f6ced5808ae53ab5a15cfd21610107135111 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 1 May 2017 22:12:45 -0700 Subject: [PATCH] Support uuid 0.5 Closes #255 --- postgres-shared/Cargo.toml | 2 +- postgres/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres-shared/Cargo.toml b/postgres-shared/Cargo.toml index 8a3b4ca3..4b273260 100644 --- a/postgres-shared/Cargo.toml +++ b/postgres-shared/Cargo.toml @@ -29,4 +29,4 @@ geo = { version = "0.4", optional = true } rustc-serialize = { version = "0.3", optional = true } serde_json = { version = ">=0.9,<2.0", optional = true } time = { version = "0.1.14", optional = true } -uuid = { version = "0.4", optional = true } +uuid = { version = ">=0.4,<0.6", optional = true } diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index b7778015..21d814b0 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -66,4 +66,4 @@ geo = "0.4" rustc-serialize = "0.3" serde_json = ">=0.9,<2.0" time = "0.1.14" -uuid = "0.4" +uuid = "0.5"