mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
Pull cli_utils out of cli to stop them from always building
This commit is contained in:
parent
1525b7c9c9
commit
cbc0b3c0cf
6 changed files with 6 additions and 6 deletions
|
@ -42,7 +42,7 @@ exclude = [
|
|||
"ci/bench-runner",
|
||||
# Ignore building these normally. They are only imported by tests.
|
||||
# The tests will still correctly build them.
|
||||
"cli/cli_utils",
|
||||
"cli_utils",
|
||||
"compiler/test_mono_macros",
|
||||
"compiler/test_wasm_util",
|
||||
]
|
||||
|
|
|
@ -89,7 +89,7 @@ indoc = "1.0.3"
|
|||
serial_test = "0.5.1"
|
||||
tempfile = "3.2.0"
|
||||
criterion = { git = "https://github.com/Anton-4/criterion.rs"}
|
||||
cli_utils = { path = "cli_utils" }
|
||||
cli_utils = { path = "../cli_utils" }
|
||||
|
||||
[[bench]]
|
||||
name = "time_bench"
|
||||
|
|
|
@ -10,10 +10,10 @@ description = "Shared code for cli tests and benchmarks"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
roc_cli = { path = "../../cli" }
|
||||
roc_collections = { path = "../../compiler/collections" }
|
||||
roc_load = { path = "../../compiler/load" }
|
||||
roc_module = { path = "../../compiler/module" }
|
||||
roc_cli = { path = "../cli" }
|
||||
roc_collections = { path = "../compiler/collections" }
|
||||
roc_load = { path = "../compiler/load" }
|
||||
roc_module = { path = "../compiler/module" }
|
||||
bumpalo = { version = "3.8.0", features = ["collections"] }
|
||||
criterion = { git = "https://github.com/Anton-4/criterion.rs"}
|
||||
serde = { version = "1.0.130", features = ["derive"] }
|
Loading…
Add table
Add a link
Reference in a new issue