diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-09-01 18:41:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 18:41:35 +0200 |
commit | c9223bc6a5a9461e017df75a7fa9cf35430e2521 (patch) | |
tree | 7ef4f98f303eddacf75b612e660fb7c843036fef | |
parent | a74554987af17b09aeb2d113fad6998f465132d6 (diff) |
fix(evt/kv): Add serde feature to uuid (#20350)
`cargo publish` for v1.36.4 failed due to missing `serde` feature on
`uuid` dependency.
-rw-r--r-- | ext/kv/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/kv/Cargo.toml b/ext/kv/Cargo.toml index 459555a89..6734c2ee5 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 |