test_gen: remove wasmer-wasi dependency

This commit is contained in:
Brian Carroll 2022-07-10 09:51:38 +01:00 committed by Folkert
parent a170caf9a6
commit f80ab79c8e
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 1 additions and 3 deletions

1
Cargo.lock generated
View file

@ -4774,7 +4774,6 @@ dependencies = [
"tempfile",
"wasi_libc_sys",
"wasm3",
"wasmer-wasi",
]
[[package]]

View file

@ -40,7 +40,6 @@ libc = "0.2.106"
inkwell = { path = "../../vendor/inkwell" }
target-lexicon = "0.12.3"
libloading = "0.7.1"
wasmer-wasi = "2.2.1"
tempfile = "3.2.0"
indoc = "1.0.3"
criterion = { git = "https://github.com/Anton-4/criterion.rs" }

View file

@ -4,7 +4,7 @@
A bare-bones Roc "platform" for REPL code, providing heap allocation for builtins.
*/
// Enable/disable printf debugging. Leave disabled to avoid bloating .wasm files and slowing down Wasmer tests.
// Enable/disable printf debugging. Leave disabled to avoid bloating .wasm files and slowing down tests.
#define ENABLE_PRINTF 0
//--------------------------