diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-07 18:13:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 18:13:56 +0200 |
commit | 340e36cc2c48bd777255c383226927fc35c81baa (patch) | |
tree | 722b6c4fcd82a3f3f05c194848af279b318a1b70 | |
parent | a8dcf9e2617999223f586403c200dea5601bec5f (diff) |
fix: uuid crate needs 'serde' feature (#11318)
-rw-r--r-- | extensions/web/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml index 1eb43fbc7..0bc1424bf 100644 --- a/extensions/web/Cargo.toml +++ b/extensions/web/Cargo.toml @@ -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" |