1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 00:21:05 -05:00

fix: uuid crate needs 'serde' feature (#11318)

This commit is contained in:
Luca Casonato 2021-07-07 18:13:56 +02:00 committed by GitHub
parent a8dcf9e261
commit 340e36cc2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ deno_core = { version = "0.92.0", path = "../../core" }
encoding_rs = "0.8.28"
serde = "1.0"
tokio = "1.8.0"
uuid = { version = "0.8.2", features = ["v4"] }
uuid = { version = "0.8.2", features = ["v4", "serde"] }
[dev-dependencies]
futures = "0.3.15"