From c9223bc6a5a9461e017df75a7fa9cf35430e2521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 1 Sep 2023 18:41:35 +0200 Subject: [PATCH] fix(evt/kv): Add serde feature to uuid (#20350) `cargo publish` for v1.36.4 failed due to missing `serde` feature on `uuid` dependency. --- ext/kv/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml index 459555a89e..6734c2ee5e 100644 --- a/ext/kv/Cargo.toml +++ b/ext/kv/Cargo.toml @@ -30,7 +30,7 @@ serde.workspace = true serde_json.workspace = true tokio.workspace = true url.workspace = true -uuid.workspace = true +uuid = { workspace = true, features = ["serde"] } [build-dependencies] prost-build.workspace = true