mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
run a toml formatter and then clean it up a bit
This commit is contained in:
parent
4a89bee0a5
commit
f42f61e271
71 changed files with 661 additions and 678 deletions
|
@ -2,10 +2,10 @@
|
|||
name = "roc_repl_cli"
|
||||
description = "Command Line Interface(CLI) functionality for the Read-Evaluate-Print-Loop (REPL)."
|
||||
|
||||
edition.workspace = true
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[features]
|
||||
# pipe target to roc_build
|
||||
|
@ -16,27 +16,27 @@ target-x86 = ["roc_build/target-x86"]
|
|||
target-x86_64 = ["roc_build/target-x86_64"]
|
||||
|
||||
[dependencies]
|
||||
roc_build = {path = "../compiler/build"}
|
||||
roc_builtins = {path = "../compiler/builtins"}
|
||||
roc_collections = {path = "../compiler/collections"}
|
||||
roc_gen_llvm = {path = "../compiler/gen_llvm"}
|
||||
roc_load = {path = "../compiler/load"}
|
||||
roc_mono = {path = "../compiler/mono"}
|
||||
roc_parse = {path = "../compiler/parse"}
|
||||
roc_repl_eval = {path = "../repl_eval"}
|
||||
roc_reporting = {path = "../reporting"}
|
||||
roc_std = {path = "../roc_std"}
|
||||
roc_target = {path = "../compiler/roc_target"}
|
||||
roc_types = {path = "../compiler/types"}
|
||||
roc_region = { path = "../compiler/region" }
|
||||
roc_build = { path = "../compiler/build" }
|
||||
roc_builtins = { path = "../compiler/builtins" }
|
||||
roc_collections = { path = "../compiler/collections" }
|
||||
roc_gen_llvm = { path = "../compiler/gen_llvm" }
|
||||
roc_load = { path = "../compiler/load" }
|
||||
roc_module = { path = "../compiler/module" }
|
||||
roc_mono = { path = "../compiler/mono" }
|
||||
roc_parse = { path = "../compiler/parse" }
|
||||
roc_region = { path = "../compiler/region" }
|
||||
roc_repl_eval = { path = "../repl_eval" }
|
||||
roc_reporting = { path = "../reporting" }
|
||||
roc_std = { path = "../roc_std" }
|
||||
roc_target = { path = "../compiler/roc_target" }
|
||||
roc_types = { path = "../compiler/types" }
|
||||
|
||||
inkwell.workspace = true
|
||||
bumpalo.workspace = true
|
||||
const_format.workspace = true
|
||||
inkwell.workspace = true
|
||||
libloading.workspace = true
|
||||
rustyline.workspace = true
|
||||
rustyline-derive.workspace = true
|
||||
rustyline.workspace = true
|
||||
target-lexicon.workspace = true
|
||||
unicode-segmentation.workspace = true
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue