centralize package versions except for vendor and excluded

This commit is contained in:
Brendan Hansknecht 2023-03-06 19:29:09 -08:00
parent 5485c8a5b0
commit 4a89bee0a5
No known key found for this signature in database
GPG key ID: A199D0660F95F948
66 changed files with 292 additions and 222 deletions

View file

@ -1,19 +1,13 @@
[package]
name = "roc_repl_expect"
description = "Supports evaluating expect and printing contextual information when they fail."
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description = "Supports evaluating expect and printing contextual information when they fail."
[dependencies]
bumpalo.workspace = true
target-lexicon.workspace = true
libloading.workspace = true
signal-hook.workspace = true
libc.workspace = true
inkwell.workspace = true
roc_builtins = {path = "../compiler/builtins"}
roc_can = {path = "../compiler/can"}
roc_collections = {path = "../compiler/collections"}
@ -32,6 +26,13 @@ roc_region = { path = "../compiler/region" }
roc_build = { path = "../compiler/build" }
roc_error_macros = { path = "../error_macros" }
bumpalo.workspace = true
target-lexicon.workspace = true
libloading.workspace = true
signal-hook.workspace = true
libc.workspace = true
inkwell.workspace = true
[dev-dependencies]
roc_build = { path = "../compiler/build", features = ["target-aarch64", "target-x86_64"] }