roc/repl_test/Cargo.toml
2022-05-03 18:00:29 +02:00

29 lines
705 B
TOML

[package]
edition = "2021"
name = "repl_test"
version = "0.1.0"
[build-dependencies]
roc_cli = {path = "../cli"}
[dependencies]
lazy_static = "1.4.0"
[dev-dependencies]
indoc = "1.0.3"
strip-ansi-escapes = "0.1.1"
wasmer-wasi = "2.2.1"
roc_repl_cli = {path = "../repl_cli"}
roc_test_utils = {path = "../test_utils"}
# Wasmer singlepass compiler only works on x86_64.
[target.'cfg(target_arch = "x86_64")'.dev-dependencies]
wasmer = { version = "2.2.1", default-features = false, features = ["singlepass", "universal"] }
[target.'cfg(not(target_arch = "x86_64"))'.dev-dependencies]
wasmer = { version = "2.2.1", default-features = false, features = ["cranelift", "universal"] }
[features]
wasm = []