roc/crates/valgrind/Cargo.toml

35 lines
887 B
TOML
Raw Normal View History

2022-12-23 19:17:27 +03:00
[package]
name = "valgrind"
2023-03-07 03:36:18 +03:00
authors.workspace = true
edition.workspace = true
2023-03-07 03:36:18 +03:00
license.workspace = true
version.workspace = true
2022-12-23 19:17:27 +03:00
2023-01-10 18:48:22 +03:00
[dev-dependencies]
2022-12-23 19:17:27 +03:00
cli_utils = { path = "../cli_utils" }
2023-04-11 23:27:19 +03:00
roc_command_utils = { path = "../utils/command" }
roc_build = { path = "../compiler/build" }
roc_linker = { path = "../linker" }
roc_load = { path = "../compiler/load" }
roc_mono = { path = "../compiler/mono" }
roc_packaging = { path = "../packaging" }
roc_reporting = { path = "../reporting" }
bumpalo.workspace = true
indoc.workspace = true
target-lexicon.workspace = true
2022-12-30 03:17:29 +03:00
tempfile.workspace = true
2023-04-11 23:27:19 +03:00
[features]
default = ["target-aarch64", "target-x86_64", "target-wasm32"]
target-aarch64 = ["roc_build/target-aarch64"]
target-arm = []
target-wasm32 = []
target-x86 = []
target-x86_64 = ["roc_build/target-x86_64"]
[package.metadata.cargo-udeps.ignore]
2023-04-11 23:27:19 +03:00
development = ["roc_build", "roc_linker"]