From 03466d04cee5552ecb92f0eaaa3541eab83afccd Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Wed, 27 Jan 2021 19:05:52 -0800 Subject: [PATCH] temporarily use my branch of the wasi crate --- crates/test-programs/wasi-tests/Cargo.lock | 17 +++++++---------- crates/test-programs/wasi-tests/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/crates/test-programs/wasi-tests/Cargo.lock b/crates/test-programs/wasi-tests/Cargo.lock index 9ad02d29e0..079610ec28 100644 --- a/crates/test-programs/wasi-tests/Cargo.lock +++ b/crates/test-programs/wasi-tests/Cargo.lock @@ -4,27 +4,24 @@ name = "libc" version = "0.2.72" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9f8082297d534141b30c8d39e9b1773713ab50fdbe4ff30f750d063b3bfd701" [[package]] name = "more-asserts" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238" [[package]] name = "wasi" -version = "0.10.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" +version = "0.10.2+wasi-snapshot-preview1" +source = "git+https://github.com/BytecodeAlliance/wasi?branch=pch/public_errno_names_docs#6ce376a4253cb36b920456e1ddc344fecf11c3bf" [[package]] name = "wasi-tests" version = "0.19.0" dependencies = [ - "libc 0.2.72 (registry+https://github.com/rust-lang/crates.io-index)", - "more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc", + "more-asserts", + "wasi", ] - -[metadata] -"checksum libc 0.2.72 (registry+https://github.com/rust-lang/crates.io-index)" = "a9f8082297d534141b30c8d39e9b1773713ab50fdbe4ff30f750d063b3bfd701" -"checksum more-asserts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0debeb9fcf88823ea64d64e4a815ab1643f33127d995978e099942ce38f25238" -"checksum wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" diff --git a/crates/test-programs/wasi-tests/Cargo.toml b/crates/test-programs/wasi-tests/Cargo.toml index 09fae385ec..dc7afdaee4 100644 --- a/crates/test-programs/wasi-tests/Cargo.toml +++ b/crates/test-programs/wasi-tests/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] libc = "0.2.65" -wasi = "0.10.0" +wasi = { git = "https://github.com/BytecodeAlliance/wasi", branch = "pch/public_errno_names_docs" } more-asserts = "0.2.1" # This crate is built with the wasm32-wasi target, so it's separate