roc/crates/ast/Cargo.toml

40 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "roc_ast"
description = "AST as used by the editor and (soon) docs. In contrast to the compiler, these types do not keep track of a location in a file."
2023-03-07 03:36:18 +03:00
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
[dependencies]
2021-10-04 20:26:31 +03:00
roc_builtins = { path = "../compiler/builtins"}
roc_can = { path = "../compiler/can" }
roc_collections = { path = "../compiler/collections" }
roc_region = { path = "../compiler/region" }
roc_module = { path = "../compiler/module" }
roc_parse = { path = "../compiler/parse" }
roc_problem = { path = "../compiler/problem" }
roc_types = { path = "../compiler/types" }
roc_unify = { path = "../compiler/unify"}
2022-07-11 02:42:41 +03:00
roc_solve = { path = "../compiler/solve"}
2021-10-04 20:26:31 +03:00
roc_load = { path = "../compiler/load" }
2022-01-27 01:33:02 +03:00
roc_target = { path = "../compiler/roc_target" }
roc_error_macros = { path = "../error_macros" }
2022-11-21 01:03:17 +03:00
roc_packaging = { path = "../packaging" }
2022-04-12 22:45:42 +03:00
roc_reporting = { path = "../reporting" }
2022-11-13 17:16:52 +03:00
ven_graph = { path = "../vendor/pathfinding" }
2022-11-13 17:16:52 +03:00
2022-11-21 01:03:17 +03:00
arrayvec.workspace = true
bumpalo.workspace = true
page_size.workspace = true
snafu.workspace = true
libc.workspace = true
[dev-dependencies]
2022-11-21 01:03:17 +03:00
indoc.workspace = true
2022-02-28 15:48:11 +03:00
[target.'cfg(windows)'.dependencies]
winapi.workspace = true