mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 18:08:55 +03:00
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "roc_reporting"
|
|
description = "Responsible for generating warning and error messages."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
roc_can = { path = "../compiler/can" }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_error_macros = { path = "../error_macros" }
|
|
roc_exhaustive = { path = "../compiler/exhaustive" }
|
|
roc_fmt = { path = "../compiler/fmt" }
|
|
roc_module = { path = "../compiler/module" }
|
|
roc_parse = { path = "../compiler/parse" }
|
|
roc_problem = { path = "../compiler/problem" }
|
|
roc_region = { path = "../compiler/region" }
|
|
roc_solve_problem = { path = "../compiler/solve_problem" }
|
|
roc_std = { path = "../roc_std" }
|
|
roc_types = { path = "../compiler/types" }
|
|
ven_pretty = { path = "../vendor/pretty" }
|
|
|
|
bumpalo.workspace = true
|
|
distance.workspace = true
|
|
|
|
[dev-dependencies]
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
roc_constrain = { path = "../compiler/constrain" }
|
|
roc_derive = { path = "../compiler/derive" }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_packaging = { path = "../packaging" }
|
|
roc_parse = { path = "../compiler/parse" }
|
|
roc_problem = { path = "../compiler/problem" }
|
|
roc_solve = { path = "../compiler/solve" }
|
|
roc_target = { path = "../compiler/roc_target" }
|
|
roc_test_utils = { path = "../test_utils" }
|
|
|
|
indoc.workspace = true
|
|
insta.workspace = true
|
|
pretty_assertions.workspace = true
|