2022-12-23 19:17:27 +03:00
|
|
|
[package]
|
|
|
|
name = "valgrind"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-10 18:48:22 +03:00
|
|
|
authors = ["The Roc Contributors"]
|
|
|
|
license = "UPL-1.0"
|
2022-12-23 19:17:27 +03:00
|
|
|
|
2023-01-10 18:48:22 +03:00
|
|
|
[dev-dependencies]
|
2022-12-23 21:22:49 +03:00
|
|
|
roc_cli = { path = "../cli" }
|
2022-12-23 19:17:27 +03:00
|
|
|
cli_utils = { path = "../cli_utils" }
|
2022-12-23 21:22:49 +03:00
|
|
|
roc_build = { path = "../compiler/build" }
|
|
|
|
roc_mono = { path = "../compiler/mono" }
|
|
|
|
roc_load = { path = "../compiler/load" }
|
|
|
|
roc_reporting = { path = "../reporting" }
|
2023-01-08 17:04:41 +03:00
|
|
|
roc_linker = { path = "../linker" }
|
2022-12-23 21:22:49 +03:00
|
|
|
roc_packaging = { path = "../packaging" }
|
|
|
|
bumpalo.workspace = true
|
|
|
|
target-lexicon.workspace = true
|
2022-12-30 03:17:29 +03:00
|
|
|
tempfile.workspace = true
|
|
|
|
indoc.workspace = true
|