roc/compiler/test_mono/Cargo.toml

24 lines
619 B
TOML
Raw Normal View History

2021-05-30 19:09:41 +03:00
[package]
name = "test_mono"
version = "0.1.0"
authors = ["The Roc Contributors"]
license = "UPL-1.0"
edition = "2018"
[[test]]
name = "test_mono"
path = "src/tests.rs"
2021-11-02 23:29:12 +03:00
[dev-dependencies]
2021-05-30 19:09:41 +03:00
roc_collections = { path = "../collections" }
roc_module = { path = "../module" }
roc_builtins = { path = "../builtins" }
roc_load = { path = "../load" }
roc_can = { path = "../can" }
roc_mono = { path = "../mono" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../roc_target" }
roc_reporting = { path = "../../reporting" }
2021-05-30 19:09:41 +03:00
test_mono_macros = { path = "../test_mono_macros" }
bumpalo = { version = "3.8.0", features = ["collections"] }
indoc = "1.0.3"