mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
fix(evt/kv): Add serde feature to uuid (#20350)
`cargo publish` for v1.36.4 failed due to missing `serde` feature on `uuid` dependency.
This commit is contained in:
parent
a74554987a
commit
c9223bc6a5
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue