From ad3bab21c4df06bdd1111bddc49b2f588cfb380e Mon Sep 17 00:00:00 2001 From: David Weigang <40901554+weigangd@users.noreply.github.com> Date: Mon, 22 Aug 2022 11:02:37 +0200 Subject: [PATCH 1/2] Update uuid version definition Since uuid >= 1.0 exists now it would be nice to make the uuid version a little more versatile. The proposed change fixes uuid version mismatches when using this crate with together with uuid >= 1.0. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5977dac..7c15a13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["/build.rs","/grammars","/templates"] [dependencies] lazy_static = "^1.4" -uuid = "=0.8.*" +uuid = { version = ">=0.8.2, <2.0.0", features = ["serde", "v4"] } byteorder = "^1" murmur3 = "=0.4" # 0.5 is incompatible currently bit-set = "=0.5.*" @@ -37,4 +37,4 @@ parking_lot = "0.11" [profile.release] #opt-level = 3 -#debug = true \ No newline at end of file +#debug = true From 4363ae2bd94a1e28277610116ead343894e0e71e Mon Sep 17 00:00:00 2001 From: David Weigang <40901554+weigangd@users.noreply.github.com> Date: Tue, 6 Sep 2022 09:06:28 +0200 Subject: [PATCH 2/2] Simplify uuid version definition --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7c15a13..b55b079 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["/build.rs","/grammars","/templates"] [dependencies] lazy_static = "^1.4" -uuid = { version = ">=0.8.2, <2.0.0", features = ["serde", "v4"] } +uuid = "1.*" byteorder = "^1" murmur3 = "=0.4" # 0.5 is incompatible currently bit-set = "=0.5.*"