From 1aff03a5b420a822e8080b97fa8e62b1cfbf8e52 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 18 Jul 2019 17:31:45 +0200 Subject: [PATCH] dependencies: pin wasi-common to specific rev This removes the reliance on having a correct version of wasi-common in the cache by chance ;-) --- Cargo.toml | 2 +- wasmtime-wasi/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 576055acb8..ac8d6c9150 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ wasmtime-obj = { path = "wasmtime-obj" } wasmtime-wast = { path = "wasmtime-wast" } wasmtime-wasi = { path = "wasmtime-wasi" } wasmtime-wasi-c = { path = "wasmtime-wasi-c", optional = true } -wasi-common = { git = "https://github.com/CraneStation/wasi-common" } +wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "c3994bf57b5d2f1f973b0e4e37bc385695aa4ed2"} docopt = "1.0.1" serde = "1.0.75" serde_derive = "1.0.75" diff --git a/wasmtime-wasi/Cargo.toml b/wasmtime-wasi/Cargo.toml index 80d52a45a2..2dbba8d07e 100644 --- a/wasmtime-wasi/Cargo.toml +++ b/wasmtime-wasi/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" wasmtime-runtime = { path = "../wasmtime-runtime" } wasmtime-environ = { path = "../wasmtime-environ" } wasmtime-jit = { path = "../wasmtime-jit" } -wasi-common = { git = "https://github.com/CraneStation/wasi-common" } +wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "c3994bf57b5d2f1f973b0e4e37bc385695aa4ed2"} cranelift-codegen = "0.33.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0"