From 36eca0bfb0c9dc3eb9ca5b3383324d70ec6251a3 Mon Sep 17 00:00:00 2001 From: Nick Alexander Date: Fri, 13 Apr 2018 13:33:34 -0700 Subject: [PATCH] (chore) Pre: Use the same features of uuid throughout the project. --- Cargo.toml | 2 +- core/Cargo.toml | 2 +- edn/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 037f4bc3..1cf68462 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ chrono = "0.4" error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" } lazy_static = "0.2" time = "0.1" -uuid = "0.5" +uuid = { version = "0.5", features = ["v4", "serde"] } [dependencies.rusqlite] version = "0.13" diff --git a/core/Cargo.toml b/core/Cargo.toml index 5b768226..96a217bd 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -9,7 +9,7 @@ enum-set = { git = "https://github.com/rnewman/enum-set" } lazy_static = "0.2" num = "0.1" ordered-float = { version = "0.5", features = ["serde"] } -uuid = "0.5" +uuid = { version = "0.5", features = ["v4", "serde"] } serde = { version = "1.0", features = ["rc"] } serde_derive = "1.0" diff --git a/edn/Cargo.toml b/edn/Cargo.toml index 99e1a57e..ed824bb8 100644 --- a/edn/Cargo.toml +++ b/edn/Cargo.toml @@ -16,7 +16,7 @@ itertools = "0.7" num = "0.1" ordered-float = "0.5" pretty = "0.2" -uuid = "0.5" +uuid = { version = "0.5", features = ["v4", "serde"] } serde = { version = "1.0", optional = true } serde_derive = { version = "1.0", optional = true }