From 530ea50c8213b6c484c0963d29e6b5722d9593dd Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Wed, 19 Aug 2020 15:10:04 -0700 Subject: [PATCH] wasi-common: dep on getrandom requires std --- crates/wasi-common/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi-common/Cargo.toml b/crates/wasi-common/Cargo.toml index f7250c25df..d42ee4d1c3 100644 --- a/crates/wasi-common/Cargo.toml +++ b/crates/wasi-common/Cargo.toml @@ -20,7 +20,7 @@ links = "wasi-common-19" anyhow = "1.0" thiserror = "1.0" libc = "0.2" -getrandom = "0.1" +getrandom = { version = "0.1.14", features = ["std"] } cfg-if = "0.1.9" log = "0.4" filetime = "0.2.7"