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:
parent
a8dcf9e261
commit
340e36cc2c
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ deno_core = { version = "0.92.0", path = "../../core" }
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.28"
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
tokio = "1.8.0"
|
tokio = "1.8.0"
|
||||||
uuid = { version = "0.8.2", features = ["v4"] }
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
futures = "0.3.15"
|
futures = "0.3.15"
|
||||||
|
|
Loading…
Reference in a new issue